
/*pages*/
.page_one {
    max-width: 1100px;
    margin: auto;
    padding: 12px;
    line-height: 150%;
    font-weight: 100;
    text-indent: 10px;
}

.page_one b, .page_one strong {
    font-weight: 500;
}



.bro_page_text {
    max-width: 700px;
    margin: auto;
    text-align: center;
    line-height: 185%;
    font-size: 18px;
}

.bro_page_access_list {
    text-align: left;
    font-size: 16px;
    line-height: 150%;
}

.bro_page_access_list ul {
    margin: 5px 17px;
}

.bro_page_cond_check {
    background-size: 100%;
    width: 70px;
    height: 70px;
    position: absolute;
    top: calc(50% - 35px);
    left: calc(50% - 35px);
    opacity: 0.8;
}

.bro_page_cond_msg {
    position: relative;
    margin-bottom: 17px;
}

.bro_join_button {
    box-shadow: 0px 3px 12px #008d3b;
    animation: bro_join_button_animate 1.5s ease-in-out infinite;
    transition: all 0.3s;
}

.bro_join_button:hover {
    box-shadow: 0px 3px 32px #008d3b;
    animation: none;
    transform: scale(1.08);
}

@keyframes bro_join_button_animate {
 0% { box-shadow: 0px 3px 12px #008d3b;
    transform: skew(-1.5deg, -1.5deg);  }
 50% {
     box-shadow: 0px 3px 32px #008d3b;
     transform: skew(1.5deg, 1.5deg); 
 }
 100% { box-shadow: 0px 3px 12px #008d3b;transform: skew(-1.5deg, -1.5deg); }
}


/*about_page*/
.about_page {
    padding: 15px;
}

@media(max-width: 768px) {
    .about_page {
        padding: 15px 8px;
    }
}

.about_page_top {
    display: flex;
    flex-direction: column;
    /* padding: 33px 0 72px; */
    background-image: url('https://gitun.com/f/im/contests/head.svg');
    max-width: 842px;
    margin: 6px auto 10px;
    background-repeat: no-repeat;
    background-position: center;
    height: 252px;
    background-size: 100%;
}

.partner_page_top {
    height: 300px;
    background-image: url('https://i0.wp.com/infosysta.com/wp-content/uploads/2019/02/shutterstock_1166472757-Converted-02.png');
    background-size: 76%;
    border-bottom: 2px solid #5288a8;
}

.partner_withdraw_top {
    display: flex;
    justify-content: space-between;
    padding: 17px 20px;
    flex-wrap: wrap;
}

.partner_withdraw_form input {
    display: inline-block;
    width: unset;
}

.partner_withdraw_form {
    padding: 8px 0;
}

.partner_link_copy {
    display: block;
    width: 20px;
    height: 20px;
    background-size: 100%;
    opacity: 0.7;
    position: absolute;
    top: 16px;
    left: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.text_copy_icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: 100%;
    opacity: 0.7;
    top: 16px;
    left: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.partner_link_copy:hover {
    opacity: 1;
}

@media(max-width: 768px) {
    .about_page_top {
        height: unset;
        background-image: unset;
        border: unset;
        display: none;
        display: block;
    }
}

.about_page_title {
    font-size: 28px;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 77px;
    text-shadow: 0 0 2px #142A37;
}

.about_page_search input {
    width: 100%;
    box-sizing: border-box;
    display: block;
    background: #eee;
    padding: 16px 14px;
    border: 2px solid #0e3145;
    border-radius: 4px;
    background-color: #12384d;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.03em;
    transition: all 0.3s;
}

.partner_page_top input {
    padding-left: 45px;
}

.about_page_search input:focus {
    border-color: #224a61;
}

.about_page_search {
    max-width: 670px;
    margin: auto;
    width: 100%;
    position: relative;
}

@media(max-width: 768px) {
    .about_page_search {
        max-width: 670px;
    }
}

.about_page_q_list {
    max-width: 798px;
    margin: auto;
}

.about_page_q_item {
    line-height: 150%;
    border-bottom: 1px solid #1E475F;
    transition: all 0.2s;
    padding: 0 14px;
}

@media(max-width: 768px) {
    .about_page_q_item {
        padding: 0 9px;
    }
}

.about_page_q_item:last-child {
    border: 0;
}

.about_page_q_title {
    font-size: 17px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0px;
    cursor: pointer;
    letter-spacing: 0.03em;
}

@media(max-width: 768px) {
    .about_page_q_title {
        font-size: 15px;
        padding: 12px 6px 12px 0;
    }
}

.about_page_q_title_text {
    font-weight: 500;
}

.about_page_q_title_arrow {
    width: 14px;
    height: 14px;
    background-size: 100%;
    background-repeat: no-repeat;
    transition: all 0.2s;
    min-width: 14px;
}

.about_page_q_answer {
    line-height: 150%;
    padding-bottom: 20px;
    display: none;
    font-weight: 100;
    font-size: 15px;
}

.about_page_q_item.active .about_page_q_title_arrow {
    transform: scale(-1);
}

.about_page_q_item.active .about_page_q_answer {
    display: block;
}

.about_page_q_item.active {
    background-color: #091C27;
}

@media(min-width: 1000px) {
    .about_page_q_item.active {
        transform: scale(1.02);
    }
}

/*/about_page*/
/*partners*/
.partner_page_buttons {
    display: flex;
    justify-content: space-around;
    padding: 20px 0 0 0;
}

.ref_child_pop .pop_form {
    width: 700px;
    padding-right: 20px;
    padding-left: 20px;
}

/*/partners*/
/*rating_page*/
.rating_page {
    padding: 5px;
}

.partner_rate_top {
    background-image: url('/assets/im/rate_stars.png');
    background-size: 445px;
    position: relative;
}

@media(max-width: 480px) {
    .partner_rate_top {
        /* display: none; */ background: transparent;
    }
}

.rating_page_insta {
    text-align: center;
    position: absolute;
    bottom: 21px;
    width: 100%;
}

.rating_page_insta_input {
    /* width: 100%; */
    box-sizing: border-box;
    /* display: block; */
    padding: 9px 11px;
    border: 2px solid #0e3145;
    border-radius: 4px;
    background-color: #12384d;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.03em;
    transition: all 0.3s;
}

.rating_page_insta button {
    font-size: 13px;
    padding: 11px 14px;
}

.rating_user_list {
    margin: auto;
    width: 650px;
}

@media(max-width: 768px) {
    .rating_user_list {
        width: unset;
        overflow: auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

.rating_user_item {
    height: 44px;
    position: relative;
}

.rating_user_item:first-child {
    background-color: #091C27;
    transform: scale(1.05);
    height: 64px;
}

@media(max-width: 768px) {
    .rating_user_item:first-child {
    transform: unset;
    }
}

.rating_user_item:nth-child(2) {
    background-color: #0c2432;
    transform: scale(1.03);
    height: 58px;
}

@media(max-width: 768px) {
    .rating_user_item:nth-child(2) {
    transform: unset;
    }
}

.rating_user_item:nth-child(3) {
    background-color: #0e2635;
    transform: scale(1.02);
}

@media(max-width: 768px) {
    .rating_user_item:nth-child(3) {
    transform: unset;
    }
}

.rating_user_num {
    font-size: 18px;
    /* width: 85px; */
    text-align: center;
    position: relative;
}

.rating_user_name {
    font-size: 16px;
    letter-spacing: 0.05em;
    /* font-weight: 500; */
}

.rating_user_rag_date {
    text-align: center;
    font-weight: 300;
}

@media(max-width: 768px) {
    .rating_user_rag_date {
        display: none;
    }
}

.rating_user_list th {
    text-align: center;
}

.rating_user_rate {
    text-align: center;
    font-weight: 300;
}

/*.rating_user_item_num_1 {
    background-color: #091C27;
    transform: scale(1.05);
    height: 64px;
}

.rating_user_item_num_2 {
    background-color: #0c2432;
    transform: scale(1.03);
    height: 58px;
}

.rating_user_item_num_3 {
    background-color: #0e2635;
    transform: scale(1.02);
}
*/
.rating_user_item_num_1 .rating_user_num {
    font-size: 24px;
    font-weight: bold;
}

.rating_user_list td {
    padding: 0 12px;
}

.rating_user_item_insta, .rating_user_item_youtube, .rating_user_item_vk, .rating_user_item_tg {
    width: 24px;
    height: 24px;
    /* background-color: #eee; */
    margin: 2px 11px;
    background-size: 100%;
    background-repeat: no-repeat;
    transition: 0.2s;
    display: block;
    position: absolute;
    left: -47px;
    top: 14px;
}

.rating_user_item_youtube {
  left: -82px;
}

.rating_user_item_vk {
  left: -117px;
}

.rating_user_item_tg {
  left: -152px;
}

/*rating_page*/


/*review*/
.review_video_item {
    padding: 12px;
    /* width: 50%; */
}

.review_video {
    border: 5px solid #2a5c7a;
    cursor: pointer;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    max-width: 320px;
    margin: auto;
    min-height: 170px;
}

.review_video:before {
    content: '';
    position: absolute;
    left: calc(50% - 27px);
    top: calc(50% - 24px);
    width: 65px;
    height: 46px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='100%25' version='1.1' viewBox='0 0 68 48' width='100%25'%3E%3Cpath class='ytp-large-play-button-bg' d='M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z' fill='%23212121' fill-opacity='0.8'%3E%3C/path%3E%3Cpath d='M 45,24 27,14 27,34' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    transition: all .2s
}

.review_video:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='100%25' version='1.1' viewBox='0 0 68 48' width='100%25'%3E%3Cpath class='ytp-large-play-button-bg' d='M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z' fill='%23FF0000' fill-opacity='0.8'%3E%3C/path%3E%3Cpath d='M 45,24 27,14 27,34' fill='%23fff'%3E%3C/path%3E%3C/svg%3E")
}

.review_video.disable:before {
    display: none;
}

.review_video.disable {
    cursor: default;
}

.review_video_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.review_video_item img {
    display: block;
    border: 0;
    max-width: 100%;
    width: 320px;
    height: 180px;
}

.review_page_top {
    background-image: url('/assets/im/review_top.png');
    background-size: 632px;
    height: 300px;
}

@media (max-width: 768px) {
    .review_page_top {
        height: unset;
        background-image: unset;
        border: unset;
        padding: 0;
    }
}

/*review*/