.page {
    display: none;
}

.page.active {
    display: block;
}


.button {
    padding: 8px 16px;
    color: #000000;
    border: none;
    cursor: pointer;
    margin-right: 50px !important;
}

.tabs-container {
    max-width: 1800px;
    margin: 0 auto;
}
/*  TABS BUTTONS */

.tab-list__item {
    margin-right: 20px;
}
.tab-list__item:last-of-type {
    margin-right: 0;
}

.highlight-on-hover {
    /*background-color: #f0f0f0;*/
    color: #FF6C2E;
    padding: 10px 20px;
    border: 1px solid #FF6C2E;
    cursor: pointer;
    font-size: 20px;
    border-radius: 7px;
    transition: background-color 0.3s ease;
}

.highlight-on-hover:hover {
    background-color: #FF6C2E;
    color: #FFFFFF;
}

.highlight-on-hover:focus {
    background-color: #ff6c2e;
    color: #FFFFFF;
    outline: none;
}

.highlight-on-hover:active {
    background-color: #CCC;
    color: #444;
}


/* END TABS BUTTONS */


/* TAB CONTENT */
.head-container {
    max-width: 500px;
    margin: 0 auto 50px auto;

}
.page-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.page-subtitle {
    font-size: 20px;
    font-weight: bold;

}
.tab-content-3 {
    width: 33.333%;
    max-width: 33.333%;
}

.tab-content-4 {
    width: 25%;
    max-width: 25%;
}
.tab-content-5 {
    width: 20%;
    max-width: 20%;
}


.tab-content__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.tab-content__item {
    max-width: 33.333%;
    flex-grow: 0;
    flex-wrap: wrap;
    padding: 0 15px;
    margin-right: 15px;
    margin-bottom: 15px;
}



.tab-content__block {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}
.tab-icon {
    margin-bottom: 15px;
}
.tab-content__text-wrapper {
    max-width: 350px;
}
.tab-content__title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    height: 40px;
}
.tab-content__description {
    font-size: 18px;
    font-weight: 400;
    color: #605A5A;
}
.tab-content__img{
    display: block;
    height: 200px;
    max-width: 250px;
    margin-bottom: 20px;
}

.tab-content__item-price {
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(0, 0, 0, 0.82);
    border-radius: 7px;
    padding: 0;
    margin-right: 80px;
    margin-bottom: 80px;
    position: relative;
    transition: all 0.5s ease;
    margin-left: auto;
    margin-right: auto;
}


.tab-content__item-price:hover {
    transform: scale(1.1);
    background-color: rgba(0, 0, 0, 0.73);
}
.tab-content__item-price:hover .pricing-feature__item {
    border-color: #FFFFFF;
    color: #FFFFFF;
}
.tab-content__item-price:hover .pricing-price {
    color: #FFFFFF;
}
.pricing-head__wrapper svg {
    padding-left: 5px;
    fill: #ff6e26;
}
.tab-content__block svg{
    fill: #ff6e26;
    stroke:#ff6e26;
}
.tab-content__block:hover .pricing-feature__list svg {
    stroke: #FFFFFF;
}
.tab-content__block:hover .pricing-feature__list svg path{
    fill: #FFFFFF;
}
.question-icon svg{
    fill: #007bff;
}
.tab-content__block:hover .question-icon svg{
    fill: #3e9afd;
}
.tab-content__item-price:hover polygon,.tab-content__item-price:hover line {
    stroke: #FFFFFF;
}
.seller__link svg path{
    fill: #ffffff;
    transition: all 0.2s ease;
}
.seller__link:hover svg path {
    fill: #000000;
}




.tab-content__item-price.popular {
    -webkit-box-shadow: 0px 0px 10px 3px rgba(255,109,46,1);
    -moz-box-shadow: 0px 0px 10px 3px rgba(255,109,46,1);
    box-shadow: 0px 0px 10px 3px rgba(255,109,46,1);
    transform: scale(1.1);
}
/* END TAB CONTENT */



.pricing-head__wrapper {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    background-color: #000000cf;
    /*border-bottom: 1px solid #FF6C2E;*/
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-head__title {
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
}


.pricing-feature__list {
    width: 100%;
    padding: 4px 0;
}


.pricing-feature__wrapper {
    display: flex;
    align-items: center;
    padding: 0 15px 10px 15px;
    justify-content: center;
}

.pricing-feature__item {
    margin-bottom: 15px;
    border-bottom: 1px solid #FF6C2E;
}
.pricing-feature__item:last-of-type {
    margin-bottom: 0;
}
.pricing-feature__item-icon{
    margin-right: 10px;
}
.pricing-feature__item-text {

    font-size: 18px;
    font-weight: bold;
}
.pricing-price {
    margin-top: 15px;
    font-size: 36px;
    font-weight: bold;
    /*text-transform: uppercase;*/
    color: rgba(0, 0, 0, 0.87);
    padding: 7.5px 15px;
}
.pricing-sign__up {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    background-color: #FF6C2E;
    font-weight: bold;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 25px;
}
@media (hover: none) {
    .tab-content__item-price:hover {
        background-color: transparent;
    }
    .tab-content__item-price:hover .pricing-feature__item {
        border-color: #FF6C2E;
        color: #000000;
    }
    .tab-content__item-price:hover .pricing-price {
        color: #000000;
    }
    .tab-content__item-price:hover svg {
        stroke: #000000;

    }
    .tab-content__item-price:hover svg path {
        fill: #000000;

    }
    .tab-content__item-price:hover polygon,.tab-content__item-price:hover line {
        stroke: #000000;
    }

}

/*@media screen and (max-width: 1720px) {*/
/*    .main-content {*/
/*        padding-top: 20px!important;*/
/*    }*/

/*    .main-content__block {*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*    }*/

/*}*/


@media screen and (max-width: 768px ){

    .tab-content__list {
        flex-direction: column;
        align-items: center;
    }
    .tab-content__item {
        margin-right: 0;
        margin-bottom: 20px;
    }



    .tab-content__block {
        padding: 0;
    }

    .tab-content__item-price {
        margin-bottom: 80px;
    }
}

.sign-in-btn, .sign-up-btn {
    display:flex;
    color: #ffffff;
    justify-content:center;
    align-items: center;
    margin-top: 30px;
    text-align: center;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.2s ease;
}
.sign-in-btn:hover, .sign-up-btn:hover{
    color:black
}


.animated-button{
    background-color: #F37012;
    background: linear-gradient(-45deg,#ff6e26,#ff6e26, #4bff00, #ff6e26,#ff6e26,#ff6e26);
    background-size: 400% 400% !important;
    animation-name:btn-transfusion;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    border-radius: 7px;
}

@keyframes btn-transfusion {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}

.container-info{
    max-width: 90%;
    text-align: center;
    justify-content: center;
    margin: auto;
    padding: 10px;
    font-size: 17px;
}


.container-tab {
    text-align: center;
}

.container-tab ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.container-tab ul li {
    flex: 1; /* Distribute the width evenly among li elements */
    padding: 10px;
    position: relative;
    border-bottom: 1px solid #ddd;
}

.container-tab ul li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%; /* Start from the center of the li element */
    transform: translateX(-50%); /* Center horizontally */
    width: 0;
    height: 2px;
    background-color: transparent;
    transition: width 0.2s ease, background-color 0.2s ease, height 0.2s ease;
}


.container-tab ul li:hover::after {
    width: 100%;
    background-color: #ff6e26;
    height: 3px;
}
.container-tab ul li.active::after {
    width: 100%;
    background-color: #ff6e26;
    height: 3px;
}

.tab-btn{
    font-size: 20px;
    font-weight: 500;
    width: 100%;
}

.container-tab .active {
    border-bottom: 1px solid #ff6e26;
}


@media (max-width: 767px) {
    .bg-image{
        background-image: none;
    }
    .tab-content__list{
        display: block;
    }
    .tab-content__item{
        max-width: 100%;
    }
    .container-tab ul {
        display: block;
    }
    .container-tab ul li {
        padding: 10px;
        position: relative;
        border: 0;
    }
    .tab-content__item-price.popular {
        -webkit-box-shadow: 0px 0px 10px 3px rgba(255,109,46,1);
        -moz-box-shadow: 0px 0px 10px 3px rgba(255,109,46,1);
        box-shadow: 0px 0px 10px 3px rgba(255,109,46,1);
        transform: scale(1);
    }
}
@media (max-width: 1360px) {
    .tab-content__item-price.popular {
        -webkit-box-shadow: 0px 0px 10px 3px rgba(255,109,46,1);
        -moz-box-shadow: 0px 0px 10px 3px rgba(255,109,46,1);
        box-shadow: 0px 0px 10px 3px rgba(255,109,46,1);
        transform: none;
    }
    .tab-content__item-price {
        margin-left: auto;
        margin-right: auto;
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    align-items: center;
    justify-content: center;
    top: 100px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    max-width: 600px;
    margin: auto;
}

.modal-content .modal-header{
    font-size: 20px;
    font-weight: 700;
    color: white;
    background: rgba(0, 0, 0, 0.82);;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding:10px;
    text-align: center;
}
.modal-content .modal-text{
    font-size: 16px;
    padding:10px;
}


.question-icon {
    cursor: pointer;
    margin: 10px;
}
