.hide {
    display: none !important;
}
/*tabs*/
#server_tabs{
    display: flex;
    gap: clamp(10px,1.3vw,50px);
    justify-content: center;
    margin-bottom:2rem;
    flex-wrap:wrap;
}
.g-tab{
    display: inline-block;
    text-align: center;
    border: 1px solid #777575;
    border-radius: 40px;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}
.g-tab.active {
    background: var(--secendary-color);
    border: none;
}


.my_slides_container {
    display: none !important;
    max-width:1355px;
    margin:0 auto;
}
.my_slides_container.active {
    display: flex !important;
    justify-content:space-evenly;
}

.swiper-wrapper {
    align-items: stretch;
}

.sliders {
    position: relative;
}

.swiper-slide {
    height: unset;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    top: unset;
    bottom: 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.cart {
    border-radius: 32px;
    overflow: hidden;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.head-cart,
.footer-cart {
    list-style: none;
    margin: 0;
    padding: 2rem 1rem;
    li {
        margin: 0;
    }
}

.footer-cart {
    flex: 1;
    display: flex;
    flex-wrap:wrap;
    justify-content:center;
}
.footer-cart li{
    width:100%;
}

.swiper-button-next,
.swiper-button-prev {
    font-family: cursive;
    width: 50px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #ffffff50;
    height: unset;
    font-size: 1.5rem;
}

/*Modal*/
.modal {
    display: none;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    z-index: 9999;
    position: fixed;
    left: 0;
    top: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
}

.sabt.button.open-modal{
    margin-bottom:3rem;
}

p.modal-title {
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    font-weight: 600;
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: min(90%, 600px);
    border-radius: 15px;
}

.modal-content label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal .modal-content input {
    background: #b5d7fc33;
    border: 1px solid #5cbafc1a;
    border-radius: 9px;
    line-height: 30px;
    width: min(80%, 420px);
    margin: 7px;
    height: 42px;
}

.modal .modal-content input.error {
    background: #ff00001c;
}

.modal .modal-content input:focus {
    background: #dbebfd73;
    border: 1px solid #5cbafc96;
    box-shadow: 0px 0px 4px #5cbafc;
}

.modal .modal-footer .submit-form, .slide .open-modal{
    margin: 0px;
    font-size: 14px;
}
#ajax-result {
    text-align: center;
    font-weight: 600;
    padding: 5px 3px;
    border-radius: 5px;
    font-size: 21px;
    line-height: 35px;
    margin-bottom: 15px;
}

#ajax-result.error {
    color: #b10000;
    background: rgb(255 0 0 / 13%);
}

#ajax-result.success {
    color: green;
    background: #0080001a;
}

p.modal-title {
    padding-bottom: 13px;
    border-bottom: 1px solid #ededed;
}

.modal-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.footer-cta {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}
.footer-cta button {
    background: var(--primary-color);
    color: #fff;
}
.arcaptcha > div {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.loader {
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid var(--primary-color);
    width: 25px;
    height: 25px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}



/*responsive*/
@media(max-width:768px){
    #server_tabs{
        flex-wrap:nowrap;
        overflow:auto;
        justify-content:start;
        padding:0 10px 5px;
        margin-bottom:1rem;
    }
}
