body {
    margin-top: 0 !important;
    background: #f7f7f7;
}

.pcm-auth-c {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcm-auth {
    background: #212932;
    padding: 20px;
    color: #fff;
    border-radius: 2px;
    width: 360px;
    max-width: 100%;
}

.pcm-auth__title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    text-align: center;
}

.pcm-auth__subinfo {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}

.pcm-auth__subinfo a {
    color: #fff;
}

.bx-no-touch .pcm-auth__subinfo a:hover {
    color: #fff;
    text-decoration: underline;
}

.pcm-auth__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.pcm-auth__logo-img {
    max-width: 100%;
    width: 200px;
    height: auto;
}

.pcm-auth__cols {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.pcm-auth__col {
    flex: 0 0 auto;
    width: 100%;
}

.pcm-auth__col_50 {
    width: calc((100%/2) - ((12px)*1/2));
}

.pcm-auth__col_33 {
    width: calc((100%/3) - ((12px)*2/3));
}

.pcm-reg-form__cols .pcm-auth__col_50 {
    width: calc((100%/2) - ((25px)*1/2));
}

.pcm-auth__sbm-btn {
    width: 100%;
}

@media (hover:hover) {
    .pcm-auth__sbm-btn:hover {
        opacity: 0.7;
    }
}

.pcm-auth__field-wrap {
    position: relative;
}

.pcm-auth__field {
    margin: 0;
    background: #fff;
    outline: none;
    font-size: 16px;
    padding: 0 10px;
    height: 40px;
    width: 100%;
    display: block;
    transition: all .3s;
    border: 1px solid transparent;
    color: #212932;
}

.pcm-auth__field.pcm-auth__field_border-black {
    border-color: #212932;
}

.pcm-auth__field-error-msg {
    color: red;
    font-size: 12px;
    line-height: normal;
    margin-top: 5px;
    display: none;
}

.pcm-auth__field-wrap.field-error ~ .pcm-auth__field-error-msg {
    display: block;
}

.pcm-auth__field-wrap.field-error .pcm-auth__field {
    border-color: red;
}

.pcm-header {
    background: #212932;
    color: #fff;
}

.pcm-header-c {
    display: flex;
    min-height: 70px;
    padding-top: 5px;
    padding-bottom: 5px;
    justify-content: space-between;
    align-items: center;
}

.pcm-header__logo-img {
    display: block;
    width: auto;
    height: 50px;
}

.pcm-header__info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 12px;
    line-height: normal;
    gap: 5px;
    font-weight: 500;
}

.pcm-header__info-item {
    text-align: right;
}

.pcm-header__info-item a {
    color: #fff;
}

@media (hover:hover) {
    .pcm-header__info-item a:hover {
        text-decoration: underline;
    }
}

.pcm-main-c {
    display: flex;
    gap: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.pcm-main-l {
    flex: 1;
    min-width: 0;
}

.pcm-main-r {
    width: 445px;
    flex: 0 0 auto;
}

.pcm-sidebar__banners {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pcm-sidebar__banner {
    display: flex;
}

.pcm-sidebar__banner-img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.pcm-main__banner {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #c5d4eb;
    color: #000;
    margin-bottom: 20px;
}

.pcm-main__banner-title {
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 24px;
    line-height: normal;
}

.pcm-main__banner-desc {
    padding-bottom: 30px;
    font-weight: bold;
    width: 100%;
    font-size: 16px;
    padding-top: 10px;
    border-top: 2px solid #CD2122;
}

.pcm-main__tab {
    display: none;
}

.pcm-main__tab.active {
    display: block;
}

@media (hover:hover) {
    .pcm-main__head-btn:hover {
        opacity: 0.7;
    }
}

.pcm-main__head-title {
    font-weight: bold;
    font-size: 16px;
    line-height: normal;
    margin-bottom: 20px;
}

.pcm-main__products-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 30px;
}

.pcm-main__products-item {
    flex: 0 0 auto;
    width: calc((100%/3) - ((10px)*2/3));
}

.pcm-main__products-item-badge {
    position: absolute;
    background: #E52421;
    top: 5px;
    right: 5px;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 12px;
    color: #fff;
    line-height: 12px;
}

.pcm-reg-form__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.pcm-reg-form__cols {
    max-width: 100%;
    width: 400px;
    gap: 25px;
}

.pcm-reg-form__field-date {
    width: 100%;
    cursor: pointer;
}

.pcm-reg-form__field-count {
    width: 90px;
}

.pcm-reg-form__field-title {
    line-height: normal;
    font-size: 16px;
    margin-bottom: 5px;
}

.pcm-reg-form__subinfo {
    font-size: 18px;
    line-height: normal;
}

.pcm-reg-form__subinfo b {
    font-size: 22px;
}

.n-custom-select {
    position: relative;
}

.n-custom-select.opened .n-custom-select__dropdown {
    display: block;
}

.n-custom-select.opened .n-custom-select__choosen:before {
    margin-top: 1px;
    transform: translateY(-50%) rotate(135deg);
}

.n-custom-select.selected .n-custom-select__choosen .n-custom-select__card-title {
    color: #212932;
}

.n-custom-select__choosen {
    height: 40px;
    background: #fff;
    border: 1px solid #212932;
    border-radius: 0;
}

.n-custom-select__field {
    position: absolute;
    width: 1px;
    height: 1px;
    top: 0;
    left: 0;
    opacity: 0;
}

.n-custom-select__choosen:before {
    position: absolute;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    right: 25px;
    border: 2px solid #212932;
    border-top: none;
    border-right: none;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    margin-top: -1px;
    transition: all 0.3s;
    cursor: pointer;
}

.n-custom-select__choosen .n-custom-select__card {
    padding-right: 50px;
    padding-left: 10px;
    min-height: 38px;
}

.n-custom-select__choosen .n-custom-select__card-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgb(33 41 50 / 50%);
    font-size: 16px;
}

.n-custom-select__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    padding: 10px;
    background: #fff;
    border: 1px solid #212932;
    border-top: none;
    border-radius: 0;
    z-index: 10;
    width: 100%;
}

.n-custom-select__dropdown-list {
    max-height: 145px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 12px 0;
}

.n-custom-select__dropdown-list::-webkit-scrollbar {
    width: 6px;
}

.n-custom-select__dropdown-list::-webkit-scrollbar-track {
    background: #F6F6F6;
    border: 1px solid #fff;
    background-clip: content-box;
}

.n-custom-select__dropdown-list::-webkit-scrollbar-thumb {
    background: #212932;
    border-radius: 8px;
}

@-moz-document url-prefix() {
    .n-custom-select__dropdown-list {
        scrollbar-color: #212932 #F6F6F6;
        scrollbar-width: thin;
    }
}

@media (hover: hover) {
    .n-custom-select__dropdown .n-custom-select__card:hover .n-custom-select__card-title {
        color: #CD2122;
    }
}

.n-custom-select__dropdown .n-custom-select__card:active .n-custom-select__card-title {
    color: #CD2122;
}

.n-custom-select__card {
    display: flex;
    align-items: center;
    padding: 0;
    gap: 10px;
    cursor: pointer;
}

.n-custom-select__card-title {
    color: #212932;
    font-size: 14px;
    line-height: normal;
    transition: all 0.3s;
}

.n-custom-select__dropdown-item.selected .n-custom-select__card-title {
    font-weight: bold;
}

.n-custom-select__dropdown-item_placeholder {
    display: none;
}

.field-error .n-custom-select__choosen {
    border-color: red;
}

@media (max-width: 1250px) {
    .pcm-main__products-item {
        width: calc((100%/2) - ((10px)*1/2));
    }
}

@media (max-width: 1000px) {
    .pcm-main-l {
        width: 100%;
        flex: 0 0 auto;
    }

    .pcm-main-c {
        flex-direction: column;
    }

    .pcm-main-r {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .pcm-header-c {
        min-height: 60px;
    }

    .pcm-header__logo-img {
        height: 30px;
    }

    .pcm-header__info {
        font-size: 10px;
        gap: 3px;
    }

    .pcm-main-c {
        padding-top: 10px;
    }

    .pcm-main__banner {
        min-height: initial;
    }

    .pcm-main__banner-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .pcm-main__banner-desc {
        padding-top: 20px;
        font-size: 14px;
        padding-bottom: 0;
    }

    .pcm-main__products-item {
        width: 100%;
    }

    .pcm-auth__col_50,
    .pcm-reg-form__cols .pcm-auth__col_50 {
        width: 100%;
    }
}