.cert-btn {
    width: 40px;
    height: 40px;
    position: absolute;
    background-color: #fff;
    top: calc(50% - 2px);
    cursor: pointer;
    z-index: 9;
    border: 1px solid #303137;
    color: #FC5F45;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 25px !important;
}
.swiper-certs {
    position: relative;
    overflow: hidden;
}
.cert-btn-prev {
    left: 0;
}
.cert-btn-next {
    right: 0;
}
.cert__image {
    height: 480px;
    cursor: pointer;
}
.cert__image img {
    width: 100%;
    height: 100%;
}
.cert__name {
    text-align: center;
    padding: 15px;
    font-weight: 500;
    color: #212224;
    font-family: HelveticaNeue;
}
.cert-title {
    text-align: center;
    color: #212224;
    font-family: HelveticaNeue;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 30px;
}

.cx-modal {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /* display: flex; */
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
}

.cx-modal.show {
    display: flex;
}

.modal-cx__container {
    width: 100%;
    max-width: 800px;
    background-color: white;
    border: 1px solid black;
    z-index: 3;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.modal-cx__title {
    font-size: 20px;
    margin: 0px;
    margin-bottom: 20px;
    color: #303137;
}

.specs__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.specs__item {
    display: flex;
    opacity: 0.5;
    transition: .3s;
    cursor: pointer;
    max-width: 300px;
    margin-bottom: 20px;
    align-items: center;
}

.specs__item.selected {
    opacity: 1;
}

.specs__image {
    margin-right: 14px;
    min-width: 34px;
    min-height: 34px;
    max-width: 34px;
    max-height: 34px;
}

.image--large {
    min-width: 50px;
    max-width: 50px;
    height: 100%;
}

.specs__image img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.specs__text {
    text-decoration: underline;
    color: #303137;
}

.c-selection {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    margin-top: 20px;
    color: #303137;
}

.c-selection__item {
    display: flex;
    align-items: center;
}

.c-selection__text {
    font-size: 18px;
    margin-right: 14px;
}

.c-selection__input {
    outline: none;
    border: 1px solid black;
    height: 40px;
    width: 70px;
    font-size: 18px;
    padding: 4px 8px;
    box-sizing: border-box;
}

.c-form {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.c-form__group {
    display: flex;
    flex-direction: column;
}

.c-form__slabel {
    font-size: 13Spx;
}

.c-form__input {
    height: 40px;
    border: 1px solid black;
    outline: none;
    padding: 10px 14px;
    box-sizing: border-box;
    margin-top: 4px;
}

.c-form__btn {
    background-color: #FC5F45;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border: none;
    outline: none;
    padding: 10px 14px;
    box-sizing: border-box;
    width: 300px;
    cursor: pointer;
    transition: .3s;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-open-cx-modal {
    font-size: 22px;
    background-color: #FC5F45;
    transition: .3s;
    color: #fff;
    border: none;
    outline: none;
    padding: 10px 16px;
    box-sizing: border-box;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-form__btn:hover, .btn-open-cx-modal:hover {
    background-color: #D8533B;
}

@media screen and (max-width: 768px) {
    .mobile-block-hidden {
        display: none;
    }
}