
.ap-competitions-interface .ap-wrapper {
    overflow: hidden;
}

.ap-main.competitions {
    background-color: unset;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: none;
}
a, a:link, a:visited {
    text-decoration: none;
}
/*<editor-fold desc="fonts">*/
@font-face {
    font-family: "Gotham Pro";
    src: local("Gotham Pro"), url("styles/fonts/gotham_pro/GothamPro.woff") format("woff"), url("styles/fonts/gotham_pro/GothamPro.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Gotham Pro";
    src: local("Gotham Pro"), url("styles/fonts/gotham_pro/GothamPro-Medium.woff") format("woff"), url("styles/fonts/gotham_pro/GothamPro-Medium.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Gotham Pro";
    src: local("Gotham Pro"), url("styles/fonts/gotham_pro/GothamPro-Bold.woff") format("woff"), url("styles/fonts/gotham_pro/GothamPro-Bold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: "Gotham Pro";
    src: local("Gotham Pro"), url("styles/fonts/gotham_pro/GothamPro-Black.woff") format("woff"), url("styles/fonts/gotham_pro/GothamPro-Black.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
}
/*</editor-fold>*/
/*<editor-fold desc="page-head">*/
.page-head {
    padding: 27.5px 0;
}
.page-head__container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.page-head__buttons {
    display: flex;
    gap: 10px;
}
@media screen and (min-width: 360px) {
    .page-head__container {
        max-width: 326px;
        padding: 0;
    }
}
@media screen and (min-width: 576px) {
    .page-head__container {
        max-width: 500px;
    }
}
@media screen and (min-width: 768px) {
    .page-head__container {
        max-width: 676px;
    }
}
@media screen and (min-width: 1024px) {
    .page-head__container {
        max-width: 792px;
    }
}
@media screen and (min-width: 1280px) {
    .page-head__container {
        max-width: 1200px;
    }
}

@media screen and (min-width: 1280px) {
    .page-head {
        padding: 32px 0 36px;
    }
    .page-head__container {
        padding-right: 15px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
/*</editor-fold>*/
/*<editor-fold desc="buttons">*/
.button-main {
    height: 41px;
    display: inline-flex;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid #E31E24;
    border-radius: 4px;
    font-family: "Gotham Pro", sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #E31E24;
    background-color: #FFFFFF;
    transition: all 0.3s;
    text-decoration: none;
}
.button-main:hover {
    background-color: #E31E24;
    color: #FFFFFF;
}
.button-main_red {
    background-color: #E31E24;
    color: #FFFFFF;
}
.button-main_red:hover {
    background-color: #FFFFFF;
    color: #E31E24;
}
.button-main_border_black {
    border: 2px solid #000000;
    color: #000000;
}
.button-main_border_black:hover {
    background-color: #000000;
    color: #FFFFFF;
}
/*</editor-fold>*/
/*<editor-fold desc="modal-votes">*/
.modal-votes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s linear 0.3s, opacity 0.3s ease-in;
}
.modal-votes.active {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}
.modal-votes__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(47, 48, 48, 0.8980392157);
}
.modal-votes__popups {
    width: 100%;
    height: 100%;
}
.modal-votes__popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    max-width: 100%;
    max-height: 90vh;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s linear 0.3s, opacity 0.3s ease-in;
}
.modal-votes__popup.active {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}
.modal-votes__popup_project {
    width: 95%;
}
.modal-votes__popup_vote-success {
    max-width: 364px;
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    z-index: 2;
}
.modal-votes__popup_protocol-success {
    max-width: 412px;
    background-color: #FFFFFF;
    padding: 48px;
    border-radius: 16px;
    z-index: 2;
}
/*</editor-fold>*/
/*<editor-fold desc="popup">*/
.popup__icon-container img {
    width: 100%;
    height: auto;
}
.popup {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.popup_project {
    height: 100%;
    display: block;
}
.popup__btn-close-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 19px;
}
.popup__btn-close {
    width: 24px;
    height: 24px;
    background-color: #FFFFFF;
    background: url("images/icons/icon_close_cross_white.svg") center/contain no-repeat;
}
.popup__inner {
    height: 100%;
    max-height: calc(90vh - 43px);
    overflow-y: auto;
}
.popup__icon-container {
    margin-bottom: 16px;
}
.popup__title {
    font-family: "Gotham Pro", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    text-align: center;
}
.popup__subtitle {
    font-family: "Gotham Pro", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 28px;
    text-align: center;
}
.popup__btn-container {
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 1280px) {
    .popup {
        position: relative;
    }
    .popup__btn-close-wrapper {
        justify-content: flex-end;
        align-self: flex-end;
        margin-bottom: 12px;
    }
    .popup__btn-close {
        width: 21px;
        height: 21px;
    }
}
/*</editor-fold>*/