@import '../fonts/fontiran.css';
@import '../fonts/css/all.min.css';


* {
    font-family: IRANSansXFaNum;
    outline: none;
    font-weight: 500;
    letter-spacing: -0.1px;
    line-height: 2em;
}

:root {
    --background: white;
    --text-primary: black;
    --text-secondary: royalblue;
    --accent: purple;
}

html {
    scroll-behavior: smooth;
}


/* Toggle A */

input:checked ~ .dot {
    transform: translateX(100%);
    background-color: #48bb78;
}


/* Toggle B */

input:checked ~ .dot {
    transform: translateX(100%);
    background-color: #48bb78;
}

.tabs-filter li a.active {
    color: var(--text-secondary);
    border-bottom: 3px solid var(--text-secondary);
}

.ti-cursor {
    margin-left: 8px;
}

.features-home {
    background: rgb(71, 62, 223);
    background: radial-gradient(circle, rgba(71, 62, 223, 1) 0%, rgba(136, 235, 255, 1) 100%);
}

.monitor-template {
    background: url('../img/pngwing.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
}

.contain-image {
    width: 93%;
    margin: auto;
    overflow: hidden;
    display: block;
    position: relative;
    padding-top: 17px;
    height: 302px;
}

.contain-site {
    -webkit-transition: background-position 5s ease-in-out;
    -moz-transition: background-position 5s ease-in-out;
    -ms-transition: background-position 5s ease-in-out;
    -o-transition: background-position 5s ease-in-out;
    transition: background-position 5s ease-in-out;
}

.contain-site:hover {
    background-position: 0 bottom;
}

a.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.border-buti {
    position: relative;
}

.border-buti::after {
    content: '';
    height: 3px;
    width: 120px;
    background-color: var(--text-secondary);
    position: absolute;
    right: 0;
    bottom: -12px;
}

.devices li {
    padding: 2px 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;

}

.devices .active {
    background-color: #435efd;
    color: white;
}

.devices li button {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.website {
    transition: .2s;
}

.progressbar {
    counter-reset: step;
}

.progressbar li {
    list-style: none;
    display: inline-block;
    width: 24.33%;
    position: relative;
    text-align: center;
    cursor: pointer;
}

.progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #ddd;
    border-radius: 100%;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    background-color: #fff;
    z-index: 99999;
    position: inherit;
}

.progressbar li:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    top: 15px;
    left: 50%;
    z-index: 0;
}

.progressbar li:first-child:after {
    content: none;
}

.progressbar li.active {
    color: green;
}

.progressbar li.active:before {
    border-color: green;
}

.progressbar li.active + li:after {
    background-color: green;
}


.filter-products .active {
    background-color: transparent !important;
    padding: 0 !important;
    color: #d9a93a !important
}

.card-template.is-loading .photo-template {
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    -webkit-animation: 1.5s linear infinite shine;
    animation: 1.5s linear infinite shine;
}


.card-template.is-loading .detail {
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    -webkit-animation: 1.5s linear infinite shine;
    animation: 1.5s linear infinite shine;
}

.card-template.is-loading .card-footer {
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    -webkit-animation: 1.5s linear infinite shine;
    animation: 1.5s linear infinite shine;
}

.card-template .photo-template {
    min-height: 250px;
}

.card-template .detail {
    min-height: 80px;
}

.card-template .card-footer {
    min-height: 40px;
}

@keyframes shine {
    to {
        background-position-x: -200%
    }
}

.w-logo {
    width: 230px;
}


@media (max-width: 800px) {

    .w-logo {
        width: 140px;
    }

    .plans .content .list {
        overflow: auto;
        height: 350px;
    }

    .menu-bar {
        position: fixed;
        border-left: 1px solid #eee;
        top: 62px;
        bottom: 0;
        right: 0;
        width: 250px;
        padding: 16px;
        background-color: white;
        z-index: 999;
        box-shadow: 8px 18px 20px 0px #bdbdbd;
    }

    .menu-child {
        position: relative !important;
        box-shadow: none !important;
        width: 100% !important;
        top: 0!important;
        margin-top: 10px;
        margin-right: 5px;
        border-bottom: 1px solid #eee;
        border-radius: 0 !important;
        border-top: 1px solid #eee;
        padding: 12px !important;
    }
    .menu-child li{

        margin:  10px 0;
    }

    .progressbar li{
        width: 22.33%;
    }
    .plans .content .list::-webkit-scrollbar {
        display: none; /* Safari and Chrome */
    }

    .menu-bar > ul > li {
        margin-bottom: 10px;

    }
    .monitor-template{
        height: 290px;
    }
    .contain-image{
        height: 218px;
    }

}
