/*
Glossary

Settings

*/

@font-face {
    font-family: 'GillSans-Light';
    src: url('../fonts/GillSans-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GillSans-Light.woff') format('woff'),
        url('../fonts/GillSans-Light.ttf') format('truetype'),
        url('../fonts/GillSans-Light.svg#GillSans-Light') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GillSans-Bold';
    src: url('../fonts/GillSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GillSans-Bold.woff') format('woff'),
        url('../fonts/GillSans-Bold.ttf') format('truetype'),
        url('../fonts/GillSans-Bold.svg#GillSans-Bold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GillSans';
    src: url('../fonts/GillSans.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GillSans.woff') format('woff'),
        url('../fonts/GillSans.ttf') format('truetype'),
        url('../fonts/GillSans.svg#GillSans') format('svg');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'ProximaNova-Bold';
    src: url('../fonts/ProximaNova-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ProximaNova-Bold.woff') format('woff'),
        url('../fonts/ProximaNova-Bold.ttf') format('truetype'),
        url('../fonts/ProximaNova-Bold.svg#ProximaNova-Bold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ProximaNova-Regular';
    src: url('../fonts/ProximaNova-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ProximaNova-Regular.woff') format('woff'),
        url('../fonts/ProximaNova-Regular.ttf') format('truetype'),
        url('../fonts/ProximaNova-Regular.svg#ProximaNova-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ProximaNova-Semibold';
    src: url('../fonts/ProximaNova-Semibold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ProximaNova-Semibold.woff') format('woff'),
        url('../fonts/ProximaNova-Semibold.ttf') format('truetype'),
        url('../fonts/ProximaNova-Semibold.svg#ProximaNova-Semibold') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    min-width: 480px;
    background-color: white !important;
    color: #454545;
    font-size: 14px;
    -ms-overflow-style: scrollbar !important;
}


.body_class_01 {
    background-color: #d3d6dc;
    color: #4e4e4e
}

.body_class_02 {
    background-color: white;
    color: #4e4e4e
}

a,
a:hover,
a:active,
a:focus {
    color: inherit;
    text-decoration: none;
}

.static_page_body a,
.static_page_body a:hover,
.static_page_body a:active,
.static_page_body a:focus {
    color: #c61754;
}

.static_page_body h1 {
    font-size: 26px;
}

.static_page_body h2 {
    font-size: 20px;
}

.static_page_body h3 {
    font-size: 18px;
}

.button {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #4e4e4e;
    border-radius: 4px;
    font-family: GillSans;
    font-size: 18px;
    color: #4e4e4e;
    padding: 5px 25px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.dark_bg .button_transparent {
    border: 1px solid #fff;
    color: white;
}

.button_white_red {
    border: none;
    border-radius: 4px;
    background-color: white;
    padding: 5px 20px;
    color: #c61754;
    font-size: 14px;
    font-family: GillSans;
    cursor: pointer;
}

.button_white_red:hover {
    color: #a61754;
}

.button_red {
    background-color: #c61754;
    border: 1px solid #c61754;
    color: #fff;
}

.button_red:hover {
    background-color: #a80c42;
    color: #fff;
}

.button_green {
    background-color: #82c03e;
    border: 1px solid #82c03e;
    color: #fff;
}

.button_green:hover {
    color: #fff;
}

.button_red_transparent {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #c61754;
    color: #c61754;
}

.button_red_transparent:hover {
    color: #c61754;
}

.bt_edit {
    width: 24px;
    height: 24px;
    background: url('../img/edit-avatar-icon.png') right 0 no-repeat;
    cursor: pointer;
    position: absolute;
    background-color: white;
}

.notselectabe {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.message-box {
    min-width: 200px;
    position: fixed;
    top: 20px;
    right: 20px;
    border-radius: 10px;
    height: auto;
    background-color: rgba(14, 196, 75, 0.85);
    color: white;
    padding: 10px;
    display: none;
    opacity: 0;
    z-index: 100000;
}

.message-box.errors {
    background-color: rgba(196, 14, 75, 0.85);
}

/* forms inputs >> */

.form_box {
    margin: 39px 0;
    background-color: rgba(211, 214, 220, 0.85);
    border-radius: 10px;
    padding: 25px;
    position: relative;
}

.centered_form_wrp {
    margin: 39px auto;
    width: 490px;
    padding: 39px 33px 35px 35px;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
    height: 39px;
    width: 100%;
    font-family: GillSans-Light;
    font-size: 18px;
    padding-left: 15px;
    border: medium none;
    border-radius: 5px;
}

select,
input,
textarea,
.ui-selectmenu-button,
button,
a {
    outline: 0;
}

::-webkit-input-placeholder {
    color: #969696;
}

::-moz-placeholder {
    color: #969696;
}

:-moz-placeholder {
    color: #969696;
}

:-ms-input-placeholder {
    color: #969696;
}



/* << forms inputs */

/* ==========================================================================
   Main Menu
   ========================================================================== */

.top-nav {
    height: 52px;
    border-bottom: 1px solid #e0e2e5;
    width: 100%;
    padding: 0 2%;
}

.body_dark .top-nav {
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.main-logo {
    float: left;
    width: 20%;
}

#search-block {
    width: 15%;
    vertical-align: middle;
    float: left;
    margin-top: 9px;
}

#search-block #search_form {
    position: relative;
    width: 80%;
    float: left;
}

#search-block .search-input {
    border: 1px solid #b7b9bb;
    font-family: inherit;
    background: rgba(0, 0, 0, 0);
    height: 32px;
    width: 100%;
    color: #6a6b6b;
    font-size: 12.9px;
    padding: 2px 0 0 31px;
}

#search-block ::-webkit-input-placeholder {
    font-style: italic;
}

#search-block ::-moz-placeholder {
    font-style: italic;
}

#search-block :-moz-placeholder {
    font-style: italic;
}

#search-block :-ms-input-placeholder {
    font-style: italic;
}

#search-block #bt_do_search {
    background: url("../img/search-icon-gray.png") no-repeat;
    height: 15px;
    width: 15px;
    position: absolute;
    top: 9px;
    left: 9px;
    border: none;
    cursor: pointer;
}

.body_dark #search-block .search-input {
    border: 1px solid rgba(255, 255, 255, .3);
    color: #efefef;
}

.body_dark #search-block ::-webkit-input-placeholder {
    color: #ddd;
}

.body_dark #search-block ::-moz-placeholder {
    color: #ddd;
}

.body_dark #search-block :-moz-placeholder {
    color: #ddd;
}

.body_dark #search-block :-ms-input-placeholder {
    color: #ddd;
}

.body_dark #search-block #bt_do_search {
    background: url("../img/search-icon.png") no-repeat;
}

#search-block-mobile {
    display: none;
    width: 50px;
    height: 100%;
    vertical-align: middle;
    padding-right: 16px;
    text-align: center;
}

#search-block-mobile #bt_search_m {
    display: inline-block;
    background: url("../img/search-icon-gray-19px.png") no-repeat center center rgba(0, 0, 0, 0);
    width: 32px;
    height: 32px;
    position: relative;
    top: 5px;
    cursor: pointer;
}

.body_dark #search-block-mobile #bt_search_m {
    background: url("../img/search-icon-19px.png") no-repeat center center rgba(0, 0, 0, 0);
}



#menu-nav-block {
    /* width: 48%; */
    height: 100%;
    vertical-align: middle;
    float: left;
    line-height: 52px;
}

.layout_admin .menu-nav-block {
    width: 100%;
}


.body_dark .menu-nav-block a {
    color: #fff;
}

.nav-header-menu {
    font-family: GillSans;
    list-style: none;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
    padding-left: 0;
    text-align: center;
}

.nav-header-menu li {
    display: block;
    display: inline-block;
    line-height: 10px;
    padding: 0 16px 0 16px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.nav-header-menu li:last-child {
    border: none;
}

.nav-header-menu li.active a,
#main_menu_mobile li.active a {
    color: #c61754 !important;
}

#menu_nav_block_mobile {
    display: none;
    height: 100%;
    vertical-align: middle;
    text-align: center;
}

#bt_mainmenu_m {
    display: inline-block;
    background: url("../img/bt-mainmenu.png") no-repeat center center rgba(0, 0, 0, 0);
    width: 32px;
    height: 32px;
    position: relative;
    top: 5px;
    cursor: pointer;
}

#main_menu_mobile {
    font-family: GillSans;
    list-style: none;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
    padding-left: 0;
    text-align: left;

    position: absolute;
    top: 46px;
    left: 16px;
    width: auto;
    display: none;

    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    margin-top: 7px;
    z-index: 999;

}


#main_menu_mobile a {
    display: block;
    border-bottom: 1px solid #eeeeef;
    text-align: left;
    color: #4e4e4e;
    font-family: GillSans;
    padding: 10px 44px 11px 16px;
}

#main_menu_mobile li:last-child a {
    border-bottom: none;
}

#main_menu_mobile .arrow {
    margin: 0 12px 0 auto;
    width: 0;
    height: 14px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(255, 255, 255, 0.95);
    position: absolute;
    top: -14px;
    left: 20px;
}

#sign_up_nav_block {
    line-height: 52px;
    float: right;
    /* width: 31%; */
}


#signup_header_menu {
    font-family: GillSans;
    list-style: none;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
    float: right;
    padding: 0;
}

#signup_header_menu li {
    display: inline-block;
    line-height: 10px;
    padding: 0 16px 0 16px;
    border-right: 1px solid rgba(255, 255, 255, .3);
    height: 100%;
}

.License_container {
    width: 80%;
    margin: auto;
    padding: 50px 10px 0;
}

.License_container .title {
    font-size: 25px;
    font-weight: 600;
}

#successModal .modal-dialog {
    width: 45%;
    margin: 8em auto;
}

#successModal .modal-header {
    background: #c61754;
    color: white;
    text-align: center;
}

#successModal .close {
    opacity: 1;
    color: white;
    margin-top: -22px;
}

#successModal .modal-footer {
    padding: 10px;
}

@media screen and (min-width: 1275px) {

    #signup_header_menu li.coaches-right {
        display: none;
    }
}

#signup_header_menu li:last-child {
    border: none;
}

.school-input {
    max-height: 39px;
}

.body_dark #signup_header_menu a {
    color: #fff !important;
}



#profile-email-wrapper {
    position: relative;
    float: right;
    text-align: right;
    width: 20%;
}

/* Messages */

.list-group-item.thread {
    padding: 0;
    border: 1px solid #ecf7ff;
}

.list-group-item.thread .hovercomment {
    display: none;
    font-weight: normal;
    color: #acd0ea;
    margin-left: 10px;
}

a.thread-subject {
    padding: 0;
    display: block;
}

.thread-subject>div:first-child {
    font-weight: bold;
    padding: 10px 10px;
    background: #daefff;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 1em;
}

.thread-subject:hover>div:first-child {
    /*background:#ecf7ff;*/
}

.thread-subject:hover .hovercomment {
    display: inline;


}

.thread-subject,
.thread-body,
.thread-participants {
    padding: 10px 10px;
}

.thread-body {
    padding-bottom: 10px;
}

.thread-participants {
    color: #a7d2f1;
}



#profile-email-wrapper .wrp {
    display: inline-block;
    position: relative;
}

/* ============================ */

.profile-email {
    border: 1px solid #C61754;
    border-radius: 4px;
    color: #C61754;
    display: inline-block;
    font-family: GillSans;
    font-size: 15px;
    margin-right: 27px;
    margin-top: 9px;
    padding: 4px 28px 5px 20px;
    background: url("../img/selectbox-arrow-down.png") no-repeat scroll 91% 55% rgba(0, 0, 0, 0);
    cursor: pointer;

    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-messages {
    display: inline-block;
    width: 1.5em;
    text-align: center;
    border-radius: 9999px;
    background-color: #c61754;
    color: #fff;
}

.thread-new-messages {
    display: inline-block;
    text-align: center;
    padding: .3em .75em;
    float: right;
    background-color: #c61754;
    color: #fff;
    font-weight: normal;
    font-size: .7em;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.popup-profile-menu {
    background-color: transparent;
    position: absolute;
    right: 28px;
    top: 39px;
    width: 190px;
    z-index: 10;
    display: none;
}

.profile-email:hover+div.popup-profile-menu {
    display: block;
}

div.popup-profile-menu:hover {
    display: block;
}

.popup-profile-menu .popup-arrow-holder {
    height: 7px;
    background-color: transparent;
}

.popup-profile-menu .popup-menu-content {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    margin-top: 7px;
}

.arrow {
    /*    margin: 0 auto; */
    margin: 0 12px 0 auto;
    width: 0;
    height: 14px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(255, 255, 255, 0.8);
}

.popup-profile-menu .popup-menu-content .popup-link {
    display: block;
    border-bottom: 1px solid #eeeeef;
    text-align: left;
    color: #4e4e4e;
    font-family: GillSans;
    padding: 10px 0 11px 24px;
    cursor: pointer;
}

.popup-profile-menu .popup-menu-content .popup-link:last-child {
    border-bottom: none;
}

/* << general - header */

.content_wrp_nw {
    max-width: 1179px;
    margin: 0 auto;
    padding: 0;
}


.ui-selectmenu-button {
    font-size: 18px;
    font-family: GillSans-Light;
    font-weight: normal;
    background: none 0 0 white;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #969696;
}

.ui-selectmenu-button.item_selected {
    color: #454545;
}

.ui-state-default .ui-icon {
    background-image: url("../img/selectbox-arrows.png");
    background-position: center center;
}

.ui-widget-content {
    background: #fff;
    font-family: GillSans-Light;
}

.ui-widget-content .ui-state-hover,
.ui-widget-content .ui-state-focus {
    border: 1px solid #cc3b6e;
    background: #fcfcfc;
    font-weight: normal;
    color: #cc3b6e;
}

.select-max-height {
    height: 200px;
    width: 160px;
}

/* general - footer >> */

#footer {
    max-width: 1140px;
    margin: 90px auto 50px auto;
    min-height: 150px;
    background: url('../img/footer-line.png') no-repeat center center transparent;
}

#footer_menu {
    float: left;
    list-style: none;
    padding-left: 15px;
    margin-top: -2px;
}

#footer_menu li {
    font-family: GillSans;
    display: inline-block;
    margin-left: 2px;
    margin-right: 44px;
}

#footer_menu li a {
    color: black;
    font-size: 16px;
}

#footer_social_wrp {
    float: right;
}

a.social-icon-holder {
    display: inline-block;
    height: 15px;
    margin: 0 24px 0 0;
    width: 16px;
}

a.social-icon-holder.youtube {
    background: url('../img/youtube-icon.png') no-repeat center center transparent;
}

a.social-icon-holder.instagram {
    background: url('../img/instagram-icon.png') no-repeat center center transparent;
}

a.social-icon-holder.google {
    background: url('../img/google-icon.png') no-repeat center center transparent;
}

a.social-icon-holder.twitter {
    background: url('../img/twitter-icon.png') no-repeat center center transparent;
}

a.social-icon-holder.facebook {
    background: url('../img/facebook-icon.png') no-repeat center center transparent;
}

/* social share buttons (addthis.com) */

/* hide pinterest + linkedin */
a.at-icon-wrapper.at-svc-pinterest_share,
a.at-icon-wrapper.at-share-btn.at-svc-linkedin {
    display: none;
}

#footer_row_1,
#footer_row_2 {
    clear: both;
}



#footer_copyright_holder {
    padding-left: 37px;
    padding-top: 41px;
    float: left;
}


#footer_copyright {
    background: url('../img/footer-logo.png') no-repeat transparent;
    padding-left: 45px;
    font-family: GillSans;
    font-size: 13px;
    color: #787a7e;
}


#terms_menu_holder {
    padding-top: 40px;
    float: right;
}

#terms_menu_holder a {
    color: #787a7e;
    font-family: GillSans;
    font-size: 14px;
    margin: 0 23px 0 20px;
}

/* << general - footer */


/* storyline >> */

.storyline-block {
    margin-top: 17px;
    width: 100%;
    font-size: 14px;
}



.storyline_menu_wrp {

    padding: 0 10px;
}


.list_type_menu_ul {
    border-bottom: 1px solid #dbdbdb;
    list-style: none outside none;
    padding-left: 0;
    display: inline-block;
    overflow: both;
}

.flex_100percent {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.list_type_menu_ul li {
    height: 59px;
    display: inline-block;
    float: left;
    font-family: GillSans-Light;
    font-size: 26px;
    margin: 0 55px 0 0px;
    padding-bottom: 18px;
    cursor: pointer;
}

.list_type_menu_ul.flex_100percent li {
    margin: 0;
}

.list_type_menu_ul.align_justify {
    text-align: justify;
    width: 100%;
    height: 59px;
}

.list_type_menu_ul.align_justify li {
    margin: 0;
    float: none !important;
    padding: 0;
}

.list_type_menu_ul li.active {
    border-bottom: 1px solid #C61754;
    color: #c61754;
}

.list_type_menu_ul li:last-child {
    margin: 0;
}

.storyline_menu_wrp .ui-selectmenu-button {
    display: none;
    width: 60% !important;
    max-width: 480px;
}

.storyline_menu_wrp .ui-selectmenu-button {
    color: #cc3b6e;
    background: none;
    border: 1px solid #cc3b6e !important;
    padding: 0px;
    color: #cc3b6e;
    font-size: 24px;
    font-family: GillSans-Light;
    font-weight: normal;
    border-radius: 16px;
}

.list_type_menu_jqui_selectmenu_list.ui-widget-content {
    font-size: 22px;
}


.storyline-content {
    padding-top: 28px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

.no-big .storyline-small:first-child {
    margin-left: 0px;
}

.no-big .storyline-small {
    width: 219px;
}

.storyline-big {
    float: left;
    height: 282px;
    left: 0;
    margin: 10px 5px;
    padding-left: 3px;
    position: relative;
    top: 0;
    width: 430px;
}

.storyline-small {
    float: left;
    height: 300px;
    left: 0;
    margin: 10px 5px;
    position: relative;
    top: 0;
    width: 223px;
}

.storyline-small-img-wrapper {
    height: 100% !important;
    background-size: cover !important;
}

.storyline-small .featured-small-read-button-holder,
.storyline-big .featured-small-read-button-holder {
    top: 16px;
    position: absolute;
    z-index: 1;
    display: none;
}

.storyline-small .featured-small-read-button-holder {
    left: 25px;
}

.storyline-big .featured-small-read-button-holder {
    left: 31px;
}

.featured-small-read-button-holder a.pink {
    background: none repeat scroll 0 0 rgba(198, 23, 84, 0.5);
    border-radius: 12px;
    display: block;
    font-size: 19px;
    height: 25px;
    left: 0;
    position: relative;
    top: 0;
    width: 37px;
}

.featured-small-read-button-holder a.pink:before {
    border-radius: 12px;
    content: "";
    display: block;
    height: 25px;
    left: -9px;
    position: absolute;
    top: 0px;
    width: 37px;
    background: url('../img/read-small-icon.png') no-repeat center center rgba(198, 23, 84, 1);
    transition: left 0.2s;
}

.featured-small-read-button-holder a:hover:before {
    left: 0px;
}


.storyline-small .rating {
    position: absolute;
    top: 24px;
    right: 22px;
    width: 55px;
    height: 10px;
}

.storyline-big,
.storyline-small {
    -webkit-box-shadow: 3px 3px 4px -2px rgba(41, 41, 41, 0.75);
    -moz-box-shadow: 3px 3px 4px -2px rgba(41, 41, 41, 0.75);
    box-shadow: 3px 3px 4px -2px rgba(41, 41, 41, 0.75);
    display: block !important;
}

.storyline-big .rating {
    position: absolute;
    left: 0;
    top: -20px;
    width: 55px;
    height: 10px;
}

.storyline-small .storyline-description {
    position: absolute;
    bottom: 30px;
    left: 14px;
    color: white;
    font-family: GillSans-Light;
    right: 14px;
    text-align: center;
    pointer-events: none;
}

.storyline-small .storyline-description .title {
    color: #ffffff;
    display: block;
    font-size: 18px;
    max-height: 26px;
    overflow: hidden;
    cursor: pointer;
    vertical-align: middle;
    line-height: 1;
}

.storyline-small .storyline-description .title-text {
    max-width: 175px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 2px;
}

.storyline-small .storyline-description .author {
    background: url("../img/storyline-author-icon.png") no-repeat scroll 2px 2px rgba(0, 0, 0, 0);
    color: #dddddd;
    max-height: 20px;
    overflow: hidden;
}

.storyline-big .storyline-description {
    bottom: 21px;
    color: #FFFFFF;
    font-family: GillSans-Light;
    left: 25px;
    position: absolute;
}

.storyline-big .storyline-description .title {
    color: white;
    font-size: 30px;
    cursor: pointer;
    word-wrap: break-word;
    max-width: 380px;
    display: inline-block;
    max-height: 125px;
    overflow: hidden;
}

.storyline-description .popup-note {
    background-color: #C61754;
    border-radius: 8px;
    color: #FFFFFF;
    display: none;
    font-family: GillSans;
    left: 0;
    padding: 5px 20px;
    position: absolute;
    text-align: center;
    top: -30px;
}

.storyline-description .title.published-book:hover+span.popup-note {
    display: block !important;
}

.storyline-big .storyline-description .author {
    background: url("../img/storyline-author-icon-big.png") no-repeat scroll 2px 2px rgba(0, 0, 0, 0);
    color: #9D9C9C;
    font-size: 16px;
    padding-left: 32px;
    ;
}


.storyline-item .bt_editstory {
    position: absolute;
    top: 6px;
    right: 5px;
    display: none;
    z-index: 99;
    padding: 2px 7px;
    border: 1px solid #e64c67;
    border-radius: 4px;
    width: 75px;
    color: #C61754;
}

.storyline-item .bt_editstory:hover {
    background: #c61754;
    color: white;
}

.storyline-item .bt_editstory:active {
    background: #e4b3c3;
    color: white;
}

.storyline-item:hover .bt_editstory {
    display: block;
}

.touch_device .storyline-item .bt_editstory {
    display: block;
}



.storyline-item .bt_submit_to_contest,
.storyline-item .bt_submitted_to_contest {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 0px 8px;
    font-size: 16px;
}

.bt_submitted_to_contest {
    cursor: default;
}

.more-stories-button-holder {
    text-align: center;
    margin-top: 73px;
}

button.more-stories,
.bt_list_load_more {
    display: block;
    margin: 0 auto;
    /*
    background: url("../img/load-more-icon.png") no-repeat scroll 34px center rgba(0, 0, 0, 0);
    padding-left: 40px;
*/
    border: 1px solid #C3C3C3;
    border-radius: 35px;
    color: #454545;
    font-family: GillSans-Light;
    font-size: 22px;
    height: 60px;
    width: 280px;
    transition: all .2s;
}

button.more-stories:before,
.bt_list_load_more:before {
    content: " ";
    display: inline-block;
    width: 36px;
    height: 33px;
    vertical-align: middle;
    margin-right: 15px;
    background: url("../img/load-more-icon.png") no-repeat;
}

button.more-stories.loading,
.bt_list_load_more.loading {
    background-color: #f4f4f4;
    color: #888;
}

button.more-stories.loading:before,
.bt_list_load_more.loading:before {
    background: url("../img/loader.gif") no-repeat;
}

/* << storyline */

/* writer_profile >> */

.profile-name {
    font-family: GillSans;
    font-size: 20px;
}

.profile-desc,
.profile-school-class,
.profile-school-name {
    font-family: GillSans-Light;
}

.profile-school-class>span,
.profile-school-name>span {
    color: #C61754;
}

.profile-desc>span>span {
    color: #c61754;
}

.stats-block {
    float: left;
    padding-left: 35px;
}

.stats-block .stat-value {
    color: #c61754;
    font-family: GillSans;
    font-size: 16px;
    padding-top: 4px;
}

.stats-block .stat-desc {
    margin-top: -4px;
    font-size: 12px;
}

.stats-block.followers {
    background: url('../img/profile-followers-icon.png') no-repeat 0 center transparent;
    width: 27%;
}

.stats-block.read-pages {
    background: url('../img/profile-read-pages-icon.png') no-repeat 0 center transparent;
    width: 31%;
}

.stats-block.profile-views {
    background: url('../img/profile-views-icon.png') no-repeat 0 center transparent;
}

.writers_list .profile-avatar-wrapper {
    /*         top: 15px;
    position: relative;*/
}

.user_profile_box {
    display: block;
    background-color: white;
    /* #eceef1; */
    width: 340px;
    float: left;
    box-shadow: 3px 5px 15px -2px rgba(210, 210, 210, 0.65);
    margin-right: 2.5%;
    margin-bottom: 20px;
    min-height: 160px;
}

/* box-shadow: 3px 3px 4px -2px rgba(41, 41, 41, 0.75); 
-webkit-box-shadow: 3px 3px 4px -2px rgba(41, 41, 41, 0.75);
    -moz-box-shadow: 3px 3px 4px -2px rgba(41, 41, 41, 0.75);
*/
.coaches_list .user_profile_box {
    min-height: auto;
}

.user_profile_box .profile-avatar-wrapper {
    margin: 0;
    padding: 0;
    border: none;
    float: left;
    width: 120px;
    height: 120px;
}

.user_profile_box .profile-data-block {
    float: right;
    width: 210px;
    padding: 0;
    color: #888d92;
}

.user_profile_box .profile-name {
    color: #54595e;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 7px;
    display: block;
}

.user_profile_box .profile-desc {
    margin-bottom: 10px
}

.user_profile_box .stats-block.followers,
.user_profile_box .stats-block.read-pages,
.user_profile_box .stats-block.profile-views {
    width: auto;
    float: left;
    margin-right: 15px;
}

.user_profile_box .stats-block.profile-views {
    margin-right: 0;
}

.user_profile_box .stats-block.writen-books {
    background: url('../img/profile-read-pages-icon.png') no-repeat 0 center transparent;
    width: auto;
}


/* << writer_profile */


/* private_panel >> */

#profile-header-block {
    width: 100%;
    height: 190px;
    background-color: #eceef1;
    border-bottom: 1px solid #d2d4d7;
    -webkit-box-shadow: 1px 3px 4px -5px rgba(41, 41, 41, 0.75);
    -moz-box-shadow: 1px 3px 4px -5px rgba(41, 41, 41, 0.75);
    box-shadow: 1px 3px 4px -5px rgba(41, 41, 41, 0.75);
    position: relative;
}

.profile-header-left-block {
    height: 100%;
    padding: 0px;
    width: 45%;
    min-width: 480px;
    position: relative;
    float: left;
    background-color: white; //#eceef1;
}


.profile-header-right-block {
    height: 100%;
    padding: 0px;
    width: 55%;
    position: relative;
    float: right;
    background-color: #ebecf0;
}

#profile-header-block .user_profile_box {
    min-width: 470px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    position: relative;
    width: 100%;
    margin: 30px 0 0 0;
}

#profile-header-block .profile-avatar-block {
    position: relative;
    width: 30%;
    float: left;
    height: 100%;
    padding: 0;
    margin: 0;
}

#profile-header-block .profile-avatar-wrapper {
    border-radius: 4px;
    border: 1px solid #dbdcdf;
    margin: 0 auto;
    padding: 7px;
    position: relative;
    max-width: 125px;
    max-height: 125px;
    width: auto;
    height: auto;
    cursor: pointer;
    float: none;
}

#profile-header-block .profile-avatar-wrapper .bt_edit {
    position: absolute;
    top: 6px;
    right: 5px;
    display: none;
}

#profile-header-block .profile-avatar-wrapper:hover .bt_edit,
.touch_device #profile-header-block .profile-avatar-wrapper .bt_edit {
    display: block;
}

#profile-header-block .profile-data-block {
    min-width: 320px;
    padding: 0;
    width: 70%;
    padding-right: 2%;
    max-width: 450px;
    float: left;
}


#profile-header-block .profile-name {
    font-size: 20px;
}

#profile-header-block .profile-stats {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

#profile-header-block .profile-stats>div {
    display: inline-block;
    float: none;
}

#profile-header-block .profile_awards_wrapper {
    position: absolute;
    top: -10px;
    right: 3%;
}

#profile-header-block .profile_awards_wrapper div.award-icon {
    float: right;
    cursor: pointer;
    position: relative;
    margin-left: 20px;
}

#profile-header-block .profile_awards_wrapper div.award-icon img {
    height: 24px;
}

#profile-header-block .award-icon-popup {
    background-color: #C61754;
    border-radius: 5px;
    color: #FFFFFF;
    font-family: GillSans-Light;
    left: -140px;
    padding: 2px 5px;
    position: absolute;
    text-align: center;
    top: 33px;
    width: 300px;
    display: none;
    z-index: 10;
    word-wrap: break-word;
}

#profile-header-block .award-icon:hover>.award-icon-popup {
    display: block;
}



.profile_stats_contests {
    width: 18%;
    height: 100%;
    min-height: 190px;
    min-width: 165px;
    padding: 10px 1.5%;
    float: left;
    border-left: 1px solid #dfe1e3;
}

.profile_stats_contests>div {
    margin: 10px auto;
}

.profile_stats_contests .stats_value,
.profile_stats_contests .stats_value a {
    font-size: 38px;
    color: #C61754;
    font-family: GillSans-Light;
}

.profile_stats_contests .stats_title {
    font-size: 14px;
    font-family: GillSans-Light;
    margin-top: -8px;
}

.profile_membership {
    float: left;
    width: 40%;
    height: 100%;
    min-height: 190px;
    border-left: 1px solid #dfe1e3;
    padding: 52px 2% 0 3%;
}

.profile_earnings {
    float: left;
    width: 250px;
    height: 100%;
    border-left: 1px solid #dfe1e3;
    padding: 10px 2.5%;
}

.earings-value {
    font-size: 38px;
    color: #C61754;
    font-family: GillSans-Light;
}

.earings-titles {
    font-size: 16px;
    font-family: GillSans-Light;
    margin-top: -8px;
}

.earings-titles span {
    width: 30%;
}

#bt_write_book {
    padding: 8px 25px;
    font-size: 20px;
    vertical-align: middle;
    margin-left: 20px;
}


.guest-header-block {
    margin-bottom: 15px;
    text-align: center;
}

.guest-title-block {
    background: url("/img/guest-header-logo.png") no-repeat scroll 0 7px rgba(0, 0, 0, 0);
    color: #C61754;
    font-family: GillSans;
    margin: 34px auto 14px;
    padding-left: 58px;
    position: relative;
    left: -29px;
    width: 240px;
    text-align: center;
}

.guest-title-block h3 {
    font-size: 40px;
}

.guest-subtitle-block {
    color: #4c4c4c;
    font-family: GillSans-Light;
    text-align: center;
    width: 80%;
    max-width: 768px;
    margin: 0 auto;
    font-size: 19px;
}

.guest-header-buttons-holder {
    text-align: center;
    margin-top: 23px;
}

.guest-header-buttons-holder a button {
    border-radius: 6px;
    color: white;
    background-color: #c61754;
    font-family: GillSans;
    font-size: 15px;
    height: 39px;
    width: 210px;
    border: 1px solid #c61754;
    margin: 0 5px;
}

.guest-header-buttons-holder a button.filled {
    color: #c61754;
    background-color: transparent;
}

#payoutModal .modal-dialog {
    width: 400px;
    margin: 30px auto !important;
}

#payoutModal .modal-header {
    background-color: #f6f6f6;
    border-bottom-width: 0px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#payoutModal .modal-title {
    font-family: GillSans;
    color: #C61754;
    font-size: 20px;
    padding: 7px 20px;
}

#payoutModal .modal-body {
    padding: 35px 40px 0 35px;
    /*height: 160px !important;*/
}

#payoutModal .modal-label {
    font-family: GillSans-Light;
    color: #5c5c5c;
    font-size: 19px;
}

#input_payout_request_amount {
    margin-top: 6px;
    width: 120px;
    border: 1px solid #c61754;
    border-radius: 6px;
    height: 43px;
    text-align: right;
    padding: 0 15px;
}

#payoutModal .currency-label {
    color: #c61754;
    font-size: 18px;
}

#payoutModal .modal-footer {
    padding: 17px 35px;
    text-align: left;
    background-color: #efefef;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

#payoutModal .modal-footer button {
    display: inline-block;
    height: 50px;
    margin: 0 2px;
    font-family: GillSans;
    font-size: 20px;
    border: none;
    border-radius: 8px;
}

#payoutModal .modal-footer button.cancel-modal-btn {
    background-color: white;
    color: #c61754;
    width: 100px;
}

#payoutModal .modal-footer button.complete-request-btn {
    background-color: #83bf2c;
    color: white;
    width: 150px;
    float: right;
}

/* << private_panel */

/* stories_page >> */

#stories_search_panel_wrp {
    width: 100%;
    height: 108px;
    background-color: #eceef1;
    border-bottom: 1px solid #d2d4d7;
    -webkit-box-shadow: 1px 3px 4px -5px rgba(41, 41, 41, 0.75);
    -moz-box-shadow: 1px 3px 4px -5px rgba(41, 41, 41, 0.75);
    box-shadow: 1px 3px 4px -5px rgba(41, 41, 41, 0.75);
}

#stories_search_panel {
    height: 100%;
    padding: 36px 10px 10px 10px;
}

.stories-categories-wrapper,
.stories-contests-wrapper {
    display: block;
    min-width: 180px;
    width: 33%;
    float: left;
    border-right: 1px solid #dedede;
    position: relative;
    padding-right: 23px;
}

.categories-arrow-button,
.contests-arrow-button {
    width: 27px;
    height: 27px;
    background: url('../img/categories-select-arrow.png') no-repeat center center white;
    border-radius: 3px;
    margin: 5px 0 0 0;
    box-shadow: 1px 1px 5px -2px rgba(41, 41, 41, 0.75);
    float: right;
    cursor: pointer;
}

.categories-select-title,
.contests-select-title {
    color: #C61754;
    font-family: GillSans-Light;
    font-size: 24px;
    font-weight: 400;
    float: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 80%;
}

.categories-list,
.contests-list {
    background-color: rgba(0, 0, 0, 0);
    left: -0px;
    position: absolute;
    top: 36px;
    width: 230px;
    z-index: 999;
    visibility: hidden;

}

.categories-list .arrow,
.contests-list .arrow {
    display: block;
    z-index: 10;
    height: 20px;
    border-bottom: 7px solid rgba(255, 255, 255, 0.9);
    border-left: 7px solid rgba(0, 0, 0, 0);
    border-right: 7px solid rgba(0, 0, 0, 0);
    height: 14px;
    margin-right: 32px;
}

.categories-list-content {
    height: 527px;
}

.contests-list-content {
    height: 330px;
    padding-right: 10px;
    padding-bottom: 6px;
}

.categories-list-content,
.contests-list-content {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    padding-top: 18px;
    box-shadow: 0px 3px 5px -1px rgba(41, 41, 41, 0.4);
}

.categories-list-content .category-list-item,
.contests-list-content .contest-list-item {
    font-family: GillSans;
    font-size: 17px;
    padding: 5px 0 4px 17px;
    cursor: pointer;
    margin-left: 10px;
}

.categories-list-content .category-list-item:hover,
.contests-list-content .contest-list-item:hover {
    background-color: #c61754;
    color: white;
    border-radius: 6px;
}

.categories-list-content .overview,
.contests-list-content .overview {
    width: 94%;
}

.categories-list-content .scroll-bar.vertical,
.contests-list-content .scroll-bar.vertical {
    border-left: 1px solid rgba(214, 214, 214, 1);
    height: 330px !important;
    margin-right: 10px;
    margin-top: -18px;
    padding-left: 5px;
}

.contests-list-content .scroll-bar.vertical {
    display: block;
}

#stories_search_panel .categories-list-content .scroll-bar.vertical {
    display: none;
}

.categories-list-content .scroll-bar.vertical .thumb,
.contests-list-content .scroll-bar.vertical .thumb {
    background-color: rgba(214, 214, 214, 1) !important;
    opacity: 1 !important;
    cursor: pointer;
}

.stories-categories-wrapper .ui-selectmenu-text,
.stories-contests-wrapper .ui-selectmenu-text {
    color: #C61754;
    font-family: GillSans-Light;
    font-size: 24px;
    font-weight: 400;
    padding-left: 0em !important;
}

.categories-select-list,
.contests-select-list {
    position: relative;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border: medium none;
    border-radius: 5px;
    background-image: none;
    height: 150px;
}

.categories-select-list .ui-menu-item,
.categories-select-list .ui-state-focus,
.contests-select-list .ui-menu-item,
.contests-select-list .ui-state-focus {
    background-color: rgba(255, 255, 255, 0.8);
}

.categories-select-list .ui-menu-item:first-child,
.contests-select-list .ui-menu-item:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.categories-select-list.ui-menu .ui-state-focus,
.categories-select-list .ui-menu .ui-state-active,
.contests-select-list.ui-menu .ui-state-focus,
.contests-select-list .ui-menu .ui-state-active {
    margin: 0px;
}

.stories-keywordinput-wrapper {
    width: 50%;
    display: block;
    float: left;
    padding-left: 23px;
}

#stories_search_panel_wrp .stories-search-input,
.content_wrp_nw .stories-search-input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.stories-search-input {
    background-color: #FFFFFF;
    /*border: 1px solid #ffdae8;*/
    border: #eae5e8 1px solid !important;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;

    /*box-shadow: inset 1px 1px 2px -1px rgba(0, 0, 0, 0.3);*/
    float: left;
    font-family: GillSans-Light;
    font-size: 16px;
    height: 38px;
    padding-left: 15px;
    padding-right: 5px;
    width: 80% !important;
}

.stories-search-button {
    float: left;
    height: 39px;
    width: 41px;
    border: none;
    background: url("../img/search-icon.png") no-repeat scroll center center #c61754;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.content_wrp_nw .stories-search-button {
    float: left;
    height: 39px;
    width: 14%;
    border: none;
    background: #c61754;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #fff;
}

/* << stories_page */


/* viewbook_page >> */



.reading-book-header {
    width: 100%;
    min-height: 300px;
    margin-left: 0;
    margin-right: 0;
    position: relative;
}

.reading-story-img-wrp {
    padding-left: 0;
    padding-right: 0;
    float: left;
    max-width: 760px;
    width: 100%;
    position: relative;
    cursor: default;
    border-radius: 5px 0 0 0;
    overflow: hidden;
    min-height: 300px;
}


.gradient-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    background: url('../img/grad2.png') no-repeat center center / cover;
}

.reading-story-img-wrp .gradient-cover {
    width: 760px;
}

.reading-rating {
    height: 15px;
    left: 55px;
    position: absolute;
    top: 30px;
    width: 85px;
}

.reading-rating.big-stars-0 {
    background-image: url('../img/0-star-big.png');
}

.reading-rating.big-stars-0-5 {
    background-image: url('../img/0.5-star-big.png');
}

.reading-rating.big-stars-1 {
    background-image: url('../img/1-star-big.png');
}

.reading-rating.big-stars-1-5 {
    background-image: url('../img/1.5-star-big.png');
}

.reading-rating.big-stars-2 {
    background-image: url('../img/2-star-big.png');
}

.reading-rating.big-stars-2-5 {
    background-image: url('../img/2.5-star-big.png');
}

.reading-rating.big-stars-3 {
    background-image: url('../img/3-star-big.png');
}

.reading-rating.big-stars-3-5 {
    background-image: url('../img/3.5-star-big.png');
}

.reading-rating.big-stars-4 {
    background-image: url('../img/4-star-big.png');
}

.reading-rating.big-stars-4-5 {
    background-image: url('../img/4.5-star-big.png');
}

.reading-rating.big-stars-5 {
    background-image: url('../img/5-star-big.png');
}

.reading-rating .rating-star-item {
    height: 100%;
    width: 17px;
    float: left;
    cursor: pointer;
}

.read-full-story-btn {
    position: absolute;
    right: 25px;
    top: 20px;
}

.read-full-story-btn button {
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    padding: 8px 30px;
    color: #525252;
    background-color: rgba(255, 255, 255, 0.7);
    font-family: GillSans;
}

.writing-title-wrapper {
    bottom: 36px;
    left: 45px;
    position: absolute;
    width: 50%;
}

.writing-title {
    color: #FFFFFF;
    float: left;
    font-family: GillSans-Light;
    font-size: 46px;
    line-height: 52px;
    width: 100%;
    max-height: 160px;
    word-wrap: break-word;
    overflow: hidden;
}


.reading-published,
.reading-updated {
    color: #a2a2a2;
    font-family: GillSans-Light;
    font-size: 18px;
}

.reading-published.updated {
    color: #bfbebe;
    /*margin-bottom: 4px;*/
}

.reading-published.created.updated {
    color: #969696;
}

.reading-authors-block {
    width: 220px;
    margin-left: 25px;
    margin-top: 30px;
}

.reading-authors-block ul.coauthors-list li.coauthors-list-item .coauthor-data {
    width: 207px;
}

.reading-author-col {
    padding-left: 0;
    margin-bottom: 22px;
    width: 220px;
    overflow: hidden;
}

.coauthoring-title {
    font-family: GillSans-Light;
    font-size: 19px;
    margin-bottom: 12px;
}

ul.coauthors-list {
    list-style: none;
    padding-left: 0px;
}

ul.coauthors-list li.coauthors-list-item {
    display: block;
    margin: 8px 0;
}

ul.coauthors-list li.coauthors-list-item .coauthor-data {
    width: 167px;
    height: 40px;
    background-color: #F2F2F2;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

ul.coauthors-list li.coauthors-list-item.not-editable .coauthor-data {
    width: 207px;
    border-radius: 5px;
}

ul.coauthors-list li.coauthors-list-item .coauthor-data .coauthor-item-photo {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
    float: left;
    background-repeat: none;
    background-size: contain;
    margin: 5px 7px;
}

ul.coauthors-list li.coauthors-list-item .coauthor-data .coauthor-item-name {
    float: left;
    font-family: GillSans;
    font-size: 16px;
    padding: 8px 4px 0 4px;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

ul.coauthors-list li.coauthors-list-item .coauthor-remove-button {
    display: block;
    float: left;
    height: 40px;
    width: 38px;
    background-color: #f2f2f2;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background: url('../img/close-icon.png') no-repeat center center #f2f2f2;
    cursor: pointer;
}

.author-data-wrapper {
    flex-grow: 1;
    flex-direction: column;
    display: flex;
    justify-content: center;
    /*padding: 0 14px;*/
}

.author-data-wrapper>div {
    line-height: 1.7em;
}

.main-author-data {
    background-color: #F2F2F2;
    border-radius: 5px;
    width: 208px;
    overflow: hidden;
    padding: 7px 0;
    display: flex;
}

.main-author-data-bg-img {
    background-repeat: none;
}

.author-item-photo {
    background-size: contain;
    border-radius: 15px;
    /*float: left;*/
    height: 30px;
    margin: 15px 21px;
    overflow: hidden;
    width: 30px;
}

.author-item-name,
.author-school-class {
    font-family: GillSans;
    font-size: 16px;
    /*padding: 8px 8px 0;*/
    color: #c61754;
}

.author-item-address {
    font-family: GillSans-Light;
    font-size: 14px;
    padding: 0px 8px 0;
    color: #787878;
}

/***************************/

.reading-summary-block-wrp {
    overflow: hidden;
}

.reading-stats-block-wrp {
    padding: 0 30px;
    border-bottom: 1px solid #d3d5d7;
    border-top: 1px solid #d3d5d7;
}

.reading-stats-block {
    width: 100%;
}

.stats-item {
    height: 22px;
    margin: 20px 0;
    width: 200px;
}

.stats-item .stats-item-title {
    float: left;
    font-family: GillSans;
    font-size: 16px;
    padding-left: 37px;
    background-repeat: no-repeat;
    color: #5c5c5c;
    background-position: 0 center;
}

.stats-item .stats-item-title.pages {
    background-image: url('../img/reading-pages-icon.png');
}

.stats-item .stats-item-title.views {
    background-image: url('../img/reading-views-icon.png');
}

.stats-item .stats-item-title.reads {
    background-image: url('../img/reading-reads-icon.png');
}

.stats-item .stats-item-value {
    float: right;
    font-family: GillSans;
    font-size: 17px;
    color: #545454;
}


.reading-summary-block {
    background-color: white;
    max-width: 760px;
    width: 100%;
    padding: 0;
    float: left;
    position: relative;
    border-radius: 0 0 0 4px;
}

.reading-summary-title {
    color: #767676;
    font-family: GillSans-Light;
    font-size: 37px;
    float: left;
    margin-top: 18px;
}

.reading-summary-share-block {
    position: absolute;
    right: 0;
    top: 30px;
}

.reading-summary-share-block img {
    float: left;
    margin: 4px;
}

.reading-share {
    font-family: GillSans-Light;
    font-size: 18px;
    line-height: 1.7em;
    margin-top: 38px;
    word-wrap: break-word;
}

//renamed from more-stories to stories-links
.reading-summary-block .stories-links {
    margin-top: 50px;
    margin-bottom: 50px;
}

.reading-summary-block .stories-links {
    margin-top: 3em;
    margin-bottom: 3em;
}

.reading-summary-block .stories-links a:not(last-child) {
    margin-bottom: 0.8em;
}

.reading-summary-block .stories-links a {

    display: block;
    color: #c61754;
    font-family: GillSans-Light;
    font-size: 23px;
    padding-right: 25px;
    background: url('../img/pink-arrow-right.png') no-repeat right center transparent;
}


.share-summary-block {
    height: 125px;
    background: url('../img/logo_big.png') no-repeat 70px 15px #f6f7f9;
    padding-left: 220px
}

.share-summary-title {
    color: #5E5E5F;
    font-size: 17px;
    padding-left: 7px;
    padding-top: 16px;
}

.share-icons-wrapper {
    margin-top: 9px;
    margin-left: 3px;
    box-shadow: 0 2px 6px -4px rgba(41, 41, 41, 0.5);
    display: inline-block;
}

.share-icon {
    height: 44px;
    width: 72px;
    border-right: 1px solid #f8f8f8;
    float: left;
    background-color: white;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.share-icon:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.share-icon:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.share-icon.active {
    background-color: #e2eaef;
    box-shadow: inset 1px 3px 2px -1px rgba(203, 210, 215, 0.7);
}

.share-icon.twitter {
    background-image: url('../img/share-twitter.png');
}

.share-icon.google {
    background-image: url('../img/share-google.png');
}

.share-icon.facebook {
    background-image: url('../img/share-facebook.png');
}

.share-icon.linkedin {
    background-image: url('../img/share-linkedin.png');
}

.share-icon.red {
    background-image: url('../img/share-red.png');
}

.addthis_sharing_toolbox {
    margin-top: 7px;
}







.top-stripe-block {
    background: url("../img/page-top-bg-1.png") no-repeat 0 0 rgba(0, 0, 0, 0);
    padding-top: 45px;
    background-repeat: round;
}

.bottom-stripe-block {
    background: url("../img/page-bottom-bg-1.png") no-repeat 0 0 rgba(0, 0, 0, 0);
    height: 45px;
    background-repeat: round;
}

.top-stripe-block-870 {
    background: url("../img/page-top-bg-870.png") no-repeat 3px 0 rgba(0, 0, 0, 0);
    padding-top: 45px;
}

.bottom-stripe-block-870 {
    background: url("../img/page-bottom-bg-870.png") no-repeat 3px 0 rgba(0, 0, 0, 0);
    height: 45px;
}

.viewbook_wrp {
    max-width: 1070px;
    width: 100%;
    float: right;
    overflow: hidden;
    position: relative;
}

.viewbook_left_col {
    max-width: 760px;
    width: 100%;
    float: left;
}

.viewbook_right_col {
    width: 310px;
    float: left;
    padding: 0 5px;
}


.viewbook_left_col .reading-authors-block {
    display: none;
    width: 100%;
    float: none;
    margin-left: 25px;
    margin-top: 30px;
    background: #fafafa;
    margin: 0;
    padding: 20px 10px 20px 50px;
    clear: both;
    max-width: 760px;
    position: relative;
    overflow: hidden;
}

.viewbook_left_col .reading-author-col {
    float: left;
    margin-right: 30px;
    margin-bottom: 10px;
}

.viewbook_left_col .reading-stats-block-wrp {
    display: none;
    background: #fff;
    width: 100%;
    float: none;
    border-top: none;
    border-bottom: none;
    overflow: hidden;
    max-width: 760px;
    padding: 10px 50px;
}

.viewbook_left_col .reading-stats-block {
    border-top: none;
    border-bottom: 1px solid #d3d5d7;
}

.comments-block {
    padding: 0 75px;
}

.comments-block h3 {
    font-family: ProximaNova-Bold;
    font-size: 21px;
}

.comments-wrapper {
    overflow: hidden;
    margin-top: 52px;
}

.comments-block .comment-body {
    position: relative;
    top: 0;
    left: 0;
}

.comments-block .folding-dot-holder {
    position: absolute;
    width: 1px;
    height: 1px;
    top: 0;
    left: 0;
}

.comments-block .folding-dot-holder .folding-dot {
    width: 915px;
    height: 10px;
    position: absolute;
    top: 14px;
    right: 1px;
    background: url("../img/folding-dot-0.png") repeat-x scroll 3px 0 rgba(0, 0, 0, 0);
    display: none;
}


.comments-block .comment-item {
    margin-left: 16px;
}

.comments-block .reply-comments .comment-item {
    margin-left: 69px;
}

.comments-block .comment-item .comment-avatar {
    float: left;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.comments-block .comment-item .comment-user-name {
    float: left;
    font-family: GillSans;
    font-size: 15px;
    padding: 5px 9px;
}

.comments-block .comment-item .comment-time {
    float: left;
    font-family: GillSans;
    color: #c0c0c0;
    font-size: 15px;
    padding: 5px 5px;
}

.comments-block .comment-item .comment-text {
    color: #7a7a7a;
    font-family: GillSans;
    font-size: 15px;
    line-height: 1.2em;
    margin-left: 39px;
    padding-top: 3px;
    word-wrap: break-word;
}

.comments-block .comment-item .comment-controll-block {
    margin-left: 39px;
    margin-bottom: 17px;
    padding: 11px 0;
    border-bottom: 1px solid #d8dadc;
}

.comment-controll-block .comment-reply-btn {
    float: left;
    font-family: GillSans;
    color: #7a7a7a;
}

.comment-reply-btn a {
    color: #C61754;
    font-family: GillSans;
    font-size: 14px;
    padding-left: 4px;
}

.comment-controll-block .comment-votes {
    float: left;
    margin-left: 2%;
}

.comment-controll-block .comment-votes a {
    font-family: ProximaNova-Bold;
    font-size: 18px;
    color: #bfbfbf;
    display: inline-block;
    visibility: hidden;
    width: 8px;
    height: 8px;
}

.comment-controll-block .comment-votes a.minus {
    margin-left: 3px;
    background: url('../img/comment-minus-icon.png') no-repeat center center;
    visibility: visible;
}

.comment-controll-block .comment-votes a.plus {
    margin-right: 3px;
    background: url('../img/comment-plus-icon.png') no-repeat center center;
    visibility: visible;
}

.comment-controll-block .comment-votes .value {
    font-family: ProximaNova-Bold;
    font-size: 12px;
    color: gray;
}

.comment-controll-block .comment-claim-btn {
    float: right;
    margin-right: 20px;
}

.comment-claim-btn a {
    color: #C61754;
    font-family: GillSans;
    font-size: 14px;
    padding-left: 25px;
    display: inline-block;
    background: url('../img/comment-claim-icon.png') no-repeat 0 center;
}

.comment-controll-block .comment_admin_tools {
    float: right;
    margin-right: 20px;
}

.comment-controll-block .comment_admin_tools .bt_toggle_comment_approved {
    color: green;
    font-family: GillSans;
    font-size: 14px;
    display: inline-block;
    background: none;
    padding-left: 0;
    cursor: pointer;
}

.comment-controll-block .comment_admin_tools .bt_toggle_comment_approved.state_off {
    color: #C61754;
}

.comments-login-block {
    margin-top: 20px;
    height: 50px;
}

.comments-login-btn {
    background: url("../img/comments-login-icon.png") no-repeat scroll 22px center rgba(0, 0, 0, 0);
    border: 1px solid #C0CAED;
    border-radius: 5px;
    color: #2B55F9;
    float: left;
    font-family: ProximaNova-Regular;
    font-size: 14px;
    padding: 9px 0 9px 10px;
    width: 135px;
}

.comments-login-desc {
    float: left;
    font-size: 14px;
    color: #828282;
    padding: 12px 0 12px 17px;
    font-family: ProximaNova-Regular;
}

.add-comment-block {
    margin-top: 30px;
}

.textarea-wrapper {
    width: 100%;
    height: 200px;
    border: 1px solid #e1e1e1;
    position: relative;
}

.add-comment-avatar {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 20px;
    float: left;
    height: 40px;
    margin: 5px;
    width: 40px;
}

.add-comment-main {
    float: left;
    width: 65%;
    padding-left: 10px;
    padding-top: 5px;
    position: relative;
}

.comment-textarea {
    border: medium none;
    color: #333333;
    font-family: GillSans;
    font-size: 15px;
    height: 100%;
    left: 0;
    padding: 14px 18px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
    resize: none;
}

.textarea-triangle {
    background-color: #FFFFFF;
    border: 1px solid #E1E1E1;
    height: 20px;
    left: -3px;
    position: absolute;
    top: 5px;
    transform: rotate(45deg);
    width: 20px;
    z-index: 1;
}

.add-comment-controll {
    padding-top: 18px;
}

.add-comment-notification-block {
    color: #828282;
    float: left;
    font-family: ProximaNova-Regular;
    font-size: 12px;
    line-height: 18px;
    padding: 0 20px 0 3px;
    width: 50%;
}

.add-comment-btn-wrapper {
    float: right;
    width: 49%;
    padding: 5px 0 5px 30px;
}

.comments-rules-link {
    color: #c61754;
    text-decoration: underline;
}

.add-comment-btn {
    width: 100%;
    color: white;
    font-family: ProximaNova-Semibold;
    font-size: 18px;
    background-color: #83bf2c;
    border: none;
    border-radius: 6px;
    padding: 10px 0;
}

.add-comment-btn.inactive {
    opacity: 0.5;
}

.changed {
    color: red;
    padding-left: 10px;
}

.not-changed {
    color: #999999;
    padding-left: 10px;
}

/* << viewbook_page */



/* readbook_page >> */

.read_book_page .content_wrp_nw {
    max-width: 920px;
    padding: 20px 0 20px 50px;
    position: relative;
}

.readbook_wrp {
    max-width: 960px;
    width: 100%;
    float: right;
    position: relative;
}




#book_frame {
    background: #fefefe;
    border-radius: 4px 4px 0 0;
    min-height: 300px;
    overflow: hidden;
}

#book_pages {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    vertical-align: top;

}

#book_frame .book_page {
    padding: 30px 80px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
}

#book_frame .book_page .book_page {
    padding: 0px;
    width: 100% !important;
}

.floating_box {
    position: relative;
    top: 70px;
}

.readbook_sidebar {
    position: absolute;
    width: 50px;
    height: 100%;
    top: 0;
    left: -50px;
}

.sidebar_pagination {
    margin-top: 130px;
}

.sidebar_pagination .bt_pagination_prev_page,
.sidebar_pagination .bt_pagination_next_page {
    display: block;
    cursor: pointer;
    width: 50px;
    height: 50px;
    margin: 20px auto;
    background: url('../img/slider-left-side-arrow-pink.png') no-repeat center center;
}

.sidebar_pagination .bt_pagination_next_page {
    display: block;
    cursor: pointer;
    width: 50px;
    height: 50px;
    margin: 20px auto;
    background: url('../img/slider-right-side-arrow-pink-v180.png') no-repeat center center;
}

.sidebar_pagination .bt_pagination_prev_page.inactive,
.sidebar_pagination .bt_pagination_next_page.inactive {
    opacity: 0.1;
    cursor: default;
}

.sidebar_pagination .pagination-label {
    background-color: #F7F7F7;
    border-radius: 20px;
    color: #838383;
    display: block;
    font-family: GillSans;
    font-size: 18px;
    margin: 0px auto;
    padding: 3px 0;
    width: 45px;
    text-align: center;
}


.optinal-menu-block {
    position: relative;
    width: 42px;
    height: 42px;
    z-index: 99;
    margin: 0 auto;
}

.optinal-menu-block .back-icon {
    display: block;
    top: 10px;
    left: 0px;
    width: 100%;
    height: 42px;
    background: url('../img/back-round-icon.png') no-repeat center center;
}

.optinal-menu-icon {
    display: block;
    width: 42px;
    height: 42px;
    background: url('../img/optional-menu-icon.png') no-repeat center center;
    cursor: pointer;
    z-index: 20;
}


.popup-optional-menu {
    display: none;
    background-color: rgba(0, 0, 0, 0);
    left: 7px;
    position: absolute;
    top: 40px;
    width: 210px;
    z-index: 1000;
}

.popup-optional-menu .popup-arrow-holder {
    height: 7px;
    background-color: transparent;
}

.popup-optional-menu .popup-menu-content {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    border: 1px solid #eeeeef;
    margin-top: 5px;
}

.popup-link,
.popup-optional-menu .popup-menu-content .popup-link {
    display: block;
    border-bottom: 1px solid #eeeeef;
    text-align: left;
    color: #4e4e4e;
    font-family: GillSans;
    padding: 10px 0 11px 24px;
    cursor: pointer;
}

.pop-link:last-child,
.popup-optional-menu .popup-menu-content .popup-link:last-child {
    border-bottom: none;
}

.popup-optional-menu .arrow {
    height: 12px;
    margin: 0 7px;
}

.content-pagination-wrapper {
    height: 85px;
    background-color: white;
    box-shadow: 0px 8px 9px -6px rgba(203, 210, 215, 0.7) inset;
    text-align: center;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
}

.content-pagination-wrapper .pagination-left-wrapper,
.content-pagination-wrapper .pagination-right-wrapper {
    width: 160px;
    height: 100%;
    text-align: center;
}

.content-pagination-wrapper .pagination-left-wrapper {
    float: left;
}

.content-pagination-wrapper .pagination-right-wrapper {
    float: right;
}

.content-pagination-wrapper .pagination-center-wrapper {
    width: 60px;
    height: 100%;
    margin: 0 auto;
    display: inline-block;
}

.content-pagination-wrapper .current-page-number {
    height: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.content-pagination-wrapper .pagination-label {
    background-color: #F7F7F7;
    border-radius: 20px;
    color: #838383;
    display: inline-block;
    font-family: GillSans-Light;
    font-size: 20px;
    margin: 25px auto;
    padding: 3px 20px;
}

.content-pagination-wrapper .slider-btn {
    border: none;
    background-color: transparent;
    color: #c61754;
    font-family: GillSans-Light;
    font-size: 23px;
    margin: 25px 0;
    display: inline-block;
    cursor: pointer;
}

.content-pagination-wrapper .slider-btn.prev {
    background: url('/img/slider-left-arrow-small.png') no-repeat left center transparent;
    padding-left: 25px;
    vertical-align: middle;
}

.content-pagination-wrapper .slider-btn.next {
    background: url('/img/slider-right-arrow-small.png') no-repeat right center transparent;
    margin: 17px 0 0;
    padding-right: 20px;
}

.content-pagination-wrapper .pages-left-counter {
    text-transform: uppercase;
    font-family: GillSans-Light;
    color: #b5b5b5;
}

.content-pagination-wrapper .last_page {
    text-transform: uppercase;
    font-family: GillSans-Light;
    color: #b5b5b5;
    display: none;
}

.inactive .slider-btn.prev,
.inactive .slider-btn.next {
    opacity: 0.1;
    cursor: default;
}

.btn.coach {
    padding: 12px 24px;
    font-size: 18px;
}

/* << readbook_page */


.body_dark .nav-header-menu {
    color: #fff;
}

.nav-header-menu {
    color: #333;
}

.image-preview img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Settings
   ========================================================================== */
.settings-general-wrapper {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 500px;
    background-color: rgba(211, 214, 220, 0.85);
    border-radius: 10px;
    padding: 39px 33px 35px 35px;
}


.settings-general-wrapper .name,
.settings-general-wrapper .address {
    float: left;
    font-family: GillSans-Light;
    font-size: 18px;
    height: 39px;
    margin-right: 2%;
    padding-left: 15px;
    width: 67%;
    border: medium none;
    border-radius: 5px;
}

.settings-general-wrapper.school-user .address_wrapper span.ui-selectmenu-button {
    width: 100% !important;
}

.settings-general-wrapper .name {
    width: 100%;
}

.settings-general-wrapper input:focus,
.settings-general-wrapper .ui-selectmenu-button.ui-state-focus {
    border: 1px solid #c61754 !important;
}

.settings-general-wrapper input.error {
    background-color: rgba(255, 187, 187, 1);
    color: #dc5157;
    border: 1px solid #ff6363;
}

.settings-general-wrapper .country_error .ui-selectmenu-button {
    background-color: #FFBBBB !important;
    border: 1px solid #FF6363 !important;
}

.settings-general-wrapper .country_error .ui-selectmenu-button .ui-selectmenu-text {
    color: #EC828B !important;
}

.settings-general-wrapper .billing-city {
    float: right;
    font-family: GillSans-Light;
    font-size: 18px;
    height: 39px;
    padding-left: 15px;
    width: 68%;
    border: medium none;
    border-radius: 5px;
}

.settings-general-wrapper .credit-card-name {
    float: right;
    font-family: GillSans-Light;
    font-size: 18px;
    height: 39px;
    padding-left: 15px;
    width: 100%;
    border: medium none;
    border-radius: 5px;
    margin-top: 24px;
}

.settings-general-wrapper .state-postal-block .ui-selectmenu-button {
    width: 47% !important;
}

.settings-general-wrapper .postal-code {
    float: right;
    font-family: GillSans-Light;
    font-size: 18px;
    height: 39px;
    padding-left: 15px;
    width: 50%;
    border: medium none;
    border-radius: 5px;
}

.settings-general-wrapper .email,
.settings-general-wrapper .g_name,
.settings-general-wrapper .g_email,
.settings-general-wrapper .password {
    height: 39px;
    width: 100%;
    font-family: GillSans-Light;
    font-size: 18px;
    padding-left: 15px;
    border: medium none;
    border-radius: 5px;
}

.settings-general-wrapper .billing-address {
    height: 39px;
    width: 100%;
    font-family: GillSans-Light;
    font-size: 18px;
    padding-left: 15px;
    border: medium none;
    border-radius: 5px;
}

.settings-general-wrapper .g_name {
    height: 39px;
    margin-bottom: 10px;
    background-image: url('../img/guardian-icon.png'), url('../img/question-icon.png');
    background-repeat: no-repeat, no-repeat;
    background-position: 3%, 97%;
    padding-left: 9%;
}


.settings-general-wrapper .chb-wrapper {
    display: inline-block;
    float: right;
    width: 92%;
    font-family: GillSans-Light;
    font-size: 15px;
    margin-bottom: 14px;
}

.settings-general-wrapper .checkbox-block {
    margin-top: 19px;
}

.settings-general-wrapper .checkbox {
    display: inline;
    font-size: 10px;
    font-weight: 400;
    margin-left: -2px;
    margin-top: 0px;
    margin-botton: 0px;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    font-size: 14px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 1em;
    margin: 0px;
    padding: 10px 0px;
    z-index: 9999;
    width: 100%;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    display: block !important;
    line-height: 0.9em !important;
    padding: 0px !important;
    border: none !important;
    text-align: left !important;
}

.dropdown-menu li a {
    padding: 5px 0px;
    display: block;
}



/* ==========================================================================
   Language Picker
   ========================================================================== */

.body_class_02 .language-picker {
    color: #333;
}

.body_dark .language-picker {
    color: #fff;
}

.language-picker {
    line-height: 52px;
    text-transform: uppercase;
    text-align: center;
    max-width: 100px;
    float: left;
    width: 5%;
    font-family: GillSans;
}

.language-picker .dropdown-menu {
    text-transform: capitalize;
    padding: 5px 0;
    top: 100%;
    border-radius: 0;
}

.language-picker .dropdown-menu>.active>a,
.language-picker .dropdown-menu>.active>a:hover,
.language-picker .dropdown-menu>.active>a:focus {
    font-weight: bold;
    color: #333;
    text-decoration: none;
    outline: 0;
    background-color: transparent;
}

.language-picker .dropdown-menu a:hover,
.language-picker .dropdown-menu>.active>a:hover {
    background-color: rgba(198, 23, 84, 0.09);
    color: rgba(198, 23, 84, 1);
    transition: background 0.1s;
}

.language-picker .dropdown-menu li a {
    padding: 10px 15px;
}

.language-picker .dropdown-menu li:last-child a {
    padding: 10px 15px;
}

/* ==========================================================================
   Helpers
   ========================================================================== */

/* Clearfix
   ========================================================================== */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

#unverified-bar {
    background-color: #f2dede;
    border-bottom: 1px solid #ebccd1;
    color: #a94442;
    padding: 10px 0;
    margin: 0 -3%;
    font-weight: bold;
    overflow: hidden;
}

/* Adsbygoogle
   ========================================================================== */

.adsbygoogle-label {
    margin-bottom: 5px;
    padding-top: 5px;
    color: #666;
    padding-left: 10px;
}


@media screen and (max-width: 481px) {
    html {
        width: 100%;
    }

    body {
        min-width: 0;
        max-width: 100%;
    }

    .settings-general-wrapper {
        width: 100% !important;
    }

    .address_wrapper .address {
        width: 64% !important;
    }

    .License_container {
        width: 100%;
        margin: auto;
        padding: 40px 20px 0;
    }

    .License_container .title {
        font-size: 25px;
        font-weight: 600;
    }


    #successModal .modal-dialog {
        width: 90%;
        margin: 6em auto
    }

}