/*Modal*/
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
}
#server_tabs{
    display: flex;
    gap: clamp(10px,1.3vw,50px);
    justify-content: center;
}
.sabt.button.open-modal{
    margin-bottom:3rem;
}
.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: #F18024;
    border: none;
}

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;
}

.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;
}
/*Slider*/
.plans .sliders {
    text-align: center;
    position: relative;
}
.plans .plan {
    background: var(--plan-background);
    border-radius: 3rem;
    overflow: hidden;
    height:auto
}
.plans .plan h3 {
    background: var(--plan-primary);
    padding: 3rem 2.5rem;
    box-shadow: 0 6px 0 0 var(--plan-shadow-color);
    position: relative;
    font-size: 1.7rem;
    font-weight:700;
}
.plans .plan h3:before {
    content: "";
    display: block;
    width: 20px;
    aspect-ratio: 1 / 1;
    background: var(--plan-primary);
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 50%;
    rotate: 45deg;
    box-shadow: 5px 5px 0 0 var(--plan-shadow-color);
}
.plans .plan:hover h3,
.plans .plan:hover h3:before,
.plans .plan:hover .button,.submit-form:hover {
    background: var(--plan-primary-hover);
    color: var(--plan-header-text-color-hover);
}
.plans .plan ul {
    list-style: none;
    margin-top: 3rem;
    padding: 0 0.5rem;
}
.plans .plan li,
.plans .plan p {
    text-align: center;
    margin: 1rem 0;
}
.plans .plan .kai-button {
    margin: 1.5rem 0 2.5rem;
}
.swiper-button-next,
.swiper-button-prev {
    border-radius: 50%;
    background: var(--secendary-color);
    width: 34px;
    height:34px;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 58%;
    color: #fff;
    text-align: center;
    align-content: center;
    translate: 0 -50%;
    cursor: pointer;
}
.swiper-button-next {
    left: 5px !important;
}
.swiper-button-prev {
    right: 5px !important;
}
.swiper-button-next:hover,
.swiper-button-prev:hover{
    background:var(--primary-color);
}

/*swiper*/
.swiper-wrapper{
    height:auto;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    display:none;
}

/*theme*/
.container{
    padding:4rem 0;
    height:auto ;
}
.my_slides_container {
    display: none !important;
}
.my_slides_container.active {
    display: block !important;
}
.footer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.hide {
    display: none !important;
}

.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;
}

#arc-checkbox {
    margin: 10px auto !important;
}
.modal-footer .cf-turnstile>div{
    text-align:center;
}
