:root {
    --light-blue: #5469ac;
    --blue: #3c4a77;
    --red: #e73e23;
    --yellow: #fdc83e;
    --light-yellow: #ffda7b;
    --orange: #f5841c;
    --light-grey: #f5f5f5;
    --grey: #e6e6e6;
    --new-grey: #6c757d;
    --dark-grey: #d5d5d5;
    --very-dark-grey: rgb(70, 70, 70);
    --br10: 10px;
    --br50: 100px;
}


body {
    font-family: Shabnam, sans-serif;

    height: 100%;
    font-size: 14px;
    /*background: url(../img/body-bg.png);*/
    background-repeat: repeat;
    text-align: right;
}
.box-shadow-base{
    box-shadow: 1px 1px 10px 5px rgba(0,0,0,0.12);
}
.bg-white {
    background-color: white;
}
.bg-blue {
    background-color: var(--blue);
}
.bg-light {
    background-color: var(--light-grey) !important;
}
.nav-menu{

    padding: 0;!important;


}
.navbar {
    /*height: 80px;*/
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .nav-link {
    transition: all 0.4s;
    font-size: 16px;
    font-weight: bold;
}
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
    color: var(--blue);
    transition: all 0.4s;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--yellow);
    transition: all 0.4s;
}
.swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiper-slide:nth-child(2n) {
    width: 40%;
}
.swiper-slide:nth-child(3n) {
    width: 20%;
}

.swiper-slide img {

    height: initial;
}
#header-swiper .swiper-button-prev:after,
#header-swiper .swiper-button-next:after {
    color: white;
}
.swiper-container#swiper-menu,
#swiper-menu .swiper-wrapper {
    border-radius: var(--br10);
}
#swiper-menu .swiper-button-next.swiper-button-disabled,
#swiper-menu .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}
#swiper-menu .swiper-button-prev:after,
#swiper-menu .swiper-button-next:after {
    font-size: 20px;
    font-weight: bold;
    color: var(--blue);
    background-color: var(--light-grey);
    padding: 0 9px;
    box-shadow: 0 0px 8px 2px rgba(0, 0, 0, 0.2);
}

#swiper-menu .swiper-slide {
    padding: 0.6rem 1.3rem;
    background-color: var(--blue);
    border-radius: 10px;
    color: var(--light-grey);
    font-size: 14px;
    font-weight: normal;
    width: auto !important;
}

.swiper-scrollbar-drag {
    background: var(--blue);
}

#swiper-menu .swiper-button-next:after {
    border-radius: 0 4px 4px 0;
}

#swiper-menu .swiper-button-prev:after {
    border-radius: 4px 0 0 4px;
}

#swiper-menu .swiper-button-prev {
left: 0;
}

#swiper-menu .swiper-button-next {
right: 0;
}
.light-yellow-text {
    color: var(--light-yellow);
}
.yellow-text {
    color: var(--yellow);
}

.red-text {
    color: var(--red);
}

.blue-text {

    color: #1b1e21 !important;
    /*color: var(--light-blue) !important;*/
}

.orange-text {
    color: var(--orange);
}
.green-text {
    color: rgb(39, 211, 116);
}
.card-num-input .col-25:not(:last-child) {
    margin-right: 0.2rem !important;
}
.btn {
    border-radius: var(--br10);
    font-size: 13px !important;
    transition: all 0.4s;
    height: 40px;
    width: 100%;
    padding: 0.2rem 0.5rem;
    cursor: pointer;
}

.blue-btn {
    background-color: var(--blue);
    color: var(--light-grey) !important;
    transition: all 0.4s;
}

.blue-btn:hover {
    background-color: var(--light-blue);
    color: var(--yellow) !important;
}
.yellow-btn {
    background-color: var(--yellow);
    color: var(--blue) !important;
    transition: all 0.4s;
}

.yellow-btn:hover {
    background-color: var(--light-yellow);
    color: var(--blue) !important;
}
.btn:focus {
    box-shadow: none;
}

.max-height-header {
    max-height: 500px;
}

.round-blue-arrow-btn {
    margin: auto;
    height: 50px;
    width: 120px;
    border-radius: 30px;
    background-color: var(--blue);
    box-shadow: 0px 0px 5px 1px rgba(131, 169, 255, 0.4);
    color: var(--blue);
    line-height: 50px;
    text-align: center;
    transition: all 0.3s;
}
.round-white-arrow-btn {
    margin: auto;
    height: 50px;
    width: 120px;
    border-radius: 30px;
    background-color: white;
    box-shadow: 0px 0px 5px 1px rgba(131, 169, 255, 0.4);
    color: white;
    line-height: 50px;
    text-align: center;
    transition: all 0.3s;
}
    .round-white-arrow-btn:hover {
        box-shadow: 0px 0px 8px 1px rgba(131, 169, 255, 0.6);
        cursor: pointer;
    }

    .round-white-arrow-btn::after {
        content: "";
        position: absolute;
        top: 10px;
        left: 0;
        right: 0;
        width: 20px;
        height: 20px;
        margin: auto;
        border: 2px solid var(--blue);
        border-top: none;
        border-left: none;
        z-index: 10;
        transform: rotate(45deg);
        transition: all 0.3s;
    }

.round-white-arrow-btn:hover::after {
    top: 14px;
}

    .round-white-arrow-btn::before {
        content: "";
        position: absolute;
        top: 9px;
        left: 0;
        right: 0;
        width: 14px;
        height: 14px;
        margin: auto;
        border: 2px solid var(--blue);
        border-top: none;
        border-left: none;
        z-index: 10;
        transform: rotate(45deg);
        transition: all 0.3s;
    }

.round-white-arrow-btn:hover::before {
    top: 12px;
}

.round-blue-arrow-btn:hover {
    box-shadow: 0px 0px 8px 1px rgba(131, 169, 255, 0.6);
    cursor: pointer;
}

.round-blue-arrow-btn::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 2px solid var(--yellow);
    border-top: none;
    border-left: none;
    z-index: 10;
    transform: rotate(45deg);
    transition: all 0.3s;
}

.round-blue-arrow-btn:hover::after {
    top: 14px;
}
.round-blue-arrow-btn::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    right: 0;
    width: 14px;
    height: 14px;
    margin: auto;
    border: 2px solid var(--yellow);
    border-top: none;
    border-left: none;
    z-index: 10;
    transform: rotate(45deg);
    transition: all 0.3s;
}
.round-blue-arrow-btn:hover::before {
    top: 12px;
}

.hr-text {
    line-height: 1em;
    position: relative;
    outline: 0;
    border: 0;
    color: #0dcaf0;;
    text-align: center;
    height: 1.5em;
    opacity: 0.1;
    font-size: 18px;
    font-weight: bold;
}
.hr-text:before {
    content: "";
    background: linear-gradient(to right, transparent, #818078, transparent);
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
}
.hr-text:after {
    content: attr(data-content);
    position: relative;
    display: inline-block;
    color: black;
    padding: 0 0.5em;
    line-height: 1.5em;
    color: var(--very-dark-grey);
    background-color: white;
}
.select2-container {
    width: 100px;
}

.select2-container .select2-selection--single,
.select2-container--default .select2-selection--multiple,
.select2-selection--focus {
    height: auto !important;
    outline: none;
    border-radius: 8px;
    border: 1px solid rgba(94, 126, 178, 0.3) !important;
}

.select2 {
    width: auto !important;
}

.select2:focus {
    outline: none;
    border-radius: 8px;
    border: 1px solid rgba(94, 126, 178, 0.8);
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    padding: 0.4rem 1rem;
    height: 40.8px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    top: 0.4rem;
    left: 0.5rem;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: rgba(94, 126, 178, 0.8) transparent transparent transparent;
}

.select2-container--default.select2-container--open
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: transparent transparent rgba(94, 126, 178, 0.8) transparent;
}

.box-shadow-top {
    box-shadow: 0 -1px 5px 0 rgba(0, 0, 0, 0.3);
}
.box-shadow-bottom {
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.3);
}
.input::placeholder {
    color: rgba(43, 74, 131, 0.5);
}

.input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(43, 74, 131, 0.5);
}

.input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgba(43, 74, 131, 0.5);
}

.input {
    border: 1px solid rgba(94, 126, 178, 0.3);
    transition: all 0.4s;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: #2b4a83 !important;
}

.input:focus {
    border: 1px solid rgba(94, 126, 178, 0.8);
    box-shadow: none;
    outline: none;
}

.solid-label {
    color: var(--blue);
    position: relative;
    padding-left: 20px;
}

.select2-dropdown {
    background-color: var(--light-grey);
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    box-shadow: 0px 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.select2-container--default
    .select2-results__option--highlighted[aria-selected] {
    background-color: var(--blue);
    color: var(--yellow);
}

.grey-text {
    color: var(--dark-grey);
}
.new-grey-text {
    color: var(--new-grey);
}
.cart-bg {
    background-color: white;
    height: auto;
    border-radius: var(--br10);
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
}

.square-img {
    position: relative;
    width: 100%;
}

.square-img:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.square-img-80 {
    position: relative;
    width: 100%;
}

.square-img-80:after {
    content: "";
    display: block;
    padding-bottom: 50%;
}
.square-img-50 {
    position: relative;
    width: 100%;
}

.square-img-50:after {
    content: "";
    display: block;
    padding-bottom: 80%;
}
.square-img-67 {
    position: relative;
    width: 100%;
    border-radius: var(--br10);
}

.square-img-67:after {
    content: "";
    display: block;
    padding-bottom: 67%;
    border-radius: var(--br10);
}

.square-img-67 .img-content,
.square-img-67 .img-content:hover {
    opacity: 1;
    border-radius: var(--br10);
}

.img-content {
    position: absolute;
    height: 100% !important;
    width: 100% !important;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    object-fit: cover;
    border-radius: var(--br10) var(--br10) 0 0;
    opacity: 1;
    transition: all 0.6s;
}
.img-content:hover {
    opacity: 0.5;
}

.img-content-footer {
    position: absolute;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    object-fit: cover;
    border-radius: var(--br10) var(--br10) 0 0;
    opacity: 1;
    transition: all 0.6s;
}

.percent {
    position: absolute;
    left: 0px;
    width: auto;
    font-size: 14px;
    padding: 0.1rem 0.6rem;
    background-color: var(--red);
    border-radius: var(--br10) 0 var(--br10) 0;
    color: var(--light-grey);
    top: 0px;
    border-bottom: 2px solid var(--light-grey);
    border-right: 2px solid var(--light-grey);
}
.percent::after {
    content: "%";
    font-size: 10px;
    color: var(--light-grey);
}
.special {
    position: absolute;
    right: 0px;
    width: auto;
    font-size: 14px;
    padding: 0.1rem 0.6rem;
    background-color: var(--blue);
    border-radius: 0 var(--br10) 0 var(--br10);
    color: var(--light-grey);
    top: 0px;
    border-bottom: 2px solid var(--light-grey);
    border-left: 2px solid var(--light-grey);
}
.special::after {
    content: "";
    font-size: 10px;
    color: var(--light-grey);
}

.img-location {
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    color: var(--blue);
    background-color: var(--light-grey);
    border-radius: 60px;
    font-size: 12px;
    padding: 0.2rem 0.5rem;
}
a,
a:hover {
    text-decoration: none;
    display: inline-block;
}

.cart-title {
    color: var(--very-dark-grey);
    position: relative;
    font-size: 14px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 80% !important;
    transition: all 0.4s;
}
.cart-title:hover {
    color: var(--yellow);
}

.price::after {
    content: "تومان";
    font-size: 12px;
    color: var(--dark-grey);
    margin-right: 5px;
}

.swiper-takhfifvizhe .swiper-button-next,
.swiper-takhfifvizhe .swiper-button-prev,
.swiper-pazirandegan .swiper-button-next,
.swiper-pazirandegan .swiper-button-prev,
.img-gallery .swiper-button-next,
.img-gallery .swiper-button-prev,
#cards .swiper-button-next,
#cards .swiper-button-prev {
    color: var(--blue);
    background-color: white;
    height: 30px;
    width: 30px;
    font-size: 22px;
    border-radius: 50px;
}
.swiper-takhfifvizhe .swiper-button-next:after,
.swiper-takhfifvizhe .swiper-button-prev:after,
.swiper-pazirandegan .swiper-button-next:after,
.swiper-pazirandegan .swiper-button-prev:after,
.img-gallery .swiper-button-next:after,
.img-gallery .swiper-button-prev:after,
#cards .swiper-button-next:after,
#cards .swiper-button-prev:after {
    font-size: 22px !important;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--blue);
}
.cart-btn {
    height: 32px !important;
    padding: 0.2rem 0.6rem;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0px;
}
.pazirande {
    position: absolute;
    left: 0px;
    width: auto;
    font-size: 14px;
    padding: 0.1rem 0.6rem;
    background-color: var(--very-dark-grey);
    border-radius: var(--br10) 0 var(--br10) 0;
    color: var(--light-grey);
    top: 0px;
    border-bottom: 2px solid var(--light-grey);
    border-right: 2px solid var(--light-grey);
}
.pazirande::after {
    content: "پذیرنده";
}

.free {
    position: absolute;
    left: 0px;
    width: auto;
    font-size: 14px;
    padding: 0.1rem 0.6rem;
    background-color: rgb(10, 160, 70);
    border-radius: var(--br10) 0 var(--br10) 0;
    color: var(--light-grey);
    top: 0px;
    border-bottom: 2px solid var(--light-grey);
    border-right: 2px solid var(--light-grey);
}

.all-br {
    border-radius: var(--br10);
}

.path-city {
    stroke: #fff;
}
.path-city {
    fill: var(--blue);
    transition: all 0.3s;
}
.path-city:hover {
    fill: var(--yellow);
}
.path-city-g1,
.path-city-g2,
.path-city-g3,
.path-city-g4 {
    fill: var(--blue);
}
.map-iran {
    width: 30vw;
    height: 32vw;
}
.map-div {
    width: 30vw;
    margin: auto;
}

.top-br {
    border: var(--br10) var(--br10) 0 0;
}
.font-size-12 {
    font-size: 12px !important;
}
.font-size-10 {
    font-size: 10px !important;
}
.font-size-14 {
    font-size: 14px !important;
}
.font-size-16 {
    font-size: 16px !important;
}
.font-size-18 {
    font-size: 18px !important;
}
.font-size-20 {
    font-size: 20px !important;
}
.font-size-22 {
    font-size: 22px !important;
}
.font-size-30 {
    font-size: 30px;
}
.font-size-40 {
    font-size: 40px;
}
.cart-bg-blue {
    background-color: var(--blue);
}
.white-text {
    color: white !important;
}
.ui-tooltip {
    font-family: Shabnam, sans-serif;
}

.footer {
    background-color: var(--grey);
    min-height: 50vh;
    box-shadow: 0 -1px 5px 0 rgba(0, 0, 0, 0.3);
}
.social-footer {
    height: 60px;
    width: 60px;
    border-radius: 100px;
    padding-top: 14px;
    text-align: center;
    font-size: 26px !important;
    background-color: var(--yellow);
    margin-top: -4.8rem;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
}
.social-footer:hover {
    background-color: var(--light-yellow);
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.4);
}
.d-blue-text {
    color: var(--blue) !important;
}
/* Tabs */
.tabs {
    width: 50%;
    background-color: var(--grey);
    border-radius: var(--br10);
    box-shadow: 0px 1px 8px 0 rgba(0, 0, 0, 0.3);
    margin: auto;
}

ul#tabs-nav {
    list-style: none;
    margin: 0;
    overflow: auto;
    padding: 0;
    transition: all 0.3s;
}
ul#tabs-nav li {
    float: left;
    font-weight: bold;
    padding: 1rem;
    width: 50%;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}
#tabs-nav li:last-child {
    border-radius: 0 var(--br10) 0 0;
}
#tabs-nav li:first-child {
    border-radius: 10px 10px 0px 0px;
}
ul#tabs-nav li:hover,
ul#tabs-nav li.active {
    background-color: var(--blue);
}

ul#tabs-nav li a {
    text-decoration: none;
    color: var(--blue);
}

ul#tabs-nav li.active a,
ul#tabs-nav li:hover a {
    text-decoration: none;
    color: #fff;
}
ul#tabs-nav li:hover {
    background-color: var(--light-blue);
}
.tab-content {
    padding: 1rem;
    background-color: var(--light-grey);
    border-radius: 0 0 var(--br10) var(--br10);
}
.log-content .solid-label {
    margin-right: 1.5rem;
}
.log-content .solid-label:before {
    content: "";
    padding: 3px;
    border: 2px solid;
    border-color: #ffda61;
    border-radius: 6px;
    font-size: 1px;
    display: inline-flex;
    transform: rotate(0deg);
    top: 6px;
    position: absolute;
    left: 5px;

}
.letter-space-2 {
    word-spacing: 10px;
}
.direction-rtl {
    direction: ltr;
}
.direction-ltr {
    direction: ltr;
}

.log-content .solid-label.no-before:before {
    padding: 0px;
    border: 0px solid;
}
.log-content .solid-label.no-before {
    margin-right: 0rem;
}

.special-link-login,
.special-link-signup {
    border-bottom: 1px dashed var(--light-blue);
}

input[type="checkbox"] + label {
    display: block;
    /*margin: 0.2em;*/
    cursor: pointer;
    /*padding: 0.2em;*/
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"] + label:before {
    content: "\2714";
    border: 1px solid rgba(94, 126, 178, 0.3);
    border-radius: 6px;
    display: inline-block;
    padding: 5px 3px 0px 3px;
    margin-left: 0.5rem;
    vertical-align: bottom;
    color: transparent;
    transition: 0.4s;
    font-size: 20px;
    line-height: 18px;
}

input[type="checkbox"] + label:active:before {
    transform: scale(0);
}

input[type="checkbox"]:checked + label:before {
    background-color: #5e7eb2;
    border-color: #5e7eb2;
    color: #fff;
}

input[type="checkbox"]:disabled + label:before {
    transform: scale(1);
    border-color: #aaa;
}

input[type="checkbox"]:checked:disabled + label:before {
    transform: scale(1);
    background-color: #bfb;
    border-color: #bfb;
}

.left-top {
    left: 0;
    top: 0;
}
.left-bottom {
    left: 0;
    bottom: 0;
}
.right-top {
    right: 0;
    top: 0;
}
.right-bottom {
    right: 0;
    bottom: 0;
}
.col-25:not(:last-child) {
    margin-right: 2rem !important;
}
.content-bg {
    text-align: center;
}
.clearfix {
    display: flex;
}
.text-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.pagination {
    padding-top: 10px;
    padding-bottom:10px;
}
.pagination,
.pagination * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.pagination a {
    display: inline-block;
    padding: 0 10px;
    cursor: pointer;
}
.pagination a.disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: not-allowed;
}
.pagination a.current {
    background: #f3f3f3;
}
.img-gallery .swiper-container {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--br10);
}
.img-gallery .swiper-slide {
    background-size: cover;
    background-position: center;
}
.img-gallery .gallery-top {
    height: 80%;
    width: 100%;
}
.img-gallery .gallery-thumbs {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0 0;
}
.img-gallery .gallery-thumbs .swiper-slide {
    height: 100%;
    opacity: 0.4;
}
.img-gallery .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.img-gallery .img-content {
    border-radius: var(--br10);
}

.recip-title {
    font-size: 1rem;
    text-align: justify;
    margin-right: 1.5rem;
    margin-left: 25px;

}
/*.percent-title {*/
/*    position: absolute !important;*/
/*    background-color: var(--red);*/
/*    left: 1rem;*/
/*    top: 0px;*/
/*    padding: 1.8rem 0.5rem 1rem;*/
/*    font-size: 18px;*/
/*    color: white;*/
/*    position: relative;*/
/*    border-radius: 0 0 var(--br50) var(--br50);*/
/*    transition: all 0.3s;*/
/*    cursor: pointer;*/
/*    z-index: 100;*/
/*}*/
/*.percent-title:hover {*/
/*    padding: 2.4rem 0.5rem 1rem;*/
/*}*/
/*.percent-title::before {*/
/*    content: "%";*/
/*}*/
.recip-title::before {
    content: "";
    position: absolute;

    top: 9px;
    border: 2px solid var(--yellow);
    background-color: var(--red);
    padding: 4px;

    transform: rotate(45deg)translateX(-14px)translateY(14px);


}
.cart-bg #map {
    height: 180px;
}
.result-map {
    width: 100%;
    height: 200px;
    border-radius: var(--br10);
}
.result-map iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--br10);
    border: none;
}
.line-height-30 {
    line-height: 30px;
}
.line-height-40 {
    line-height: 40px;
}
.title-lbl {
    font-weight: bold;
    color: var(--very-dark-grey);
    margin-left: 1.5rem;
}

.breadcrumb {
    background: transparent;
}
.breadcrumb-item.active {
    color: var(--dark-grey);
}
.breadcrumb-item + .breadcrumb-item::before {
    padding: 0 0.5rem;
    content: "prev";
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    font-variant: initial;
    color: var(--dark-grey);
    font-size: 10px;
}
.breadcrumb a {
    color: var(--light-yellow);
    transition: all 0.2s;
}
.breadcrumb a:hover {
    color: var(--orange);
}
@import url(https://fonts.googleapis.com/css?family=Lato:100);
.hr {
    width: 100%;
    height: 1px;
    display: block;
    position: relative;
    margin-bottom: 0em;
    padding: 1em 0;
}
.hr:after,
.hr:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 50%;
    border-radius: 10px;
    left: 0;
}
.hr:before {
    background: linear-gradient(
        90deg,
        white 0%,
        white 50%,
        transparent 50%,
        transparent 100%
    );
    background-size: 10px;
    background-position: center;
    z-index: 1;
}
.hr:after {
    transition: opacity 0.3s ease, -webkit-animation 0.3s ease;
    transition: opacity 0.3s ease, animation 0.3s ease;
    transition: opacity 0.3s ease, animation 0.3s ease,
        -webkit-animation 0.3s ease;
    background: linear-gradient(
        to right,
        #5469ac 5%,
        #8d64b1 15%,
        #c05ba5 25%,
        #e85588 35%,
        #fc5e60 45%,
        #fc634c 55%,
        #f2741b 65%,
        #f0681c 75%,
        #ed5b1e 85%,
        #e73e23 95%
    );
    background-size: 200%;
    background-position: 0%;
    -webkit-animation: bar 15s linear infinite;
    animation: bar 15s linear infinite;
}
@-webkit-keyframes bar {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 200%;
    }
}
@keyframes bar {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 200%;
    }
}
.hr.anim:before {
    background: linear-gradient(
        90deg,
        white 0%,
        white 5%,
        transparent 5%,
        transparent 10%,
        white 10%,
        white 15%,
        transparent 15%,
        transparent 20%,
        white 20%,
        white 25%,
        transparent 25%,
        transparent 30%,
        white 30%,
        white 35%,
        transparent 35%,
        transparent 40%,
        white 40%,
        white 45%,
        transparent 45%,
        transparent 50%,
        white 50%,
        white 55%,
        transparent 55%,
        transparent 60%,
        white 60%,
        white 65%,
        transparent 65%,
        transparent 70%,
        white 70%,
        white 75%,
        transparent 75%,
        transparent 80%,
        white 80%,
        white 85%,
        transparent 85%,
        transparent 90%,
        white 90%,
        white 95%,
        transparent 95%,
        transparent 100%
    );
    background-size: 150px;
    background-position: center;
    z-index: 1;
    -webkit-animation: bar 120s linear infinite;
    animation: bar 120s linear infinite;
}
.hr.anim:hover:before {
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
}
.hr.anim:hover:after {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.red-btn {
    background-color: var(--red);
}

.bg-art {
    background-color: #9b0000 !important;
    color: white !important;
}
.bg-fun {
    background-color: #e24d4d !important;
    color: white !important;
}
.bg-arayesh {
    background-color: #cc278a !important;
    color: white !important;
}
.bg-rest {
    background-color: #bc10bc !important;
    color: white !important;
}
.bg-teach {
    background-color: #8457ff !important;
    color: white !important;
}
.bg-health {
    background-color: #00acce !important;
    color: white !important;
}
.bg-rest {
    background-color: #bc10bc !important;
    color: white !important;
}
.bg-shop {
    background-color: #2db655 !important;
    color: white !important;
}

.user-icon {
    height: 38px;
    width: 38px;
    background-color: cornflowerblue;
    line-height: 40px;
    text-align: center;
    border-radius: 38px;
    background-color: var(--blue);
    color: var(--light-yellow) !important;
}

.card-num-show {
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    font-weight: bold;
    position: absolute;
    font-size:20px;
    direction: ltr;
    top: 40%;
}
.card-name {
    position: absolute;
    font-size: 1.2vw;
    top: 70%;
    right: 0;
    left: 0;
}
.card-logo {
    position: absolute;
    width: 40px !important;
    top: 1rem;
    right: 1rem;
}
.card-bank {
    position: absolute;
    top: calc(1rem + 10px);
    right: calc(1.5rem + 40px);
}
.edit-card {
    position: absolute;
    top: 1rem;
    left: calc(1.2rem + 18px);
    font-size: 12px;
    background-color: var(--blue);
    color: var(--light-grey);
    padding: 5px 6px 1px;
    line-height: 18px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s;
}
.edit-card:hover {
    background-color: var(--light-blue);
}
.delete-card {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 12px;
    background-color: var(--blue);
    color: var(--light-grey);
    padding: 5px 6px 1px;
    line-height: 18px;
    border-radius: 4px 0 0 4px;
    cursor: pointer;
    transition: all 0.3s;
}
.delete-card:hover {
    background-color: var(--light-blue);
}
.icon-text {
    width: 34px !important;
}
.card-add {
    position: absolute;
    top: 20%;
    right: 0;
    left: 0;
    text-align: center;
    color: var(--light-yellow);
    font-size: 28px;
}
#cards .swiper-button-next,
#cards .swiper-button-prev {
    top: 64% !important;
}
.card {
    position: relative;
    margin-bottom: 24px;
    background-color: transparent;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    box-shadow: none;
    border: none;
    width: 100%;
}

.step-progress {
    padding: 16px;
    background-color: transparent;
    margin: 0 auto;
}

.step-progress .step-slider {
    width: 100%;
    position: relative;
    margin: auto;
}

.step-progress .step-slider .step-slider-item {
    width: 100%;
    height: 4px;
    position: relative;
    float: right;
    background-color: var(--light-yellow);
}
.step-progress .step-slider:before {
    content: "سبد خرید";
    background-color: var(--blue);
    padding: 10px;
    top: -18px;
    color: var(--yellow);
    position: absolute;
    z-index: 3;
    border-radius: var(--br10);
}
.step-progress .step-slider .step-slider-item:after {
    content: "پایانی";
    padding: 10px;
    border-radius: var(--br10);
    color: var(--yellow);
    position: absolute;
    top: -18px;
    left: 0;
    background-color: #fafafa;
    border: 3px solid var(--light-yellow);
    z-index: 2;
    transition: all 0.3s ease-out 0.5s;
    -webkit-transition: all 0.3s ease-out 0.5s;
}

.step-progress .step-slider .step-slider-item:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 1px;
    background-color: var(--light-yellow);
    z-index: 1;
    -webkit-transition: all 0.5s ease-out;
}

.step-progress .step-slider .step-slider-item.active:before {
    width: 100%;
    background-color: var(--blue);
    height: 4px;
}

.step-progress .step-slider .step-slider-item.active:after {
    border-color: var(--blue);
    background-color: var(--blue);
}

.step-content {
    padding: 16px 0;
}

.step-content .step-content-foot {
    text-align: right;
}

.step-content .step-content-foot button {
    border: 0;
    padding: 8px 16px;
    font-size: 14px;
    outline: 0;
    width: auto;
}

.step-content .step-content-foot button:active {
    background-color: rgba(255, 255, 255, 0.2);
}

.step-content .step-content-foot button.out {
    display: none;
}

.step-content .step-content-foot button.disable {
    background-color: #eceff1;
}

.step-content .step-content-body {
    padding: 16px 0;
    text-align: center;
    font-size: 18px;
}

.step-content .step-content-body.out {
    display: none;
}

.w-85 {
    width: 85%;
}
.card-num-input {
    left: 7.5%;
    right: 7.5%;
    top: 40%;
}
.card-num-input input {
    font-size: 24px !important;
}

.card-add-input .card-logo {
    width: 72px !important;
}
.card-add-input .card-bank {
    position: absolute;
    top: calc(1rem + 20px);
    right: calc(1.5rem + 76px);
    font-size: 1.3rem !important;
}
.card-add-input .card-name {
    font-size: 1.3rem !important;
}

.inline-price {
    display: flex;
    font-size: 20px;
}

.inline-price .price::after {
    content: "تومان";
    font-size: 13px;
    color: var(--light-blue);
    margin-right: 5px;
}
.inline-price .price-takhfif::after {
    content: "تومان";
    font-size: 13px;
    color: var(--red);
    margin-right: 5px;
}
.line-h-14 {
    line-height: 34px;
}

.list-unstyled{
    padding-right: 0;
}
.list-unstyled li a{
    line-height: 30px;
    transition: all 0.3s;
}
.list-unstyled li a:hover{
    color: var(--orange) !important;
}

.bg-wawe-1{
    /*background-image: url(../img/Group\ 65.png);*/
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-wawe-2{
    /*background-image: url(../img/Group\ 66.png);*/
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-wawe-3{
    /*background-image: url(../img/Group\ 67.png);*/
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-wawe-4{
    /*background-image: url(../img/Group\ 72.png);*/
    background-size: cover;
    background-repeat: no-repeat;
}
@keyframes animatedBackground {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 0;
    }
}
.bg-wawe-5 {
    background-image: linear-gradient(to left bottom, #ffa987, #eb8d8b, #cd7790, #a76791, #7b5a8b, #654f83, #4d457a, #333b70, #2f2f6a, #2c2263, #2b145b, #2b0052);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
}


@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.square-img-team {
    position: relative;
    width: 100%;
}

.square-img-team:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.img-content-team {
    position: absolute;
    height: 100% !important;
    width: 100% !important;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    object-fit: cover;
    border-radius: 600px;
    opacity: 1;
    transition: all 0.6s;
}
textarea{
    resize: none;
}

.circle-i {
    height: 40px;
    width: 40px !important;
    text-align: center;
    padding: 0.6rem;
    color: white;
    border-radius: 30px;
    margin-bottom: -10px;
}
.footer-mob{
    display: none;
}

.block-tex-blog{
padding: 5px;
}

.image-blog{
width: 100%;
height: 100px;
    border-radius: 10px;


}
.title-blog{
    width: 100%;
    font-size: 20px;

}

.dec-blog{
    font-size: 15px;

}
.cal-blog{

    width: 20px;
    height: 20px;

}
.sidebar-blog{


}
.br-5{
    border-radius: 5px;
}
.br-10{
    border-radius: 10px;
}
.br-15{
    border-radius: 15px;
}
.br-20{
    border-radius: 20px;
}
.br-25{
    border-radius: 25px;
}
.search{
    background:none;
    border: 0;
}