/*
*  Remodal - v1.1.1
*  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
*  http://vodkabears.github.io/remodal/
*
*  Made by Ilya Makarov
*  Under MIT License
*/

/* ==========================================================================
Remodal's necessary styles
========================================================================== */

/* Hide scroll bar */



html.remodal-is-locked {
    overflow: hidden;
    
    -ms-touch-action: none;
    touch-action: none;
    }
    
    /* Anti FOUC */
    
    .remodal,
    [data-remodal-id] {
    display: none;
    }
    
    /* Necessary styles of the overlay */
    
    .remodal-overlay {
    position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;
    
    display: none;
    }
    
    /* Necessary styles of the wrapper */
    
    .remodal-wrapper {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    
    display: none;
    overflow: auto;
    
    text-align: center;
    
    -webkit-overflow-scrolling: touch;
    }
    
    .remodal-wrapper:after {
    display: inline-block;
    
    height: 100%;
    margin-left: -0.05em;
    
    content: "";
    }
    
    /* Fix iPad, iPhone glitches */
    
    .remodal-overlay,
    .remodal-wrapper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    }
    
    /* Necessary styles of the modal dialog */
    
    .remodal {
    position: relative;
    
    outline: none;
    
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    }
    
    .remodal-is-initialized {
    /* Disable Anti-FOUC */
    display: inline-block;
    }
    
    /*
    *  Remodal - v1.1.1
    *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
    *  http://vodkabears.github.io/remodal/
    *
    *  Made by Ilya Makarov
    *  Under MIT License
    */
    
    /* ==========================================================================
    Remodal's default mobile first theme
    ========================================================================== */
    
    /* Default theme styles for the background */
    
    .remodal-bg.remodal-is-opening,
    .remodal-bg.remodal-is-opened {
    -webkit-filter: blur(3px);
    filter: blur(3px);
    }
    
    /* Default theme styles of the overlay */
    
    .remodal-overlay {
    background: rgba(43, 46, 56, 0.9);
    }
    
    .remodal-overlay.remodal-is-opening,
    .remodal-overlay.remodal-is-closing {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    }
    
    .remodal-overlay.remodal-is-opening {
    -webkit-animation-name: remodal-overlay-opening-keyframes;
    animation-name: remodal-overlay-opening-keyframes;
    }
    
    .remodal-overlay.remodal-is-closing {
    -webkit-animation-name: remodal-overlay-closing-keyframes;
    animation-name: remodal-overlay-closing-keyframes;
    }
    
    /* Default theme styles of the wrapper */
    
    .remodal-wrapper {
    padding: 10px 10px 0;
    }
    
    /* Default theme styles of the modal dialog */
    
    .remodal {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 10px;
    padding: 35px;
    
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    
    color: #2b2e38;
    background: #fff;
    }
    
    .remodal.remodal-is-opening,
    .remodal.remodal-is-closing {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    }
    
    .remodal.remodal-is-opening {
    -webkit-animation-name: remodal-opening-keyframes;
    animation-name: remodal-opening-keyframes;
    }
    
    .remodal.remodal-is-closing {
    -webkit-animation-name: remodal-closing-keyframes;
    animation-name: remodal-closing-keyframes;
    }
    
    /* Vertical align of the modal dialog */
    
    .remodal,
    .remodal-wrapper:after {
    vertical-align: middle;
    }
    
    /* Close button */
    
    .remodal-close {
    position: absolute;
    top: 0;
    left: 0;
    
    display: block;
    overflow: visible;
    
    width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;
    
    cursor: pointer;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    text-decoration: none;
    
    color: #95979c;
    border: 0;
    outline: 0;
    background: transparent;
    }
    
    .remodal-close:hover,
    .remodal-close:focus {
    color: #2b2e38;
    }
    
    .remodal-close:before {
    font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
    font-size: 25px;
    line-height: 35px;
    
    position: absolute;
    top: 0;
    left: 0;
    
    display: block;
    
    width: 35px;
    
    content: "\00d7";
    text-align: center;
    }
    
    /* Dialog buttons */
    
    .remodal-confirm,
    .remodal-cancel {
    font: inherit;
    
    display: inline-block;
    overflow: visible;
    
    min-width: 110px;
    margin: 0;
    padding: 12px 0;
    
    cursor: pointer;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    
    border: 0;
    outline: 0;
    }
    
    .remodal-confirm {
    color: #fff;
    background: #81c784;
    }
    
    .remodal-confirm:hover,
    .remodal-confirm:focus {
    background: #66bb6a;
    }
    
    .remodal-cancel {
    color: #fff;
    background: #e57373;
    }
    
    .remodal-cancel:hover,
    .remodal-cancel:focus {
    background: #ef5350;
    }
    
    /* Remove inner padding and border in Firefox 4+ for the button tag. */
    
    .remodal-confirm::-moz-focus-inner,
    .remodal-cancel::-moz-focus-inner,
    .remodal-close::-moz-focus-inner {
    padding: 0;
    
    border: 0;
    }
    
    /* Keyframes
    ========================================================================== */
    
    @-webkit-keyframes remodal-opening-keyframes {
    from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    
    opacity: 0;
    }
    to {
    -webkit-transform: none;
    transform: none;
    
    opacity: 1;
    
    -webkit-filter: blur(0);
    filter: blur(0);
    }
    }
    
    @keyframes remodal-opening-keyframes {
    from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    
    opacity: 0;
    }
    to {
    -webkit-transform: none;
    transform: none;
    
    opacity: 1;
    
    -webkit-filter: blur(0);
    filter: blur(0);
    }
    }
    
    @-webkit-keyframes remodal-closing-keyframes {
    from {
    -webkit-transform: scale(1);
    transform: scale(1);
    
    opacity: 1;
    }
    to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    
    opacity: 0;
    
    -webkit-filter: blur(0);
    filter: blur(0);
    }
    }
    
    @keyframes remodal-closing-keyframes {
    from {
    -webkit-transform: scale(1);
    transform: scale(1);
    
    opacity: 1;
    }
    to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    
    opacity: 0;
    
    -webkit-filter: blur(0);
    filter: blur(0);
    }
    }
    
    @-webkit-keyframes remodal-overlay-opening-keyframes {
    from {
    opacity: 0;
    }
    to {
    opacity: 1;
    }
    }
    
    @keyframes remodal-overlay-opening-keyframes {
    from {
    opacity: 0;
    }
    to {
    opacity: 1;
    }
    }
    
    @-webkit-keyframes remodal-overlay-closing-keyframes {
    from {
    opacity: 1;
    }
    to {
    opacity: 0;
    }
    }
    
    @keyframes remodal-overlay-closing-keyframes {
    from {
    opacity: 1;
    }
    to {
    opacity: 0;
    }
    }
    
    /* Media queries
    ========================================================================== */
    
    @media only screen and (min-width: 641px) {
    .remodal {
    max-width: 700px;
    }
    }
    
    /* IE8
    ========================================================================== */
    
    .lt-ie9 .remodal-overlay {
    background: #2b2e38;
    }
    
    .lt-ie9 .remodal {
    width: 700px;
    }
    
    /**
    * Owl Carousel v2.3.4
    * Copyright 2013-2018 David Deutsch
    * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
    */
    /*
    *  Owl Carousel - Core
    */
    .owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1; }
    .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
    .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
    .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
    .owl-carousel .owl-wrapper,
    .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
    .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
    .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
    .owl-carousel .owl-nav.disabled,
    .owl-carousel .owl-dots.disabled {
     }
    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next,
    .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next,
    .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
    .owl-carousel.owl-loaded {
    display: block; }
    .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
    .owl-carousel.owl-hidden {
    opacity: 0; }
    .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
    .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
    .owl-carousel.owl-rtl {
    direction: rtl; }
    .owl-carousel.owl-rtl .owl-item {
    float: right; }
    
    /* No Js */
    .no-js .owl-carousel {
    display: block; }
    
    /*
    *  Owl Carousel - Animate Plugin
    */
    .owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both; }
    
    .owl-carousel .owl-animated-in {
    z-index: 0; }
    
    .owl-carousel .owl-animated-out {
    z-index: 1; }
    
    .owl-carousel .fadeOut {
    animation-name: fadeOut; }
    
    @keyframes fadeOut {
    0% {
    opacity: 1; }
    100% {
    opacity: 0; } }
    
    /*
    * 	Owl Carousel - Auto Height Plugin
    */
    .owl-height {
    transition: height 500ms ease-in-out; }
    
    /*
    * 	Owl Carousel - Lazy Load Plugin
    */
    .owl-carousel .owl-item {
    /**
    This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
    calculation of the height of the owl-item that breaks page layouts
    */ }
    .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
    .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
    .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }
    
    /*
    * 	Owl Carousel - Video Plugin
    */
    .owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000; }
    
    .owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(../images/owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease; }
    
    .owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3); }
    
    .owl-carousel .owl-video-playing .owl-video-tn,
    .owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none; }
    
    .owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease; }
    
    .owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%; }
    
    @charset "UTF-8";/*!
    * animate.css - https://animate.style/
    * Version - 4.1.1
    * Licensed under the MIT license - http://opensource.org/licenses/MIT
    *
    * Copyright (c) 2020 Animate.css
    */
    :root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
    }
    .animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    }
    .animate__animated.animate__infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    }
    .animate__animated.animate__repeat-1 {
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: var(--animate-repeat);
    animation-iteration-count: var(--animate-repeat);
    }
    .animate__animated.animate__repeat-2 {
    -webkit-animation-iteration-count: calc(1 * 2);
    animation-iteration-count: calc(1 * 2);
    -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
    animation-iteration-count: calc(var(--animate-repeat) * 2);
    }
    .animate__animated.animate__repeat-3 {
    -webkit-animation-iteration-count: calc(1 * 3);
    animation-iteration-count: calc(1 * 3);
    -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
    animation-iteration-count: calc(var(--animate-repeat) * 3);
    }
    .animate__animated.animate__delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: var(--animate-delay);
    animation-delay: var(--animate-delay);
    }
    .animate__animated.animate__delay-2s {
    -webkit-animation-delay: calc(1s * 2);
    animation-delay: calc(1s * 2);
    -webkit-animation-delay: calc(var(--animate-delay) * 2);
    animation-delay: calc(var(--animate-delay) * 2);
    }
    .animate__animated.animate__delay-3s {
    -webkit-animation-delay: calc(1s * 3);
    animation-delay: calc(1s * 3);
    -webkit-animation-delay: calc(var(--animate-delay) * 3);
    animation-delay: calc(var(--animate-delay) * 3);
    }
    .animate__animated.animate__delay-4s {
    -webkit-animation-delay: calc(1s * 4);
    animation-delay: calc(1s * 4);
    -webkit-animation-delay: calc(var(--animate-delay) * 4);
    animation-delay: calc(var(--animate-delay) * 4);
    }
    .animate__animated.animate__delay-5s {
    -webkit-animation-delay: calc(1s * 5);
    animation-delay: calc(1s * 5);
    -webkit-animation-delay: calc(var(--animate-delay) * 5);
    animation-delay: calc(var(--animate-delay) * 5);
    }
    .animate__animated.animate__faster {
    -webkit-animation-duration: calc(1s / 2);
    animation-duration: calc(1s / 2);
    -webkit-animation-duration: calc(var(--animate-duration) / 2);
    animation-duration: calc(var(--animate-duration) / 2);
    }
    .animate__animated.animate__fast {
    -webkit-animation-duration: calc(1s * 0.8);
    animation-duration: calc(1s * 0.8);
    -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
    animation-duration: calc(var(--animate-duration) * 0.8);
    }
    .animate__animated.animate__slow {
    -webkit-animation-duration: calc(1s * 2);
    animation-duration: calc(1s * 2);
    -webkit-animation-duration: calc(var(--animate-duration) * 2);
    animation-duration: calc(var(--animate-duration) * 2);
    }
    .animate__animated.animate__slower {
    -webkit-animation-duration: calc(1s * 3);
    animation-duration: calc(1s * 3);
    -webkit-animation-duration: calc(var(--animate-duration) * 3);
    animation-duration: calc(var(--animate-duration) * 3);
    }
    @media print, (prefers-reduced-motion: reduce) {
    .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    }
    
    .animate__animated[class*='Out'] {
    opacity: 0;
    }
    }
    /* Attention seekers  */
    @-webkit-keyframes bounce {
    from,
    20%,
    53%,
    to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    
    40%,
    43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
    }
    
    70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
    }
    
    80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
    }
    
    90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
    }
    @keyframes bounce {
    from,
    20%,
    53%,
    to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    
    40%,
    43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
    }
    
    70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
    }
    
    80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
    }
    
    90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
    }
    .animate__bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    }
    @-webkit-keyframes flash {
    from,
    50%,
    to {
    opacity: 1;
    }
    
    25%,
    75% {
    opacity: 0;
    }
    }
    @keyframes flash {
    from,
    50%,
    to {
    opacity: 1;
    }
    
    25%,
    75% {
    opacity: 0;
    }
    }
    .animate__flash {
    -webkit-animation-name: flash;
    animation-name: flash;
    }
    /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
    @-webkit-keyframes pulse {
    from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    
    50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
    }
    
    to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    }
    @keyframes pulse {
    from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    
    50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
    }
    
    to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    }
    .animate__pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    }
    @-webkit-keyframes rubberBand {
    from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    
    30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
    }
    
    40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
    }
    
    50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
    }
    
    65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
    }
    
    75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
    }
    
    to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    }
    @keyframes rubberBand {
    from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    
    30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
    }
    
    40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
    }
    
    50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
    }
    
    65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
    }
    
    75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
    }
    
    to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    }
    .animate__rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
    }
    @-webkit-keyframes shakeX {
    from,
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    
    10%,
    30%,
    50%,
    70%,
    90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
    }
    
    20%,
    40%,
    60%,
    80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
    }
    }
    @keyframes shakeX {
    from,
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    
    10%,
    30%,
    50%,
    70%,
    90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
    }
    
    20%,
    40%,
    60%,
    80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
    }
    }
    .animate__shakeX {
    -webkit-animation-name: shakeX;
    animation-name: shakeX;
    }
    @-webkit-keyframes shakeY {
    from,
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    
    10%,
    30%,
    50%,
    70%,
    90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
    }
    
    20%,
    40%,
    60%,
    80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
    }
    }
    @keyframes shakeY {
    from,
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    
    10%,
    30%,
    50%,
    70%,
    90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
    }
    
    20%,
    40%,
    60%,
    80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
    }
    }
    .animate__shakeY {
    -webkit-animation-name: shakeY;
    animation-name: shakeY;
    }
    @-webkit-keyframes headShake {
    0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    }
    
    6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
    }
    
    18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
    }
    
    31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
    }
    
    43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
    }
    
    50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    }
    }
    @keyframes headShake {
    0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    }
    
    6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
    }
    
    18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
    }
    
    31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
    }
    
    43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
    }
    
    50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    }
    }
    .animate__headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake;
    }
    @-webkit-keyframes swing {
    20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
    }
    
    40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
    }
    
    60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
    }
    
    80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
    }
    
    to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    }
    }
    @keyframes swing {
    20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
    }
    
    40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
    }
    
    60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
    }
    
    80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
    }
    
    to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    }
    }
    .animate__swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
    }
    @-webkit-keyframes tada {
    from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    
    10%,
    20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }
    
    30%,
    50%,
    70%,
    90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    
    40%,
    60%,
    80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    
    to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    }
    @keyframes tada {
    from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    
    10%,
    20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }
    
    30%,
    50%,
    70%,
    90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    
    40%,
    60%,
    80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    
    to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    }
    .animate__tada {
    -webkit-animation-name: tada;
    animation-name: tada;
    }
    /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
    @-webkit-keyframes wobble {
    from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    
    15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    
    30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    
    45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    
    60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    
    75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes wobble {
    from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    
    15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    
    30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    
    45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    
    60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    
    75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
    }
    @-webkit-keyframes jello {
    from,
    11.1%,
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    
    22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    
    33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
    }
    
    44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    
    55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    
    66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    
    77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    
    88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
    }
    @keyframes jello {
    from,
    11.1%,
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    
    22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    
    33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
    }
    
    44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    
    55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    
    66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    
    77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    
    88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
    }
    .animate__jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center;
    }
    @-webkit-keyframes heartBeat {
    0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    }
    
    14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    }
    
    28% {
    -webkit-transform: scale(1);
    transform: scale(1);
    }
    
    42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    }
    
    70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    }
    }
    @keyframes heartBeat {
    0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    }
    
    14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    }
    
    28% {
    -webkit-transform: scale(1);
    transform: scale(1);
    }
    
    42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    }
    
    70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    }
    }
    .animate__heartBeat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: calc(1s * 1.3);
    animation-duration: calc(1s * 1.3);
    -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
    animation-duration: calc(var(--animate-duration) * 1.3);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    }
    /* Back entrances */
    @-webkit-keyframes backInDown {
    0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
    }
    
    80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
    }
    
    100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    }
    }
    @keyframes backInDown {
    0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
    }
    
    80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
    }
    
    100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    }
    }
    .animate__backInDown {
    -webkit-animation-name: backInDown;
    animation-name: backInDown;
    }
    @-webkit-keyframes backInLeft {
    0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
    }
    
    80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
    }
    
    100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    }
    }
    @keyframes backInLeft {
    0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
    }
    
    80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
    }
    
    100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    }
    }
    .animate__backInLeft {
    -webkit-animation-name: backInLeft;
    animation-name: backInLeft;
    }
    @-webkit-keyframes backInRight {
    0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
    }
    
    80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
    }
    
    100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    }
    }
    @keyframes backInRight {
    0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
    }
    
    80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
    }
    
    100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    }
    }
    .animate__backInRight {
    -webkit-animation-name: backInRight;
    animation-name: backInRight;
    }
    @-webkit-keyframes backInUp {
    0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
    }
    
    80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
    }
    
    100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    }
    }
    @keyframes backInUp {
    0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
    }
    
    80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
    }
    
    100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    }
    }
    .animate__backInUp {
    -webkit-animation-name: backInUp;
    animation-name: backInUp;
    }
    /* Back exits */
    @-webkit-keyframes backOutDown {
    0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    }
    
    20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
    }
    
    100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
    }
    }
    @keyframes backOutDown {
    0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    }
    
    20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
    }
    
    100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
    }
    }
    .animate__backOutDown {
    -webkit-animation-name: backOutDown;
    animation-name: backOutDown;
    }
    @-webkit-keyframes backOutLeft {
    0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    }
    
    20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
    }
    
    100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
    }
    }
    @keyframes backOutLeft {
    0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    }
    
    20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
    }
    
    100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
    }
    }
    .animate__backOutLeft {
    -webkit-animation-name: backOutLeft;
    animation-name: backOutLeft;
    }
    @-webkit-keyframes backOutRight {
    0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    }
    
    20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
    }
    
    100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
    }
    }
    @keyframes backOutRight {
    0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    }
    
    20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
    }
    
    100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
    }
    }
    .animate__backOutRight {
    -webkit-animation-name: backOutRight;
    animation-name: backOutRight;
    }
    @-webkit-keyframes backOutUp {
    0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    }
    
    20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
    }
    
    100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
    }
    }
    @keyframes backOutUp {
    0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    }
    
    20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
    }
    
    100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
    }
    }
    .animate__backOutUp {
    -webkit-animation-name: backOutUp;
    animation-name: backOutUp;
    }
    /* Bouncing entrances  */
    @-webkit-keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    
    0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
    }
    
    20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    }
    
    40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
    }
    
    60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
    }
    
    80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
    }
    
    to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    }
    @keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    
    0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
    }
    
    20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    }
    
    40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
    }
    
    60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
    }
    
    80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
    }
    
    to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    }
    }
    .animate__bounceIn {
    -webkit-animation-duration: calc(1s * 0.75);
    animation-duration: calc(1s * 0.75);
    -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
    animation-duration: calc(var(--animate-duration) * 0.75);
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
    }
    @-webkit-keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    
    0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
    }
    
    60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
    }
    
    75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
    }
    
    90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    
    0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
    }
    
    60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
    }
    
    75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
    }
    
    90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
    }
    @-webkit-keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    
    0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
    }
    
    60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
    }
    
    75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
    }
    
    90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    
    0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
    }
    
    60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
    }
    
    75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
    }
    
    90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
    }
    @-webkit-keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    
    from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
    }
    
    60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
    }
    
    75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
    }
    
    90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    
    from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
    }
    
    60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
    }
    
    75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
    }
    
    90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
    }
    @-webkit-keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    
    from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
    }
    
    60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
    }
    
    75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
    }
    
    90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    
    from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
    }
    
    60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
    }
    
    75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
    }
    
    90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
    }
    /* Bouncing exits  */
    @-webkit-keyframes bounceOut {
    20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
    }
    
    50%,
    55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    }
    
    to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
    }
    }
    @keyframes bounceOut {
    20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
    }
    
    50%,
    55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    }
    
    to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
    }
    }
    .animate__bounceOut {
    -webkit-animation-duration: calc(1s * 0.75);
    animation-duration: calc(1s * 0.75);
    -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
    animation-duration: calc(var(--animate-duration) * 0.75);
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
    }
    @-webkit-keyframes bounceOutDown {
    20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
    }
    
    40%,
    45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
    }
    }
    @keyframes bounceOutDown {
    20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
    }
    
    40%,
    45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
    }
    }
    .animate__bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
    }
    @-webkit-keyframes bounceOutLeft {
    20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
    }
    }
    @keyframes bounceOutLeft {
    20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
    }
    }
    .animate__bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
    }
    @-webkit-keyframes bounceOutRight {
    20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
    }
    }
    @keyframes bounceOutRight {
    20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
    }
    }
    .animate__bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
    }
    @-webkit-keyframes bounceOutUp {
    20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
    }
    
    40%,
    45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
    }
    }
    @keyframes bounceOutUp {
    20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
    }
    
    40%,
    45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
    }
    }
    .animate__bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
    }
    /* Fading entrances  */
    @-webkit-keyframes fadeIn {
    from {
    opacity: 0;
    }
    
    to {
    opacity: 1;
    }
    }
    @keyframes fadeIn {
    from {
    opacity: 0;
    }
    
    to {
    opacity: 1;
    }
    }
    .animate__fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    }
    @-webkit-keyframes fadeInDown {
    from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    }
    
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes fadeInDown {
    from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    }
    
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    }
    @-webkit-keyframes fadeInDownBig {
    from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
    }
    
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes fadeInDownBig {
    from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
    }
    
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
    }
    @-webkit-keyframes fadeInLeft {
    from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    }
    
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes fadeInLeft {
    from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    }
    
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    }
    @-webkit-keyframes fadeInLeftBig {
    from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
    }
    
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes fadeInLeftBig {
    from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
    }
    
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
    }
    @-webkit-keyframes fadeInRight {
    from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    }
    
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes fadeInRight {
    from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    }
    
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    }
    @-webkit-keyframes fadeInRightBig {
    from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
    }
    
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes fadeInRightBig {
    from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
    }
    
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
    }
    @-webkit-keyframes fadeInUp {
    from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    }
    
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes fadeInUp {
    from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    }
    
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    }
    @-webkit-keyframes fadeInUpBig {
    from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
    }
    
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes fadeInUpBig {
    from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
    }
    
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
    }
    @-webkit-keyframes fadeInTopLeft {
    from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
    }
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes fadeInTopLeft {
    from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
    }
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__fadeInTopLeft {
    -webkit-animation-name: fadeInTopLeft;
    animation-name: fadeInTopLeft;
    }
    @-webkit-keyframes fadeInTopRight {
    from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
    }
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes fadeInTopRight {
    from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
    }
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__fadeInTopRight {
    -webkit-animation-name: fadeInTopRight;
    animation-name: fadeInTopRight;
    }
    @-webkit-keyframes fadeInBottomLeft {
    from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
    }
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes fadeInBottomLeft {
    from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
    }
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__fadeInBottomLeft {
    -webkit-animation-name: fadeInBottomLeft;
    animation-name: fadeInBottomLeft;
    }
    @-webkit-keyframes fadeInBottomRight {
    from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
    }
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes fadeInBottomRight {
    from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
    }
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__fadeInBottomRight {
    -webkit-animation-name: fadeInBottomRight;
    animation-name: fadeInBottomRight;
    }
    /* Fading exits */
    @-webkit-keyframes fadeOut {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    }
    }
    @keyframes fadeOut {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    }
    }
    .animate__fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    }
    @-webkit-keyframes fadeOutDown {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    }
    }
    @keyframes fadeOutDown {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    }
    }
    .animate__fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
    }
    @-webkit-keyframes fadeOutDownBig {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
    }
    }
    @keyframes fadeOutDownBig {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
    }
    }
    .animate__fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
    }
    @-webkit-keyframes fadeOutLeft {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    }
    }
    @keyframes fadeOutLeft {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    }
    }
    .animate__fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
    }
    @-webkit-keyframes fadeOutLeftBig {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
    }
    }
    @keyframes fadeOutLeftBig {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
    }
    }
    .animate__fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
    }
    @-webkit-keyframes fadeOutRight {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    }
    }
    @keyframes fadeOutRight {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    }
    }
    .animate__fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
    }
    @-webkit-keyframes fadeOutRightBig {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
    }
    }
    @keyframes fadeOutRightBig {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
    }
    }
    .animate__fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
    }
    @-webkit-keyframes fadeOutUp {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    }
    }
    @keyframes fadeOutUp {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    }
    }
    .animate__fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
    }
    @-webkit-keyframes fadeOutUpBig {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
    }
    }
    @keyframes fadeOutUpBig {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
    }
    }
    .animate__fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
    }
    @-webkit-keyframes fadeOutTopLeft {
    from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
    }
    }
    @keyframes fadeOutTopLeft {
    from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
    }
    }
    .animate__fadeOutTopLeft {
    -webkit-animation-name: fadeOutTopLeft;
    animation-name: fadeOutTopLeft;
    }
    @-webkit-keyframes fadeOutTopRight {
    from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
    }
    }
    @keyframes fadeOutTopRight {
    from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
    }
    }
    .animate__fadeOutTopRight {
    -webkit-animation-name: fadeOutTopRight;
    animation-name: fadeOutTopRight;
    }
    @-webkit-keyframes fadeOutBottomRight {
    from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
    }
    }
    @keyframes fadeOutBottomRight {
    from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
    }
    }
    .animate__fadeOutBottomRight {
    -webkit-animation-name: fadeOutBottomRight;
    animation-name: fadeOutBottomRight;
    }
    @-webkit-keyframes fadeOutBottomLeft {
    from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
    }
    }
    @keyframes fadeOutBottomLeft {
    from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
    }
    }
    .animate__fadeOutBottomLeft {
    -webkit-animation-name: fadeOutBottomLeft;
    animation-name: fadeOutBottomLeft;
    }
    /* Flippers */
    @-webkit-keyframes flip {
    from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    }
    
    40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
    rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
    rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    }
    
    50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
    rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
    rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    }
    
    80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
    rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
    rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    }
    
    to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    }
    }
    @keyframes flip {
    from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    }
    
    40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
    rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
    rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    }
    
    50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
    rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
    rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    }
    
    80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
    rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
    rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    }
    
    to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    }
    }
    .animate__animated.animate__flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
    }
    @-webkit-keyframes flipInX {
    from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    }
    
    40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    }
    
    60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
    }
    
    80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    
    to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    }
    }
    @keyframes flipInX {
    from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    }
    
    40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    }
    
    60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
    }
    
    80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    
    to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    }
    }
    .animate__flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
    }
    @-webkit-keyframes flipInY {
    from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    }
    
    40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    }
    
    60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
    }
    
    80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    
    to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    }
    }
    @keyframes flipInY {
    from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    }
    
    40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    }
    
    60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
    }
    
    80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    
    to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    }
    }
    .animate__flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    }
    @-webkit-keyframes flipOutX {
    from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    }
    
    30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
    }
    
    to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
    }
    }
    @keyframes flipOutX {
    from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    }
    
    30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
    }
    
    to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
    }
    }
    .animate__flipOutX {
    -webkit-animation-duration: calc(1s * 0.75);
    animation-duration: calc(1s * 0.75);
    -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
    animation-duration: calc(var(--animate-duration) * 0.75);
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    }
    @-webkit-keyframes flipOutY {
    from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    }
    
    30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
    }
    
    to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
    }
    }
    @keyframes flipOutY {
    from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    }
    
    30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
    }
    
    to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
    }
    }
    .animate__flipOutY {
    -webkit-animation-duration: calc(1s * 0.75);
    animation-duration: calc(1s * 0.75);
    -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
    animation-duration: calc(var(--animate-duration) * 0.75);
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
    }
    /* Lightspeed */
    @-webkit-keyframes lightSpeedInRight {
    from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
    }
    
    60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
    }
    
    80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes lightSpeedInRight {
    from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
    }
    
    60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
    }
    
    80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__lightSpeedInRight {
    -webkit-animation-name: lightSpeedInRight;
    animation-name: lightSpeedInRight;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    }
    @-webkit-keyframes lightSpeedInLeft {
    from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
    }
    
    60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
    }
    
    80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes lightSpeedInLeft {
    from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
    }
    
    60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
    }
    
    80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__lightSpeedInLeft {
    -webkit-animation-name: lightSpeedInLeft;
    animation-name: lightSpeedInLeft;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    }
    @-webkit-keyframes lightSpeedOutRight {
    from {
    opacity: 1;
    }
    
    to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
    }
    }
    @keyframes lightSpeedOutRight {
    from {
    opacity: 1;
    }
    
    to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
    }
    }
    .animate__lightSpeedOutRight {
    -webkit-animation-name: lightSpeedOutRight;
    animation-name: lightSpeedOutRight;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    }
    @-webkit-keyframes lightSpeedOutLeft {
    from {
    opacity: 1;
    }
    
    to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
    }
    }
    @keyframes lightSpeedOutLeft {
    from {
    opacity: 1;
    }
    
    to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
    }
    }
    .animate__lightSpeedOutLeft {
    -webkit-animation-name: lightSpeedOutLeft;
    animation-name: lightSpeedOutLeft;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    }
    /* Rotating entrances */
    @-webkit-keyframes rotateIn {
    from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    }
    }
    @keyframes rotateIn {
    from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    }
    }
    .animate__rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
    -webkit-transform-origin: center;
    transform-origin: center;
    }
    @-webkit-keyframes rotateInDownLeft {
    from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    }
    }
    @keyframes rotateInDownLeft {
    from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    }
    }
    .animate__rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    }
    @-webkit-keyframes rotateInDownRight {
    from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    }
    }
    @keyframes rotateInDownRight {
    from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    }
    }
    .animate__rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    }
    @-webkit-keyframes rotateInUpLeft {
    from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    }
    }
    @keyframes rotateInUpLeft {
    from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    }
    }
    .animate__rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    }
    @-webkit-keyframes rotateInUpRight {
    from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    }
    }
    @keyframes rotateInUpRight {
    from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    }
    }
    .animate__rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    }
    /* Rotating exits */
    @-webkit-keyframes rotateOut {
    from {
    opacity: 1;
    }
    
    to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
    }
    }
    @keyframes rotateOut {
    from {
    opacity: 1;
    }
    
    to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
    }
    }
    .animate__rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
    -webkit-transform-origin: center;
    transform-origin: center;
    }
    @-webkit-keyframes rotateOutDownLeft {
    from {
    opacity: 1;
    }
    
    to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
    }
    }
    @keyframes rotateOutDownLeft {
    from {
    opacity: 1;
    }
    
    to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
    }
    }
    .animate__rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    }
    @-webkit-keyframes rotateOutDownRight {
    from {
    opacity: 1;
    }
    
    to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
    }
    }
    @keyframes rotateOutDownRight {
    from {
    opacity: 1;
    }
    
    to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
    }
    }
    .animate__rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    }
    @-webkit-keyframes rotateOutUpLeft {
    from {
    opacity: 1;
    }
    
    to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
    }
    }
    @keyframes rotateOutUpLeft {
    from {
    opacity: 1;
    }
    
    to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
    }
    }
    .animate__rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    }
    @-webkit-keyframes rotateOutUpRight {
    from {
    opacity: 1;
    }
    
    to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
    }
    }
    @keyframes rotateOutUpRight {
    from {
    opacity: 1;
    }
    
    to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
    }
    }
    .animate__rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    }
    /* Specials */
    @-webkit-keyframes hinge {
    0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    }
    
    20%,
    60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    }
    
    40%,
    80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
    }
    
    to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
    }
    }
    @keyframes hinge {
    0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    }
    
    20%,
    60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    }
    
    40%,
    80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
    }
    
    to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
    }
    }
    .animate__hinge {
    -webkit-animation-duration: calc(1s * 2);
    animation-duration: calc(1s * 2);
    -webkit-animation-duration: calc(var(--animate-duration) * 2);
    animation-duration: calc(var(--animate-duration) * 2);
    -webkit-animation-name: hinge;
    animation-name: hinge;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    }
    @-webkit-keyframes jackInTheBox {
    from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    }
    
    50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
    }
    
    70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
    }
    
    to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    }
    }
    @keyframes jackInTheBox {
    from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    }
    
    50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
    }
    
    70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
    }
    
    to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    }
    }
    .animate__jackInTheBox {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox;
    }
    /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
    @-webkit-keyframes rollIn {
    from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes rollIn {
    from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    
    to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
    }
    /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
    @-webkit-keyframes rollOut {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
    }
    @keyframes rollOut {
    from {
    opacity: 1;
    }
    
    to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
    }
    .animate__rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
    }
    /* Zooming entrances */
    @-webkit-keyframes zoomIn {
    from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
    }
    
    50% {
    opacity: 1;
    }
    }
    @keyframes zoomIn {
    from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
    }
    
    50% {
    opacity: 1;
    }
    }
    .animate__zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    }
    @-webkit-keyframes zoomInDown {
    from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    
    60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
    }
    @keyframes zoomInDown {
    from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    
    60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
    }
    .animate__zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
    }
    @-webkit-keyframes zoomInLeft {
    from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    
    60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
    }
    @keyframes zoomInLeft {
    from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    
    60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
    }
    .animate__zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
    }
    @-webkit-keyframes zoomInRight {
    from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    
    60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
    }
    @keyframes zoomInRight {
    from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    
    60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
    }
    .animate__zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
    }
    @-webkit-keyframes zoomInUp {
    from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    
    60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
    }
    @keyframes zoomInUp {
    from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    
    60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
    }
    .animate__zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
    }
    /* Zooming exits */
    @-webkit-keyframes zoomOut {
    from {
    opacity: 1;
    }
    
    50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
    }
    
    to {
    opacity: 0;
    }
    }
    @keyframes zoomOut {
    from {
    opacity: 1;
    }
    
    50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
    }
    
    to {
    opacity: 0;
    }
    }
    .animate__zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
    }
    @-webkit-keyframes zoomOutDown {
    40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    
    to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
    }
    @keyframes zoomOutDown {
    40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    
    to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
    }
    .animate__zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    }
    @-webkit-keyframes zoomOutLeft {
    40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    
    to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    }
    }
    @keyframes zoomOutLeft {
    40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    
    to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    }
    }
    .animate__zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
    -webkit-transform-origin: left center;
    transform-origin: left center;
    }
    @-webkit-keyframes zoomOutRight {
    40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    
    to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    }
    }
    @keyframes zoomOutRight {
    40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    
    to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    }
    }
    .animate__zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
    -webkit-transform-origin: right center;
    transform-origin: right center;
    }
    @-webkit-keyframes zoomOutUp {
    40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    
    to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
    }
    @keyframes zoomOutUp {
    40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    
    to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
    }
    .animate__zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    }
    /* Sliding entrances */
    @-webkit-keyframes slideInDown {
    from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes slideInDown {
    from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    }
    @-webkit-keyframes slideInLeft {
    from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes slideInLeft {
    from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
    }
    @-webkit-keyframes slideInRight {
    from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes slideInRight {
    from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
    }
    @-webkit-keyframes slideInUp {
    from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    @keyframes slideInUp {
    from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
    }
    
    to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    }
    .animate__slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
    }
    /* Sliding exits */
    @-webkit-keyframes slideOutDown {
    from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    
    to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    }
    }
    @keyframes slideOutDown {
    from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    
    to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    }
    }
    .animate__slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
    }
    @-webkit-keyframes slideOutLeft {
    from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    
    to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    }
    }
    @keyframes slideOutLeft {
    from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    
    to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    }
    }
    .animate__slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
    }
    @-webkit-keyframes slideOutRight {
    from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    
    to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    }
    }
    @keyframes slideOutRight {
    from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    
    to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    }
    }
    .animate__slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
    }
    @-webkit-keyframes slideOutUp {
    from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    
    to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    }
    }
    @keyframes slideOutUp {
    from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }
    
    to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    }
    }
    .animate__slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
    }
    
    @font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/MaterialIcons-Regular.4674f8ded773cb03e824323bfc950537.eot); /* For IE6-8 */
    src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(../fonts/MaterialIcons-Regular.cff684e59ffb052d72cb8d5e49471553.woff2) format('woff2'),
    url(../fonts/MaterialIcons-Regular.83bebaf37c09c7e1c3ee52682892ae14.woff) format('woff'),
    url(../fonts/MaterialIcons-Regular.5e7382c63da0098d634a356ff441614e.ttf) format('truetype');
    }
    
    .material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;  /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    
    /* Support for IE. */
    font-feature-settings: 'liga';
    }
    
    /*!
    *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
    *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
    */
    /* FONT PATH
    * -------------------------- */
    @font-face {
    font-family: 'FontAwesome';
    src: url(../fonts/fontawesome-webfont.8b43027f47b20503057dfbbaa9401fef.eot);
    src: url(../fonts/fontawesome-webfont.8b43027f47b20503057dfbbaa9401fef.eot?#iefix&v=4.7.0) format('embedded-opentype'), url(../fonts/fontawesome-webfont.20fd1704ea223900efa9fd4e869efb08.woff2) format('woff2'), url(../fonts/fontawesome-webfont.f691f37e57f04c152e2315ab7dbad881.woff) format('woff'), url(../fonts/fontawesome-webfont.1e59d2330b4c6deb84b340635ed36249.ttf) format('truetype'), url(../fonts/fontawesome-webfont.c1e38fd9e0e74ba58f7a2b77ef29fdd3.svg#fontawesomeregular) format('svg');
    font-weight: normal;
    font-style: normal;
    }
    .fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
    /* makes the font 33% larger relative to the icon container */
    .fa-lg {
    font-size: 1.33333333em;
    line-height: 0.75em;
    vertical-align: -15%;
    }
    .fa-2x {
    font-size: 2em;
    }
    .fa-3x {
    font-size: 3em;
    }
    .fa-4x {
    font-size: 4em;
    }
    .fa-5x {
    font-size: 5em;
    }
    .fa-fw {
    width: 1.28571429em;
    text-align: center;
    }
    .fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none;
    }
    .fa-ul > li {
    position: relative;
    }
    .fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: 0.14285714em;
    text-align: center;
    }
    .fa-li.fa-lg {
    left: -1.85714286em;
    }
    .fa-border {
    padding: .2em .25em .15em;
    border: solid 0.08em #eeeeee;
    border-radius: .1em;
    }
    .fa-pull-left {
    float: left;
    }
    .fa-pull-right {
    float: right;
    }
    .fa.fa-pull-left {
    margin-right: .3em;
    }
    .fa.fa-pull-right {
    margin-left: .3em;
    }
    /* Deprecated as of 4.4.0 */
    .pull-right {
    float: right;
    }
    .pull-left {
    float: left;
    }
    .fa.pull-left {
    margin-right: .3em;
    }
    .fa.pull-right {
    margin-left: .3em;
    }
    .fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
    }
    .fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
    }
    @-webkit-keyframes fa-spin {
    0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    }
    100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
    }
    }
    @keyframes fa-spin {
    0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    }
    100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
    }
    }
    .fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    }
    .fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    }
    .fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    }
    .fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
    }
    .fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
    }
    :root .fa-rotate-90,
    :root .fa-rotate-180,
    :root .fa-rotate-270,
    :root .fa-flip-horizontal,
    :root .fa-flip-vertical {
    filter: none;
    }
    .fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
    }
    .fa-stack-1x,
    .fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    }
    .fa-stack-1x {
    line-height: inherit;
    }
    .fa-stack-2x {
    font-size: 2em;
    }
    .fa-inverse {
    color: #ffffff;
    }
    /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
    readers do not read off random characters that represent icons */
    .fa-glass:before {
    content: "\f000";
    }
    .fa-music:before {
    content: "\f001";
    }
    .fa-search:before {
    content: "\f002";
    }
    .fa-envelope-o:before {
    content: "\f003";
    }
    .fa-heart:before {
    content: "\f004";
    }
    .fa-star:before {
    content: "\f005";
    }
    .fa-star-o:before {
    content: "\f006";
    }
    .fa-user:before {
    content: "\f007";
    }
    .fa-film:before {
    content: "\f008";
    }
    .fa-th-large:before {
    content: "\f009";
    }
    .fa-th:before {
    content: "\f00a";
    }
    .fa-th-list:before {
    content: "\f00b";
    }
    .fa-check:before {
    content: "\f00c";
    }
    .fa-remove:before,
    .fa-close:before,
    .fa-times:before {
    content: "\f00d";
    }
    .fa-search-plus:before {
    content: "\f00e";
    }
    .fa-search-minus:before {
    content: "\f010";
    }
    .fa-power-off:before {
    content: "\f011";
    }
    .fa-signal:before {
    content: "\f012";
    }
    .fa-gear:before,
    .fa-cog:before {
    content: "\f013";
    }
    .fa-trash-o:before {
    content: "\f014";
    }
    .fa-home:before {
    content: "\f015";
    }
    .fa-file-o:before {
    content: "\f016";
    }
    .fa-clock-o:before {
    content: "\f017";
    }
    .fa-road:before {
    content: "\f018";
    }
    .fa-download:before {
    content: "\f019";
    }
    .fa-arrow-circle-o-down:before {
    content: "\f01a";
    }
    .fa-arrow-circle-o-up:before {
    content: "\f01b";
    }
    .fa-inbox:before {
    content: "\f01c";
    }
    .fa-play-circle-o:before {
    content: "\f01d";
    }
    .fa-rotate-right:before,
    .fa-repeat:before {
    content: "\f01e";
    }
    .fa-refresh:before {
    content: "\f021";
    }
    .fa-list-alt:before {
    content: "\f022";
    }
    .fa-lock:before {
    content: "\f023";
    }
    .fa-flag:before {
    content: "\f024";
    }
    .fa-headphones:before {
    content: "\f025";
    }
    .fa-volume-off:before {
    content: "\f026";
    }
    .fa-volume-down:before {
    content: "\f027";
    }
    .fa-volume-up:before {
    content: "\f028";
    }
    .fa-qrcode:before {
    content: "\f029";
    }
    .fa-barcode:before {
    content: "\f02a";
    }
    .fa-tag:before {
    content: "\f02b";
    }
    .fa-tags:before {
    content: "\f02c";
    }
    .fa-book:before {
    content: "\f02d";
    }
    .fa-bookmark:before {
    content: "\f02e";
    }
    .fa-print:before {
    content: "\f02f";
    }
    .fa-camera:before {
    content: "\f030";
    }
    .fa-font:before {
    content: "\f031";
    }
    .fa-bold:before {
    content: "\f032";
    }
    .fa-italic:before {
    content: "\f033";
    }
    .fa-text-height:before {
    content: "\f034";
    }
    .fa-text-width:before {
    content: "\f035";
    }
    .fa-align-left:before {
    content: "\f036";
    }
    .fa-align-center:before {
    content: "\f037";
    }
    .fa-align-right:before {
    content: "\f038";
    }
    .fa-align-justify:before {
    content: "\f039";
    }
    .fa-list:before {
    content: "\f03a";
    }
    .fa-dedent:before,
    .fa-outdent:before {
    content: "\f03b";
    }
    .fa-indent:before {
    content: "\f03c";
    }
    .fa-video-camera:before {
    content: "\f03d";
    }
    .fa-photo:before,
    .fa-image:before,
    .fa-picture-o:before {
    content: "\f03e";
    }
    .fa-pencil:before {
    content: "\f040";
    }
    .fa-map-marker:before {
    content: "\f041";
    }
    .fa-adjust:before {
    content: "\f042";
    }
    .fa-tint:before {
    content: "\f043";
    }
    .fa-edit:before,
    .fa-pencil-square-o:before {
    content: "\f044";
    }
    .fa-share-square-o:before {
    content: "\f045";
    }
    .fa-check-square-o:before {
    content: "\f046";
    }
    .fa-arrows:before {
    content: "\f047";
    }
    .fa-step-backward:before {
    content: "\f048";
    }
    .fa-fast-backward:before {
    content: "\f049";
    }
    .fa-backward:before {
    content: "\f04a";
    }
    .fa-play:before {
    content: "\f04b";
    }
    .fa-pause:before {
    content: "\f04c";
    }
    .fa-stop:before {
    content: "\f04d";
    }
    .fa-forward:before {
    content: "\f04e";
    }
    .fa-fast-forward:before {
    content: "\f050";
    }
    .fa-step-forward:before {
    content: "\f051";
    }
    .fa-eject:before {
    content: "\f052";
    }
    .fa-chevron-left:before {
    content: "\f053";
    }
    .fa-chevron-right:before {
    content: "\f054";
    }
    .fa-plus-circle:before {
    content: "\f055";
    }
    .fa-minus-circle:before {
    content: "\f056";
    }
    .fa-times-circle:before {
    content: "\f057";
    }
    .fa-check-circle:before {
    content: "\f058";
    }
    .fa-question-circle:before {
    content: "\f059";
    }
    .fa-info-circle:before {
    content: "\f05a";
    }
    .fa-crosshairs:before {
    content: "\f05b";
    }
    .fa-times-circle-o:before {
    content: "\f05c";
    }
    .fa-check-circle-o:before {
    content: "\f05d";
    }
    .fa-ban:before {
    content: "\f05e";
    }
    .fa-arrow-left:before {
    content: "\f060";
    }
    .fa-arrow-right:before {
    content: "\f061";
    }
    .fa-arrow-up:before {
    content: "\f062";
    }
    .fa-arrow-down:before {
    content: "\f063";
    }
    .fa-mail-forward:before,
    .fa-share:before {
    content: "\f064";
    }
    .fa-expand:before {
    content: "\f065";
    }
    .fa-compress:before {
    content: "\f066";
    }
    .fa-plus:before {
    content: "\f067";
    }
    .fa-minus:before {
    content: "\f068";
    }
    .fa-asterisk:before {
    content: "\f069";
    }
    .fa-exclamation-circle:before {
    content: "\f06a";
    }
    .fa-gift:before {
    content: "\f06b";
    }
    .fa-leaf:before {
    content: "\f06c";
    }
    .fa-fire:before {
    content: "\f06d";
    }
    .fa-eye:before {
    content: "\f06e";
    }
    .fa-eye-slash:before {
    content: "\f070";
    }
    .fa-warning:before,
    .fa-exclamation-triangle:before {
    content: "\f071";
    }
    .fa-plane:before {
    content: "\f072";
    }
    .fa-calendar:before {
    content: "\f073";
    }
    .fa-random:before {
    content: "\f074";
    }
    .fa-comment:before {
    content: "\f075";
    }
    .fa-magnet:before {
    content: "\f076";
    }
    .fa-chevron-up:before {
    content: "\f077";
    }
    .fa-chevron-down:before {
    content: "\f078";
    }
    .fa-retweet:before {
    content: "\f079";
    }
    .fa-shopping-cart:before {
    content: "\f07a";
    }
    .fa-folder:before {
    content: "\f07b";
    }
    .fa-folder-open:before {
    content: "\f07c";
    }
    .fa-arrows-v:before {
    content: "\f07d";
    }
    .fa-arrows-h:before {
    content: "\f07e";
    }
    .fa-bar-chart-o:before,
    .fa-bar-chart:before {
    content: "\f080";
    }
    .fa-twitter-square:before {
    content: "\f081";
    }
    .fa-facebook-square:before {
    content: "\f082";
    }
    .fa-camera-retro:before {
    content: "\f083";
    }
    .fa-key:before {
    content: "\f084";
    }
    .fa-gears:before,
    .fa-cogs:before {
    content: "\f085";
    }
    .fa-comments:before {
    content: "\f086";
    }
    .fa-thumbs-o-up:before {
    content: "\f087";
    }
    .fa-thumbs-o-down:before {
    content: "\f088";
    }
    .fa-star-half:before {
    content: "\f089";
    }
    .fa-heart-o:before {
    content: "\f08a";
    }
    .fa-sign-out:before {
    content: "\f08b";
    }
    .fa-linkedin-square:before {
    content: "\f08c";
    }
    .fa-thumb-tack:before {
    content: "\f08d";
    }
    .fa-external-link:before {
    content: "\f08e";
    }
    .fa-sign-in:before {
    content: "\f090";
    }
    .fa-trophy:before {
    content: "\f091";
    }
    .fa-github-square:before {
    content: "\f092";
    }
    .fa-upload:before {
    content: "\f093";
    }
    .fa-lemon-o:before {
    content: "\f094";
    }
    .fa-phone:before {
    content: "\f095";
    }
    .fa-square-o:before {
    content: "\f096";
    }
    .fa-bookmark-o:before {
    content: "\f097";
    }
    .fa-phone-square:before {
    content: "\f098";
    }
    .fa-twitter:before {
    content: "\f099";
    }
    .fa-facebook-f:before,
    .fa-facebook:before {
    content: "\f09a";
    }
    .fa-github:before {
    content: "\f09b";
    }
    .fa-unlock:before {
    content: "\f09c";
    }
    .fa-credit-card:before {
    content: "\f09d";
    }
    .fa-feed:before,
    .fa-rss:before {
    content: "\f09e";
    }
    .fa-hdd-o:before {
    content: "\f0a0";
    }
    .fa-bullhorn:before {
    content: "\f0a1";
    }
    .fa-bell:before {
    content: "\f0f3";
    }
    .fa-certificate:before {
    content: "\f0a3";
    }
    .fa-hand-o-right:before {
    content: "\f0a4";
    }
    .fa-hand-o-left:before {
    content: "\f0a5";
    }
    .fa-hand-o-up:before {
    content: "\f0a6";
    }
    .fa-hand-o-down:before {
    content: "\f0a7";
    }
    .fa-arrow-circle-left:before {
    content: "\f0a8";
    }
    .fa-arrow-circle-right:before {
    content: "\f0a9";
    }
    .fa-arrow-circle-up:before {
    content: "\f0aa";
    }
    .fa-arrow-circle-down:before {
    content: "\f0ab";
    }
    .fa-globe:before {
    content: "\f0ac";
    }
    .fa-wrench:before {
    content: "\f0ad";
    }
    .fa-tasks:before {
    content: "\f0ae";
    }
    .fa-filter:before {
    content: "\f0b0";
    }
    .fa-briefcase:before {
    content: "\f0b1";
    }
    .fa-arrows-alt:before {
    content: "\f0b2";
    }
    .fa-group:before,
    .fa-users:before {
    content: "\f0c0";
    }
    .fa-chain:before,
    .fa-link:before {
    content: "\f0c1";
    }
    .fa-cloud:before {
    content: "\f0c2";
    }
    .fa-flask:before {
    content: "\f0c3";
    }
    .fa-cut:before,
    .fa-scissors:before {
    content: "\f0c4";
    }
    .fa-copy:before,
    .fa-files-o:before {
    content: "\f0c5";
    }
    .fa-paperclip:before {
    content: "\f0c6";
    }
    .fa-save:before,
    .fa-floppy-o:before {
    content: "\f0c7";
    }
    .fa-square:before {
    content: "\f0c8";
    }
    .fa-navicon:before,
    .fa-reorder:before,
    .fa-bars:before {
    content: "\f0c9";
    }
    .fa-list-ul:before {
    content: "\f0ca";
    }
    .fa-list-ol:before {
    content: "\f0cb";
    }
    .fa-strikethrough:before {
    content: "\f0cc";
    }
    .fa-underline:before {
    content: "\f0cd";
    }
    .fa-table:before {
    content: "\f0ce";
    }
    .fa-magic:before {
    content: "\f0d0";
    }
    .fa-truck:before {
    content: "\f0d1";
    }
    .fa-pinterest:before {
    content: "\f0d2";
    }
    .fa-pinterest-square:before {
    content: "\f0d3";
    }
    .fa-google-plus-square:before {
    content: "\f0d4";
    }
    .fa-google-plus:before {
    content: "\f0d5";
    }
    .fa-money:before {
    content: "\f0d6";
    }
    .fa-caret-down:before {
    content: "\f0d7";
    }
    .fa-caret-up:before {
    content: "\f0d8";
    }
    .fa-caret-left:before {
    content: "\f0d9";
    }
    .fa-caret-right:before {
    content: "\f0da";
    }
    .fa-columns:before {
    content: "\f0db";
    }
    .fa-unsorted:before,
    .fa-sort:before {
    content: "\f0dc";
    }
    .fa-sort-down:before,
    .fa-sort-desc:before {
    content: "\f0dd";
    }
    .fa-sort-up:before,
    .fa-sort-asc:before {
    content: "\f0de";
    }
    .fa-envelope:before {
    content: "\f0e0";
    }
    .fa-linkedin:before {
    content: "\f0e1";
    }
    .fa-rotate-left:before,
    .fa-undo:before {
    content: "\f0e2";
    }
    .fa-legal:before,
    .fa-gavel:before {
    content: "\f0e3";
    }
    .fa-dashboard:before,
    .fa-tachometer:before {
    content: "\f0e4";
    }
    .fa-comment-o:before {
    content: "\f0e5";
    }
    .fa-comments-o:before {
    content: "\f0e6";
    }
    .fa-flash:before,
    .fa-bolt:before {
    content: "\f0e7";
    }
    .fa-sitemap:before {
    content: "\f0e8";
    }
    .fa-umbrella:before {
    content: "\f0e9";
    }
    .fa-paste:before,
    .fa-clipboard:before {
    content: "\f0ea";
    }
    .fa-lightbulb-o:before {
    content: "\f0eb";
    }
    .fa-exchange:before {
    content: "\f0ec";
    }
    .fa-cloud-download:before {
    content: "\f0ed";
    }
    .fa-cloud-upload:before {
    content: "\f0ee";
    }
    .fa-user-md:before {
    content: "\f0f0";
    }
    .fa-stethoscope:before {
    content: "\f0f1";
    }
    .fa-suitcase:before {
    content: "\f0f2";
    }
    .fa-bell-o:before {
    content: "\f0a2";
    }
    .fa-coffee:before {
    content: "\f0f4";
    }
    .fa-cutlery:before {
    content: "\f0f5";
    }
    .fa-file-text-o:before {
    content: "\f0f6";
    }
    .fa-building-o:before {
    content: "\f0f7";
    }
    .fa-hospital-o:before {
    content: "\f0f8";
    }
    .fa-ambulance:before {
    content: "\f0f9";
    }
    .fa-medkit:before {
    content: "\f0fa";
    }
    .fa-fighter-jet:before {
    content: "\f0fb";
    }
    .fa-beer:before {
    content: "\f0fc";
    }
    .fa-h-square:before {
    content: "\f0fd";
    }
    .fa-plus-square:before {
    content: "\f0fe";
    }
    .fa-angle-double-left:before {
    content: "\f100";
    }
    .fa-angle-double-right:before {
    content: "\f101";
    }
    .fa-angle-double-up:before {
    content: "\f102";
    }
    .fa-angle-double-down:before {
    content: "\f103";
    }
    .fa-angle-left:before {
    content: "\f104";
    }
    .fa-angle-right:before {
    content: "\f105";
    }
    .fa-angle-up:before {
    content: "\f106";
    }
    .fa-angle-down:before {
    content: "\f107";
    }
    .fa-desktop:before {
    content: "\f108";
    }
    .fa-laptop:before {
    content: "\f109";
    }
    .fa-tablet:before {
    content: "\f10a";
    }
    .fa-mobile-phone:before,
    .fa-mobile:before {
    content: "\f10b";
    }
    .fa-circle-o:before {
    content: "\f10c";
    }
    .fa-quote-left:before {
    content: "\f10d";
    }
    .fa-quote-right:before {
    content: "\f10e";
    }
    .fa-spinner:before {
    content: "\f110";
    }
    .fa-circle:before {
    content: "\f111";
    }
    .fa-mail-reply:before,
    .fa-reply:before {
    content: "\f112";
    }
    .fa-github-alt:before {
    content: "\f113";
    }
    .fa-folder-o:before {
    content: "\f114";
    }
    .fa-folder-open-o:before {
    content: "\f115";
    }
    .fa-smile-o:before {
    content: "\f118";
    }
    .fa-frown-o:before {
    content: "\f119";
    }
    .fa-meh-o:before {
    content: "\f11a";
    }
    .fa-gamepad:before {
    content: "\f11b";
    }
    .fa-keyboard-o:before {
    content: "\f11c";
    }
    .fa-flag-o:before {
    content: "\f11d";
    }
    .fa-flag-checkered:before {
    content: "\f11e";
    }
    .fa-terminal:before {
    content: "\f120";
    }
    .fa-code:before {
    content: "\f121";
    }
    .fa-mail-reply-all:before,
    .fa-reply-all:before {
    content: "\f122";
    }
    .fa-star-half-empty:before,
    .fa-star-half-full:before,
    .fa-star-half-o:before {
    content: "\f123";
    }
    .fa-location-arrow:before {
    content: "\f124";
    }
    .fa-crop:before {
    content: "\f125";
    }
    .fa-code-fork:before {
    content: "\f126";
    }
    .fa-unlink:before,
    .fa-chain-broken:before {
    content: "\f127";
    }
    .fa-question:before {
    content: "\f128";
    }
    .fa-info:before {
    content: "\f129";
    }
    .fa-exclamation:before {
    content: "\f12a";
    }
    .fa-superscript:before {
    content: "\f12b";
    }
    .fa-subscript:before {
    content: "\f12c";
    }
    .fa-eraser:before {
    content: "\f12d";
    }
    .fa-puzzle-piece:before {
    content: "\f12e";
    }
    .fa-microphone:before {
    content: "\f130";
    }
    .fa-microphone-slash:before {
    content: "\f131";
    }
    .fa-shield:before {
    content: "\f132";
    }
    .fa-calendar-o:before {
    content: "\f133";
    }
    .fa-fire-extinguisher:before {
    content: "\f134";
    }
    .fa-rocket:before {
    content: "\f135";
    }
    .fa-maxcdn:before {
    content: "\f136";
    }
    .fa-chevron-circle-left:before {
    content: "\f137";
    }
    .fa-chevron-circle-right:before {
    content: "\f138";
    }
    .fa-chevron-circle-up:before {
    content: "\f139";
    }
    .fa-chevron-circle-down:before {
    content: "\f13a";
    }
    .fa-html5:before {
    content: "\f13b";
    }
    .fa-css3:before {
    content: "\f13c";
    }
    .fa-anchor:before {
    content: "\f13d";
    }
    .fa-unlock-alt:before {
    content: "\f13e";
    }
    .fa-bullseye:before {
    content: "\f140";
    }
    .fa-ellipsis-h:before {
    content: "\f141";
    }
    .fa-ellipsis-v:before {
    content: "\f142";
    }
    .fa-rss-square:before {
    content: "\f143";
    }
    .fa-play-circle:before {
    content: "\f144";
    }
    .fa-ticket:before {
    content: "\f145";
    }
    .fa-minus-square:before {
    content: "\f146";
    }
    .fa-minus-square-o:before {
    content: "\f147";
    }
    .fa-level-up:before {
    content: "\f148";
    }
    .fa-level-down:before {
    content: "\f149";
    }
    .fa-check-square:before {
    content: "\f14a";
    }
    .fa-pencil-square:before {
    content: "\f14b";
    }
    .fa-external-link-square:before {
    content: "\f14c";
    }
    .fa-share-square:before {
    content: "\f14d";
    }
    .fa-compass:before {
    content: "\f14e";
    }
    .fa-toggle-down:before,
    .fa-caret-square-o-down:before {
    content: "\f150";
    }
    .fa-toggle-up:before,
    .fa-caret-square-o-up:before {
    content: "\f151";
    }
    .fa-toggle-right:before,
    .fa-caret-square-o-right:before {
    content: "\f152";
    }
    .fa-euro:before,
    .fa-eur:before {
    content: "\f153";
    }
    .fa-gbp:before {
    content: "\f154";
    }
    .fa-dollar:before,
    .fa-usd:before {
    content: "\f155";
    }
    .fa-rupee:before,
    .fa-inr:before {
    content: "\f156";
    }
    .fa-cny:before,
    .fa-rmb:before,
    .fa-yen:before,
    .fa-jpy:before {
    content: "\f157";
    }
    .fa-ruble:before,
    .fa-rouble:before,
    .fa-rub:before {
    content: "\f158";
    }
    .fa-won:before,
    .fa-krw:before {
    content: "\f159";
    }
    .fa-bitcoin:before,
    .fa-btc:before {
    content: "\f15a";
    }
    .fa-file:before {
    content: "\f15b";
    }
    .fa-file-text:before {
    content: "\f15c";
    }
    .fa-sort-alpha-asc:before {
    content: "\f15d";
    }
    .fa-sort-alpha-desc:before {
    content: "\f15e";
    }
    .fa-sort-amount-asc:before {
    content: "\f160";
    }
    .fa-sort-amount-desc:before {
    content: "\f161";
    }
    .fa-sort-numeric-asc:before {
    content: "\f162";
    }
    .fa-sort-numeric-desc:before {
    content: "\f163";
    }
    .fa-thumbs-up:before {
    content: "\f164";
    }
    .fa-thumbs-down:before {
    content: "\f165";
    }
    .fa-youtube-square:before {
    content: "\f166";
    }
    .fa-youtube:before {
    content: "\f167";
    }
    .fa-xing:before {
    content: "\f168";
    }
    .fa-xing-square:before {
    content: "\f169";
    }
    .fa-youtube-play:before {
    content: "\f16a";
    }
    .fa-dropbox:before {
    content: "\f16b";
    }
    .fa-stack-overflow:before {
    content: "\f16c";
    }
    .fa-instagram:before {
    content: "\f16d";
    }
    .fa-flickr:before {
    content: "\f16e";
    }
    .fa-adn:before {
    content: "\f170";
    }
    .fa-bitbucket:before {
    content: "\f171";
    }
    .fa-bitbucket-square:before {
    content: "\f172";
    }
    .fa-tumblr:before {
    content: "\f173";
    }
    .fa-tumblr-square:before {
    content: "\f174";
    }
    .fa-long-arrow-down:before {
    content: "\f175";
    }
    .fa-long-arrow-up:before {
    content: "\f176";
    }
    .fa-long-arrow-left:before {
    content: "\f177";
    }
    .fa-long-arrow-right:before {
    content: "\f178";
    }
    .fa-apple:before {
    content: "\f179";
    }
    .fa-windows:before {
    content: "\f17a";
    }
    .fa-android:before {
    content: "\f17b";
    }
    .fa-linux:before {
    content: "\f17c";
    }
    .fa-dribbble:before {
    content: "\f17d";
    }
    .fa-skype:before {
    content: "\f17e";
    }
    .fa-foursquare:before {
    content: "\f180";
    }
    .fa-trello:before {
    content: "\f181";
    }
    .fa-female:before {
    content: "\f182";
    }
    .fa-male:before {
    content: "\f183";
    }
    .fa-gittip:before,
    .fa-gratipay:before {
    content: "\f184";
    }
    .fa-sun-o:before {
    content: "\f185";
    }
    .fa-moon-o:before {
    content: "\f186";
    }
    .fa-archive:before {
    content: "\f187";
    }
    .fa-bug:before {
    content: "\f188";
    }
    .fa-vk:before {
    content: "\f189";
    }
    .fa-weibo:before {
    content: "\f18a";
    }
    .fa-renren:before {
    content: "\f18b";
    }
    .fa-pagelines:before {
    content: "\f18c";
    }
    .fa-stack-exchange:before {
    content: "\f18d";
    }
    .fa-arrow-circle-o-right:before {
    content: "\f18e";
    }
    .fa-arrow-circle-o-left:before {
    content: "\f190";
    }
    .fa-toggle-left:before,
    .fa-caret-square-o-left:before {
    content: "\f191";
    }
    .fa-dot-circle-o:before {
    content: "\f192";
    }
    .fa-wheelchair:before {
    content: "\f193";
    }
    .fa-vimeo-square:before {
    content: "\f194";
    }
    .fa-turkish-lira:before,
    .fa-try:before {
    content: "\f195";
    }
    .fa-plus-square-o:before {
    content: "\f196";
    }
    .fa-space-shuttle:before {
    content: "\f197";
    }
    .fa-slack:before {
    content: "\f198";
    }
    .fa-envelope-square:before {
    content: "\f199";
    }
    .fa-wordpress:before {
    content: "\f19a";
    }
    .fa-openid:before {
    content: "\f19b";
    }
    .fa-institution:before,
    .fa-bank:before,
    .fa-university:before {
    content: "\f19c";
    }
    .fa-mortar-board:before,
    .fa-graduation-cap:before {
    content: "\f19d";
    }
    .fa-yahoo:before {
    content: "\f19e";
    }
    .fa-google:before {
    content: "\f1a0";
    }
    .fa-reddit:before {
    content: "\f1a1";
    }
    .fa-reddit-square:before {
    content: "\f1a2";
    }
    .fa-stumbleupon-circle:before {
    content: "\f1a3";
    }
    .fa-stumbleupon:before {
    content: "\f1a4";
    }
    .fa-delicious:before {
    content: "\f1a5";
    }
    .fa-digg:before {
    content: "\f1a6";
    }
    .fa-pied-piper-pp:before {
    content: "\f1a7";
    }
    .fa-pied-piper-alt:before {
    content: "\f1a8";
    }
    .fa-drupal:before {
    content: "\f1a9";
    }
    .fa-joomla:before {
    content: "\f1aa";
    }
    .fa-language:before {
    content: "\f1ab";
    }
    .fa-fax:before {
    content: "\f1ac";
    }
    .fa-building:before {
    content: "\f1ad";
    }
    .fa-child:before {
    content: "\f1ae";
    }
    .fa-paw:before {
    content: "\f1b0";
    }
    .fa-spoon:before {
    content: "\f1b1";
    }
    .fa-cube:before {
    content: "\f1b2";
    }
    .fa-cubes:before {
    content: "\f1b3";
    }
    .fa-behance:before {
    content: "\f1b4";
    }
    .fa-behance-square:before {
    content: "\f1b5";
    }
    .fa-steam:before {
    content: "\f1b6";
    }
    .fa-steam-square:before {
    content: "\f1b7";
    }
    .fa-recycle:before {
    content: "\f1b8";
    }
    .fa-automobile:before,
    .fa-car:before {
    content: "\f1b9";
    }
    .fa-cab:before,
    .fa-taxi:before {
    content: "\f1ba";
    }
    .fa-tree:before {
    content: "\f1bb";
    }
    .fa-spotify:before {
    content: "\f1bc";
    }
    .fa-deviantart:before {
    content: "\f1bd";
    }
    .fa-soundcloud:before {
    content: "\f1be";
    }
    .fa-database:before {
    content: "\f1c0";
    }
    .fa-file-pdf-o:before {
    content: "\f1c1";
    }
    .fa-file-word-o:before {
    content: "\f1c2";
    }
    .fa-file-excel-o:before {
    content: "\f1c3";
    }
    .fa-file-powerpoint-o:before {
    content: "\f1c4";
    }
    .fa-file-photo-o:before,
    .fa-file-picture-o:before,
    .fa-file-image-o:before {
    content: "\f1c5";
    }
    .fa-file-zip-o:before,
    .fa-file-archive-o:before {
    content: "\f1c6";
    }
    .fa-file-sound-o:before,
    .fa-file-audio-o:before {
    content: "\f1c7";
    }
    .fa-file-movie-o:before,
    .fa-file-video-o:before {
    content: "\f1c8";
    }
    .fa-file-code-o:before {
    content: "\f1c9";
    }
    .fa-vine:before {
    content: "\f1ca";
    }
    .fa-codepen:before {
    content: "\f1cb";
    }
    .fa-jsfiddle:before {
    content: "\f1cc";
    }
    .fa-life-bouy:before,
    .fa-life-buoy:before,
    .fa-life-saver:before,
    .fa-support:before,
    .fa-life-ring:before {
    content: "\f1cd";
    }
    .fa-circle-o-notch:before {
    content: "\f1ce";
    }
    .fa-ra:before,
    .fa-resistance:before,
    .fa-rebel:before {
    content: "\f1d0";
    }
    .fa-ge:before,
    .fa-empire:before {
    content: "\f1d1";
    }
    .fa-git-square:before {
    content: "\f1d2";
    }
    .fa-git:before {
    content: "\f1d3";
    }
    .fa-y-combinator-square:before,
    .fa-yc-square:before,
    .fa-hacker-news:before {
    content: "\f1d4";
    }
    .fa-tencent-weibo:before {
    content: "\f1d5";
    }
    .fa-qq:before {
    content: "\f1d6";
    }
    .fa-wechat:before,
    .fa-weixin:before {
    content: "\f1d7";
    }
    .fa-send:before,
    .fa-paper-plane:before {
    content: "\f1d8";
    }
    .fa-send-o:before,
    .fa-paper-plane-o:before {
    content: "\f1d9";
    }
    .fa-history:before {
    content: "\f1da";
    }
    .fa-circle-thin:before {
    content: "\f1db";
    }
    .fa-header:before {
    content: "\f1dc";
    }
    .fa-paragraph:before {
    content: "\f1dd";
    }
    .fa-sliders:before {
    content: "\f1de";
    }
    .fa-share-alt:before {
    content: "\f1e0";
    }
    .fa-share-alt-square:before {
    content: "\f1e1";
    }
    .fa-bomb:before {
    content: "\f1e2";
    }
    .fa-soccer-ball-o:before,
    .fa-futbol-o:before {
    content: "\f1e3";
    }
    .fa-tty:before {
    content: "\f1e4";
    }
    .fa-binoculars:before {
    content: "\f1e5";
    }
    .fa-plug:before {
    content: "\f1e6";
    }
    .fa-slideshare:before {
    content: "\f1e7";
    }
    .fa-twitch:before {
    content: "\f1e8";
    }
    .fa-yelp:before {
    content: "\f1e9";
    }
    .fa-newspaper-o:before {
    content: "\f1ea";
    }
    .fa-wifi:before {
    content: "\f1eb";
    }
    .fa-calculator:before {
    content: "\f1ec";
    }
    .fa-paypal:before {
    content: "\f1ed";
    }
    .fa-google-wallet:before {
    content: "\f1ee";
    }
    .fa-cc-visa:before {
    content: "\f1f0";
    }
    .fa-cc-mastercard:before {
    content: "\f1f1";
    }
    .fa-cc-discover:before {
    content: "\f1f2";
    }
    .fa-cc-amex:before {
    content: "\f1f3";
    }
    .fa-cc-paypal:before {
    content: "\f1f4";
    }
    .fa-cc-stripe:before {
    content: "\f1f5";
    }
    .fa-bell-slash:before {
    content: "\f1f6";
    }
    .fa-bell-slash-o:before {
    content: "\f1f7";
    }
    .fa-trash:before {
    content: "\f1f8";
    }
    .fa-copyright:before {
    content: "\f1f9";
    }
    .fa-at:before {
    content: "\f1fa";
    }
    .fa-eyedropper:before {
    content: "\f1fb";
    }
    .fa-paint-brush:before {
    content: "\f1fc";
    }
    .fa-birthday-cake:before {
    content: "\f1fd";
    }
    .fa-area-chart:before {
    content: "\f1fe";
    }
    .fa-pie-chart:before {
    content: "\f200";
    }
    .fa-line-chart:before {
    content: "\f201";
    }
    .fa-lastfm:before {
    content: "\f202";
    }
    .fa-lastfm-square:before {
    content: "\f203";
    }
    .fa-toggle-off:before {
    content: "\f204";
    }
    .fa-toggle-on:before {
    content: "\f205";
    }
    .fa-bicycle:before {
    content: "\f206";
    }
    .fa-bus:before {
    content: "\f207";
    }
    .fa-ioxhost:before {
    content: "\f208";
    }
    .fa-angellist:before {
    content: "\f209";
    }
    .fa-cc:before {
    content: "\f20a";
    }
    .fa-shekel:before,
    .fa-sheqel:before,
    .fa-ils:before {
    content: "\f20b";
    }
    .fa-meanpath:before {
    content: "\f20c";
    }
    .fa-buysellads:before {
    content: "\f20d";
    }
    .fa-connectdevelop:before {
    content: "\f20e";
    }
    .fa-dashcube:before {
    content: "\f210";
    }
    .fa-forumbee:before {
    content: "\f211";
    }
    .fa-leanpub:before {
    content: "\f212";
    }
    .fa-sellsy:before {
    content: "\f213";
    }
    .fa-shirtsinbulk:before {
    content: "\f214";
    }
    .fa-simplybuilt:before {
    content: "\f215";
    }
    .fa-skyatlas:before {
    content: "\f216";
    }
    .fa-cart-plus:before {
    content: "\f217";
    }
    .fa-cart-arrow-down:before {
    content: "\f218";
    }
    .fa-diamond:before {
    content: "\f219";
    }
    .fa-ship:before {
    content: "\f21a";
    }
    .fa-user-secret:before {
    content: "\f21b";
    }
    .fa-motorcycle:before {
    content: "\f21c";
    }
    .fa-street-view:before {
    content: "\f21d";
    }
    .fa-heartbeat:before {
    content: "\f21e";
    }
    .fa-venus:before {
    content: "\f221";
    }
    .fa-mars:before {
    content: "\f222";
    }
    .fa-mercury:before {
    content: "\f223";
    }
    .fa-intersex:before,
    .fa-transgender:before {
    content: "\f224";
    }
    .fa-transgender-alt:before {
    content: "\f225";
    }
    .fa-venus-double:before {
    content: "\f226";
    }
    .fa-mars-double:before {
    content: "\f227";
    }
    .fa-venus-mars:before {
    content: "\f228";
    }
    .fa-mars-stroke:before {
    content: "\f229";
    }
    .fa-mars-stroke-v:before {
    content: "\f22a";
    }
    .fa-mars-stroke-h:before {
    content: "\f22b";
    }
    .fa-neuter:before {
    content: "\f22c";
    }
    .fa-genderless:before {
    content: "\f22d";
    }
    .fa-facebook-official:before {
    content: "\f230";
    }
    .fa-pinterest-p:before {
    content: "\f231";
    }
    .fa-whatsapp:before {
    content: "\f232";
    }
    .fa-server:before {
    content: "\f233";
    }
    .fa-user-plus:before {
    content: "\f234";
    }
    .fa-user-times:before {
    content: "\f235";
    }
    .fa-hotel:before,
    .fa-bed:before {
    content: "\f236";
    }
    .fa-viacoin:before {
    content: "\f237";
    }
    .fa-train:before {
    content: "\f238";
    }
    .fa-subway:before {
    content: "\f239";
    }
    .fa-medium:before {
    content: "\f23a";
    }
    .fa-yc:before,
    .fa-y-combinator:before {
    content: "\f23b";
    }
    .fa-optin-monster:before {
    content: "\f23c";
    }
    .fa-opencart:before {
    content: "\f23d";
    }
    .fa-expeditedssl:before {
    content: "\f23e";
    }
    .fa-battery-4:before,
    .fa-battery:before,
    .fa-battery-full:before {
    content: "\f240";
    }
    .fa-battery-3:before,
    .fa-battery-three-quarters:before {
    content: "\f241";
    }
    .fa-battery-2:before,
    .fa-battery-half:before {
    content: "\f242";
    }
    .fa-battery-1:before,
    .fa-battery-quarter:before {
    content: "\f243";
    }
    .fa-battery-0:before,
    .fa-battery-empty:before {
    content: "\f244";
    }
    .fa-mouse-pointer:before {
    content: "\f245";
    }
    .fa-i-cursor:before {
    content: "\f246";
    }
    .fa-object-group:before {
    content: "\f247";
    }
    .fa-object-ungroup:before {
    content: "\f248";
    }
    .fa-sticky-note:before {
    content: "\f249";
    }
    .fa-sticky-note-o:before {
    content: "\f24a";
    }
    .fa-cc-jcb:before {
    content: "\f24b";
    }
    .fa-cc-diners-club:before {
    content: "\f24c";
    }
    .fa-clone:before {
    content: "\f24d";
    }
    .fa-balance-scale:before {
    content: "\f24e";
    }
    .fa-hourglass-o:before {
    content: "\f250";
    }
    .fa-hourglass-1:before,
    .fa-hourglass-start:before {
    content: "\f251";
    }
    .fa-hourglass-2:before,
    .fa-hourglass-half:before {
    content: "\f252";
    }
    .fa-hourglass-3:before,
    .fa-hourglass-end:before {
    content: "\f253";
    }
    .fa-hourglass:before {
    content: "\f254";
    }
    .fa-hand-grab-o:before,
    .fa-hand-rock-o:before {
    content: "\f255";
    }
    .fa-hand-stop-o:before,
    .fa-hand-paper-o:before {
    content: "\f256";
    }
    .fa-hand-scissors-o:before {
    content: "\f257";
    }
    .fa-hand-lizard-o:before {
    content: "\f258";
    }
    .fa-hand-spock-o:before {
    content: "\f259";
    }
    .fa-hand-pointer-o:before {
    content: "\f25a";
    }
    .fa-hand-peace-o:before {
    content: "\f25b";
    }
    .fa-trademark:before {
    content: "\f25c";
    }
    .fa-registered:before {
    content: "\f25d";
    }
    .fa-creative-commons:before {
    content: "\f25e";
    }
    .fa-gg:before {
    content: "\f260";
    }
    .fa-gg-circle:before {
    content: "\f261";
    }
    .fa-tripadvisor:before {
    content: "\f262";
    }
    .fa-odnoklassniki:before {
    content: "\f263";
    }
    .fa-odnoklassniki-square:before {
    content: "\f264";
    }
    .fa-get-pocket:before {
    content: "\f265";
    }
    .fa-wikipedia-w:before {
    content: "\f266";
    }
    .fa-safari:before {
    content: "\f267";
    }
    .fa-chrome:before {
    content: "\f268";
    }
    .fa-firefox:before {
    content: "\f269";
    }
    .fa-opera:before {
    content: "\f26a";
    }
    .fa-internet-explorer:before {
    content: "\f26b";
    }
    .fa-tv:before,
    .fa-television:before {
    content: "\f26c";
    }
    .fa-contao:before {
    content: "\f26d";
    }
    .fa-500px:before {
    content: "\f26e";
    }
    .fa-amazon:before {
    content: "\f270";
    }
    .fa-calendar-plus-o:before {
    content: "\f271";
    }
    .fa-calendar-minus-o:before {
    content: "\f272";
    }
    .fa-calendar-times-o:before {
    content: "\f273";
    }
    .fa-calendar-check-o:before {
    content: "\f274";
    }
    .fa-industry:before {
    content: "\f275";
    }
    .fa-map-pin:before {
    content: "\f276";
    }
    .fa-map-signs:before {
    content: "\f277";
    }
    .fa-map-o:before {
    content: "\f278";
    }
    .fa-map:before {
    content: "\f279";
    }
    .fa-commenting:before {
    content: "\f27a";
    }
    .fa-commenting-o:before {
    content: "\f27b";
    }
    .fa-houzz:before {
    content: "\f27c";
    }
    .fa-vimeo:before {
    content: "\f27d";
    }
    .fa-black-tie:before {
    content: "\f27e";
    }
    .fa-fonticons:before {
    content: "\f280";
    }
    .fa-reddit-alien:before {
    content: "\f281";
    }
    .fa-edge:before {
    content: "\f282";
    }
    .fa-credit-card-alt:before {
    content: "\f283";
    }
    .fa-codiepie:before {
    content: "\f284";
    }
    .fa-modx:before {
    content: "\f285";
    }
    .fa-fort-awesome:before {
    content: "\f286";
    }
    .fa-usb:before {
    content: "\f287";
    }
    .fa-product-hunt:before {
    content: "\f288";
    }
    .fa-mixcloud:before {
    content: "\f289";
    }
    .fa-scribd:before {
    content: "\f28a";
    }
    .fa-pause-circle:before {
    content: "\f28b";
    }
    .fa-pause-circle-o:before {
    content: "\f28c";
    }
    .fa-stop-circle:before {
    content: "\f28d";
    }
    .fa-stop-circle-o:before {
    content: "\f28e";
    }
    .fa-shopping-bag:before {
    content: "\f290";
    }
    .fa-shopping-basket:before {
    content: "\f291";
    }
    .fa-hashtag:before {
    content: "\f292";
    }
    .fa-bluetooth:before {
    content: "\f293";
    }
    .fa-bluetooth-b:before {
    content: "\f294";
    }
    .fa-percent:before {
    content: "\f295";
    }
    .fa-gitlab:before {
    content: "\f296";
    }
    .fa-wpbeginner:before {
    content: "\f297";
    }
    .fa-wpforms:before {
    content: "\f298";
    }
    .fa-envira:before {
    content: "\f299";
    }
    .fa-universal-access:before {
    content: "\f29a";
    }
    .fa-wheelchair-alt:before {
    content: "\f29b";
    }
    .fa-question-circle-o:before {
    content: "\f29c";
    }
    .fa-blind:before {
    content: "\f29d";
    }
    .fa-audio-description:before {
    content: "\f29e";
    }
    .fa-volume-control-phone:before {
    content: "\f2a0";
    }
    .fa-braille:before {
    content: "\f2a1";
    }
    .fa-assistive-listening-systems:before {
    content: "\f2a2";
    }
    .fa-asl-interpreting:before,
    .fa-american-sign-language-interpreting:before {
    content: "\f2a3";
    }
    .fa-deafness:before,
    .fa-hard-of-hearing:before,
    .fa-deaf:before {
    content: "\f2a4";
    }
    .fa-glide:before {
    content: "\f2a5";
    }
    .fa-glide-g:before {
    content: "\f2a6";
    }
    .fa-signing:before,
    .fa-sign-language:before {
    content: "\f2a7";
    }
    .fa-low-vision:before {
    content: "\f2a8";
    }
    .fa-viadeo:before {
    content: "\f2a9";
    }
    .fa-viadeo-square:before {
    content: "\f2aa";
    }
    .fa-snapchat:before {
    content: "\f2ab";
    }
    .fa-snapchat-ghost:before {
    content: "\f2ac";
    }
    .fa-snapchat-square:before {
    content: "\f2ad";
    }
    .fa-pied-piper:before {
    content: "\f2ae";
    }
    .fa-first-order:before {
    content: "\f2b0";
    }
    .fa-yoast:before {
    content: "\f2b1";
    }
    .fa-themeisle:before {
    content: "\f2b2";
    }
    .fa-google-plus-circle:before,
    .fa-google-plus-official:before {
    content: "\f2b3";
    }
    .fa-fa:before,
    .fa-font-awesome:before {
    content: "\f2b4";
    }
    .fa-handshake-o:before {
    content: "\f2b5";
    }
    .fa-envelope-open:before {
    content: "\f2b6";
    }
    .fa-envelope-open-o:before {
    content: "\f2b7";
    }
    .fa-linode:before {
    content: "\f2b8";
    }
    .fa-address-book:before {
    content: "\f2b9";
    }
    .fa-address-book-o:before {
    content: "\f2ba";
    }
    .fa-vcard:before,
    .fa-address-card:before {
    content: "\f2bb";
    }
    .fa-vcard-o:before,
    .fa-address-card-o:before {
    content: "\f2bc";
    }
    .fa-user-circle:before {
    content: "\f2bd";
    }
    .fa-user-circle-o:before {
    content: "\f2be";
    }
    .fa-user-o:before {
    content: "\f2c0";
    }
    .fa-id-badge:before {
    content: "\f2c1";
    }
    .fa-drivers-license:before,
    .fa-id-card:before {
    content: "\f2c2";
    }
    .fa-drivers-license-o:before,
    .fa-id-card-o:before {
    content: "\f2c3";
    }
    .fa-quora:before {
    content: "\f2c4";
    }
    .fa-free-code-camp:before {
    content: "\f2c5";
    }
    .fa-telegram:before {
    content: "\f2c6";
    }
    .fa-thermometer-4:before,
    .fa-thermometer:before,
    .fa-thermometer-full:before {
    content: "\f2c7";
    }
    .fa-thermometer-3:before,
    .fa-thermometer-three-quarters:before {
    content: "\f2c8";
    }
    .fa-thermometer-2:before,
    .fa-thermometer-half:before {
    content: "\f2c9";
    }
    .fa-thermometer-1:before,
    .fa-thermometer-quarter:before {
    content: "\f2ca";
    }
    .fa-thermometer-0:before,
    .fa-thermometer-empty:before {
    content: "\f2cb";
    }
    .fa-shower:before {
    content: "\f2cc";
    }
    .fa-bathtub:before,
    .fa-s15:before,
    .fa-bath:before {
    content: "\f2cd";
    }
    .fa-podcast:before {
    content: "\f2ce";
    }
    .fa-window-maximize:before {
    content: "\f2d0";
    }
    .fa-window-minimize:before {
    content: "\f2d1";
    }
    .fa-window-restore:before {
    content: "\f2d2";
    }
    .fa-times-rectangle:before,
    .fa-window-close:before {
    content: "\f2d3";
    }
    .fa-times-rectangle-o:before,
    .fa-window-close-o:before {
    content: "\f2d4";
    }
    .fa-bandcamp:before {
    content: "\f2d5";
    }
    .fa-grav:before {
    content: "\f2d6";
    }
    .fa-etsy:before {
    content: "\f2d7";
    }
    .fa-imdb:before {
    content: "\f2d8";
    }
    .fa-ravelry:before {
    content: "\f2d9";
    }
    .fa-eercast:before {
    content: "\f2da";
    }
    .fa-microchip:before {
    content: "\f2db";
    }
    .fa-snowflake-o:before {
    content: "\f2dc";
    }
    .fa-superpowers:before {
    content: "\f2dd";
    }
    .fa-wpexplorer:before {
    content: "\f2de";
    }
    .fa-meetup:before {
    content: "\f2e0";
    }
    .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    }
    .sr-only-focusable:active,
    .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    }
    
    .rateit {
    display: -moz-inline-box;
    display: inline-block;
    position: relative;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    }
    
    .rateit .rateit-range {
    position: relative;
    display: -moz-inline-box;
    display: inline-block;
    background: url(../images/star.gif);
    height: 16px;
    outline: none;
    }
    
    .rateit .rateit-range * {
    display: block;
    }
    
    /* for IE 6 */
    * html .rateit, * html .rateit .rateit-range {
    display: inline;
    }
    
    /* for IE 7 */
    * + html .rateit, * + html .rateit .rateit-range {
    display: inline;
    }
    
    .rateit .rateit-hover, .rateit .rateit-selected {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    }
    
    .rateit .rateit-hover-rtl, .rateit .rateit-selected-rtl {
    left: auto;
    right: 0;
    }
    
    .rateit .rateit-hover {
    background: url(../images/star.gif) left -32px;
    color: rgb(239, 197, 41);
    }
    
    .rateit .rateit-hover-rtl {
    background-position: right -32px;
    }
    
    .rateit .rateit-selected {
    background: url(../images/star.gif) left -16px;
    color: rgb(191,66,66);
    }
    
    .rateit .rateit-selected-rtl {
    background-position: right -16px;
    }
    
    .rateit .rateit-preset {
    background: url(../images/star.gif) left -48px;
    color: rgb(239, 107, 34);
    }
    
    .rateit .rateit-preset-rtl {
    background: url(../images/star.gif) right -48px;
    }
    
    .rateit button.rateit-reset {
    background: url(../images/delete.gif) 0 0;
    width: 16px;
    height: 16px;
    display: -moz-inline-box;
    display: inline-block;
    float: left;
    outline: none;
    border: none;
    padding: 0;
    }
    
    .rateit .rateit-reset span {
    display: none;
    }
    
    .rateit button.rateit-reset:hover, .rateit button.rateit-reset:focus {
    background-position: 0 -16px;
    }
    
    
    .rateit-font {
    font-size: 24px;
    line-height: 1em;
    }
    
    .rateit-font .rateit-range {
    background: none;
    height: auto;
    }
    
    .rateit-font .rateit-empty {
    color: #ccc;
    }
    
    .rateit-font .rateit-range > div, .rateit-font .rateit-range > span {
    background: none;
    overflow: hidden;
    cursor: default;
    }
    
    .rateit.rateit-font .rateit-reset {
    font-size: inherit;
    background: none;
    width: 0.6em;
    height: 0.6em;
    margin-top: 0.2em;
    background: gray;
    border-radius: 50%;
    position: relative;
    }
    
    .rateit.rateit-font .rateit-reset span {
    display: block;
    font-weight: bold;
    color: white;
    height: calc(50% - 0.045em);
    top: 0;
    position: absolute;
    border-bottom: 0.09em solid white;
    width: 72%;
    margin-left: 14%;
    }
    
    
    .rateit.rateit-font .rateit-reset:hover, .rateit.rateit-font button.rateit-reset:focus {
    background: #e6574b; /* Old browsers */
    background: radial-gradient(ellipse at center, #e6574b 55%,#f6836b 77%,#f9d3cc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    background-position: 0 0;
    }
    
    /* Compatibility styles for frameworks like bootstrap, foundation e.t.c */
    .xzoom-source img, .xzoom-preview img, .xzoom-lens img {
    display: block;
    max-width: none;
    max-height: none;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
    }
    /* --------------- */
    
    /* xZoom Styles below */
    .xzoom-container {
    display: inline-block;
    }
    
    .xzoom-thumbs {
    text-align: center;
    margin-bottom: 10px;
    }
    
    .xzoom {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    }
    .xzoom2, .xzoom3, .xzoom4, .xzoom5 {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    }
    
    /* Thumbs */
    .xzoom-gallery, .xzoom-gallery2, .xzoom-gallery3, .xzoom-gallery4, .xzoom-gallery5 {
    border: 1px solid #cecece;
    margin-left: 5px;
    margin-bottom: 10px;
    }
    
    .xzoom-source, .xzoom-hidden {
    display: block;
    position: static;
    float: none;
    clear: both;
    }
    
    /* Everything out of border is hidden */
    .xzoom-hidden {
    overflow: hidden;
    }
    
    /* Preview */
    .xzoom-preview {
    border: 1px solid #888;
    background: #2f4f4f;
    box-shadow: -0px -0px 10px rgba(0,0,0,0.50);
    }
    
    /* Lens */
    .xzoom-lens {
    border: 1px solid #555;
    box-shadow: -0px -0px 10px rgba(0,0,0,0.50);
    cursor: crosshair;
    }
    
    /* Loading */
    .xzoom-loading {
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 100%;
    opacity: .7;
    background: url(../images/xloading.gif);
    width: 48px;
    height: 48px;
    }
    
    /* Additional class that applied to thumb when it is active */
    .xactive {
    -webkit-box-shadow: 0px 0px 3px 0px rgba(74,169,210,1);
    -moz-box-shadow: 0px 0px 3px 0px rgba(74,169,210,1);
    box-shadow: 0px 0px 3px 0px rgba(74,169,210,1);
    border: 1px solid #4aaad2;
    }
    
    /* Caption */
    .xzoom-caption {
    position: absolute;
    bottom: -43px;
    left: 0;
    background: #000;
    width: 100%;
    text-align: left;
    }
    
    .xzoom-caption span {
    color: #fff;
    font-family: Arial, sans-serif;
    display: block;
    font-size: 0.75em;
    font-weight: bold;
    padding: 10px;
    }
    
    /**
    Ion.RangeSlider, 2.3.0
    © Denis Ineshin, 2010 - 2018, IonDen.com
    Build date: 2018-12-12 00:07:25
    */
    .irs {
    position: relative;
    display: block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 12px;
    }
    
    .irs-line {
    position: relative;
    display: block;
    overflow: hidden;
    outline: none !important;
    }
    
    .irs-bar {
    position: absolute;
    display: block;
    left: 0;
    width: 0;
    }
    
    .irs-shadow {
    position: absolute;
    display: none;
    left: 0;
    width: 0;
    }
    
    .irs-handle {
    position: absolute;
    display: block;
    box-sizing: border-box;
    cursor: default;
    z-index: 1;
    }
    
    .irs-handle.type_last {
    z-index: 2;
    }
    
    .irs-min,
    .irs-max {
    position: absolute;
    display: block;
    cursor: default;
    }
    
    .irs-min {
    left: 0;
    }
    
    .irs-max {
    right: 0;
    }
    
    .irs-from,
    .irs-to,
    .irs-single {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    cursor: default;
    white-space: nowrap;
    }
    
    .irs-grid {
    position: absolute;
    display: none;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    }
    
    .irs-with-grid .irs-grid {
    display: block;
    }
    
    .irs-grid-pol {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 8px;
    background: #000;
    }
    
    .irs-grid-pol.small {
    height: 4px;
    }
    
    .irs-grid-text {
    position: absolute;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    text-align: center;
    font-size: 9px;
    line-height: 9px;
    padding: 0 3px;
    color: #000;
    }
    
    .irs-disable-mask {
    position: absolute;
    display: block;
    top: 0;
    left: -1%;
    width: 102%;
    height: 100%;
    cursor: default;
    background: rgba(0, 0, 0, 0);
    z-index: 2;
    }
    
    .lt-ie9 .irs-disable-mask {
    background: #000;
    filter: alpha(opacity=0);
    cursor: not-allowed;
    }
    
    .irs-disabled {
    opacity: 0.4;
    }
    
    .irs-hidden-input {
    position: absolute !important;
    display: block !important;
    top: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    outline: none !important;
    z-index: -9999 !important;
    background: none !important;
    border-style: solid !important;
    border-color: transparent !important;
    }
    
    .irs--flat {
    height: 40px;
    }
    
    .irs--flat.irs-with-grid {
    height: 60px;
    }
    
    .irs--flat .irs-line {
    top: 25px;
    height: 12px;
    background-color: #e1e4e9;
    border-radius: 4px;
    }
    
    .irs--flat .irs-bar {
    top: 25px;
    height: 12px;
    background-color: #ed5565;
    }
    
    .irs--flat .irs-bar--single {
    border-radius: 4px 0 0 4px;
    }
    
    .irs--flat .irs-shadow {
    height: 1px;
    bottom: 16px;
    background-color: #e1e4e9;
    }
    
    .irs--flat .irs-handle {
    top: 22px;
    width: 16px;
    height: 18px;
    background-color: transparent;
    }
    
    .irs--flat .irs-handle > i:first-child {
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
    background-color: #da4453;
    }
    
    .irs--flat .irs-handle.state_hover > i:first-child,
    .irs--flat .irs-handle:hover > i:first-child {
    background-color: #a43540;
    }
    
    .irs--flat .irs-min,
    .irs--flat .irs-max {
    top: 0;
    padding: 1px 3px;
    color: #999;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    background-color: #e1e4e9;
    border-radius: 4px;
    }
    
    .irs--flat .irs-from,
    .irs--flat .irs-to,
    .irs--flat .irs-single {
    color: white;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background-color: #ed5565;
    border-radius: 4px;
    }
    
    .irs--flat .irs-from:before,
    .irs--flat .irs-to:before,
    .irs--flat .irs-single:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #ed5565;
    }
    
    .irs--flat .irs-grid-pol {
    background-color: #e1e4e9;
    }
    
    .irs--flat .irs-grid-text {
    color: #999;
    }
    
    .irs--big {
    height: 55px;
    }
    
    .irs--big.irs-with-grid {
    height: 70px;
    }
    
    .irs--big .irs-line {
    top: 33px;
    height: 12px;
    background-color: white;
    background: linear-gradient(to bottom, #ddd -50%, white 150%);
    border: 1px solid #ccc;
    border-radius: 12px;
    }
    
    .irs--big .irs-bar {
    top: 33px;
    height: 12px;
    background-color: #92bce0;
    border: 1px solid #428bca;
    background: linear-gradient(to bottom, #ffffff 0%, #428bca 30%, #b9d4ec 100%);
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
    }
    
    .irs--big .irs-bar--single {
    border-radius: 12px 0 0 12px;
    }
    
    .irs--big .irs-shadow {
    height: 1px;
    bottom: 16px;
    background-color: rgba(66, 139, 202, 0.5);
    }
    
    .irs--big .irs-handle {
    top: 25px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background-color: #cbcfd5;
    background: linear-gradient(to bottom, white 0%, #B4B9BE 30%, white 100%);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px white;
    border-radius: 30px;
    }
    
    .irs--big .irs-handle.state_hover,
    .irs--big .irs-handle:hover {
    border-color: rgba(0, 0, 0, 0.45);
    background-color: #939ba7;
    background: linear-gradient(to bottom, white 0%, #919BA5 30%, white 100%);
    }
    
    .irs--big .irs-min,
    .irs--big .irs-max {
    top: 0;
    padding: 1px 5px;
    color: white;
    text-shadow: none;
    background-color: #9f9f9f;
    border-radius: 3px;
    }
    
    .irs--big .irs-from,
    .irs--big .irs-to,
    .irs--big .irs-single {
    color: white;
    text-shadow: none;
    padding: 1px 5px;
    background-color: #428bca;
    background: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
    border-radius: 3px;
    }
    
    .irs--big .irs-grid-pol {
    background-color: #428bca;
    }
    
    .irs--big .irs-grid-text {
    color: #428bca;
    }
    
    .irs--modern {
    height: 55px;
    }
    
    .irs--modern.irs-with-grid {
    height: 55px;
    }
    
    .irs--modern .irs-line {
    top: 25px;
    height: 5px;
    background-color: #d1d6e0;
    background: linear-gradient(to bottom, #e0e4ea 0%, #d1d6e0 100%);
    border: 1px solid #a3adc1;
    border-bottom-width: 0;
    border-radius: 5px;
    }
    
    .irs--modern .irs-bar {
    top: 25px;
    height: 5px;
    background: #20b426;
    background: linear-gradient(to bottom, #20b426 0%, #18891d 100%);
    }
    
    .irs--modern .irs-bar--single {
    border-radius: 5px 0 0 5px;
    }
    
    .irs--modern .irs-shadow {
    height: 1px;
    bottom: 21px;
    background-color: rgba(209, 214, 224, 0.5);
    }
    
    .irs--modern .irs-handle {
    top: 37px;
    width: 12px;
    height: 13px;
    border: 1px solid #a3adc1;
    border-top-width: 0;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 3px 3px;
    }
    
    .irs--modern .irs-handle > i:nth-child(1) {
    position: absolute;
    display: block;
    top: -4px;
    left: 1px;
    width: 6px;
    height: 6px;
    border: 1px solid #a3adc1;
    background: white;
    transform: rotate(45deg);
    }
    
    .irs--modern .irs-handle > i:nth-child(2) {
    position: absolute;
    display: block;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 10px;
    height: 12px;
    background: #e9e6e6;
    background: linear-gradient(to bottom, white 0%, #e9e6e6 100%);
    border-radius: 0 0 3px 3px;
    }
    
    .irs--modern .irs-handle > i:nth-child(3) {
    position: absolute;
    display: block;
    box-sizing: border-box;
    top: 3px;
    left: 3px;
    width: 4px;
    height: 5px;
    border-left: 1px solid #a3adc1;
    border-right: 1px solid #a3adc1;
    }
    
    .irs--modern .irs-handle.state_hover,
    .irs--modern .irs-handle:hover {
    border-color: #7685a2;
    background: #c3c7cd;
    background: linear-gradient(to bottom, #ffffff 0%, #919ba5 30%, #ffffff 100%);
    }
    
    .irs--modern .irs-handle.state_hover > i:nth-child(1),
    .irs--modern .irs-handle:hover > i:nth-child(1) {
    border-color: #7685a2;
    }
    
    .irs--modern .irs-handle.state_hover > i:nth-child(3),
    .irs--modern .irs-handle:hover > i:nth-child(3) {
    border-color: #48536a;
    }
    
    .irs--modern .irs-min,
    .irs--modern .irs-max {
    top: 0;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    color: white;
    background-color: #d1d6e0;
    border-radius: 5px;
    }
    
    .irs--modern .irs-from,
    .irs--modern .irs-to,
    .irs--modern .irs-single {
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background-color: #20b426;
    color: white;
    border-radius: 5px;
    }
    
    .irs--modern .irs-from:before,
    .irs--modern .irs-to:before,
    .irs--modern .irs-single:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #20b426;
    }
    
    .irs--modern .irs-grid {
    height: 25px;
    }
    
    .irs--modern .irs-grid-pol {
    background-color: #dedede;
    }
    
    .irs--modern .irs-grid-text {
    color: silver;
    font-size: 13px;
    }
    
    .irs--sharp {
    height: 50px;
    font-size: 12px;
    line-height: 1;
    }
    
    .irs--sharp.irs-with-grid {
    height: 57px;
    }
    
    .irs--sharp .irs-line {
    top: 30px;
    height: 2px;
    background-color: black;
    border-radius: 2px;
    }
    
    .irs--sharp .irs-bar {
    top: 30px;
    height: 2px;
    background-color: #ee22fa;
    }
    
    .irs--sharp .irs-bar--single {
    border-radius: 2px 0 0 2px;
    }
    
    .irs--sharp .irs-shadow {
    height: 1px;
    bottom: 21px;
    background-color: rgba(0, 0, 0, 0.5);
    }
    
    .irs--sharp .irs-handle {
    top: 25px;
    width: 10px;
    height: 10px;
    background-color: #a804b2;
    }
    
    .irs--sharp .irs-handle > i:first-child {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: #a804b2;
    }
    
    .irs--sharp .irs-handle.state_hover,
    .irs--sharp .irs-handle:hover {
    background-color: black;
    }
    
    .irs--sharp .irs-handle.state_hover > i:first-child,
    .irs--sharp .irs-handle:hover > i:first-child {
    border-top-color: black;
    }
    
    .irs--sharp .irs-min,
    .irs--sharp .irs-max {
    color: white;
    font-size: 14px;
    line-height: 1;
    top: 0;
    padding: 3px 4px;
    opacity: 0.4;
    background-color: #a804b2;
    border-radius: 2px;
    }
    
    .irs--sharp .irs-from,
    .irs--sharp .irs-to,
    .irs--sharp .irs-single {
    font-size: 14px;
    line-height: 1;
    text-shadow: none;
    padding: 3px 4px;
    background-color: #a804b2;
    color: white;
    border-radius: 2px;
    }
    
    .irs--sharp .irs-from:before,
    .irs--sharp .irs-to:before,
    .irs--sharp .irs-single:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #a804b2;
    }
    
    .irs--sharp .irs-grid {
    height: 25px;
    }
    
    .irs--sharp .irs-grid-pol {
    background-color: #dedede;
    }
    
    .irs--sharp .irs-grid-text {
    color: silver;
    font-size: 13px;
    }
    
    .irs--round {
    height: 50px;
    }
    
    .irs--round.irs-with-grid {
    height: 65px;
    }
    
    .irs--round .irs-line {
    top: 36px;
    height: 4px;
    background-color: #dee4ec;
    border-radius: 4px;
    }
    
    .irs--round .irs-bar {
    top: 36px;
    height: 4px;
    background-color: #006cfa;
    }
    
    .irs--round .irs-bar--single {
    border-radius: 4px 0 0 4px;
    }
    
    .irs--round .irs-shadow {
    height: 4px;
    bottom: 21px;
    background-color: rgba(222, 228, 236, 0.5);
    }
    
    .irs--round .irs-handle {
    top: 26px;
    width: 24px;
    height: 24px;
    border: 4px solid #006cfa;
    background-color: white;
    border-radius: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 255, 0.3);
    }
    
    .irs--round .irs-handle.state_hover,
    .irs--round .irs-handle:hover {
    background-color: #f0f6ff;
    }
    
    .irs--round .irs-min,
    .irs--round .irs-max {
    color: #333;
    font-size: 14px;
    line-height: 1;
    top: 0;
    padding: 3px 5px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    }
    
    .irs--round .irs-from,
    .irs--round .irs-to,
    .irs--round .irs-single {
    font-size: 14px;
    line-height: 1;
    text-shadow: none;
    padding: 3px 5px;
    background-color: #006cfa;
    color: white;
    border-radius: 4px;
    }
    
    .irs--round .irs-from:before,
    .irs--round .irs-to:before,
    .irs--round .irs-single:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #006cfa;
    }
    
    .irs--round .irs-grid {
    height: 25px;
    }
    
    .irs--round .irs-grid-pol {
    background-color: #dedede;
    }
    
    .irs--round .irs-grid-text {
    color: silver;
    font-size: 13px;
    }
    
    .irs--square {
    height: 50px;
    }
    
    .irs--square.irs-with-grid {
    height: 60px;
    }
    
    .irs--square .irs-line {
    top: 31px;
    height: 4px;
    background-color: #dedede;
    }
    
    .irs--square .irs-bar {
    top: 31px;
    height: 4px;
    background-color: black;
    }
    
    .irs--square .irs-shadow {
    height: 2px;
    bottom: 21px;
    background-color: #dedede;
    }
    
    .irs--square .irs-handle {
    top: 25px;
    width: 16px;
    height: 16px;
    border: 3px solid black;
    background-color: white;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    }
    
    .irs--square .irs-handle.state_hover,
    .irs--square .irs-handle:hover {
    background-color: #f0f6ff;
    }
    
    .irs--square .irs-min,
    .irs--square .irs-max {
    color: #333;
    font-size: 14px;
    line-height: 1;
    top: 0;
    padding: 3px 5px;
    background-color: rgba(0, 0, 0, 0.1);
    }
    
    .irs--square .irs-from,
    .irs--square .irs-to,
    .irs--square .irs-single {
    font-size: 14px;
    line-height: 1;
    text-shadow: none;
    padding: 3px 5px;
    background-color: black;
    color: white;
    }
    
    .irs--square .irs-grid {
    height: 25px;
    }
    
    .irs--square .irs-grid-pol {
    background-color: #dedede;
    }
    
    .irs--square .irs-grid-text {
    color: silver;
    font-size: 11px;
    }
    
    .br-theme-css-stars .br-widget {
    white-space: nowrap;
    text-align: center;
    direction: ltr;
    }
    
    .br-theme-css-stars .br-widget a {
    font-family: 'FontAwesome';
    text-decoration: none;
    height: 18px;
    width: 18px;
    font-size: 26px;
    line-height: 1;
    margin-right: 4px;
    }
    
    .br-theme-css-stars .br-widget a:after {
    content: "\f005";
    color: #d2d2d2;
    }
    
    .br-theme-css-stars .br-widget a.br-active:after {
    content: "\f005";
    color: #fbb100;
    }
    
    .br-theme-css-stars .br-widget a.br-selected:after {
    content: "\f005";
    color: #fbb100;
    }
    
    .br-theme-css-stars .br-widget a.br-fractional:after {
    content: '\f005';
    color: #fbb100;
    }
    
    .br-theme-css-stars .br-widget .br-current-rating {
    display: none;
    }
    
    .br-theme-css-stars .br-readonly a {
    cursor: default;
    }
    
    @media print {
    .br-theme-css-stars .br-widget a:after {
    content: "\2606";
    color: black;
    }
    
    .br-theme-css-stars .br-widget a.br-active:after,
    .br-theme-css-stars .br-widget a.br-selected:after {
    content: "\2605";
    color: black;
    }
    }
    
    /* required styles */
    
    .leaflet-pane,
    .leaflet-tile,
    .leaflet-marker-icon,
    .leaflet-marker-shadow,
    .leaflet-tile-container,
    .leaflet-pane > svg,
    .leaflet-pane > canvas,
    .leaflet-zoom-box,
    .leaflet-image-layer,
    .leaflet-layer {
    position: absolute;
    left: 0;
    top: 0;
    }
    .leaflet-container {
    overflow: hidden;
    }
    .leaflet-tile,
    .leaflet-marker-icon,
    .leaflet-marker-shadow {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    }
    /* Prevents IE11 from highlighting tiles in blue */
    .leaflet-tile::selection {
    background: transparent;
    }
    /* Safari renders non-retina tile on retina better with this, but Chrome is worse */
    .leaflet-safari .leaflet-tile {
    image-rendering: -webkit-optimize-contrast;
    }
    /* hack that prevents hw layers "stretching" when loading new tiles */
    .leaflet-safari .leaflet-tile-container {
    width: 1600px;
    height: 1600px;
    -webkit-transform-origin: 0 0;
    }
    .leaflet-marker-icon,
    .leaflet-marker-shadow {
    display: block;
    }
    /* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
    /* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
    .leaflet-container .leaflet-overlay-pane svg,
    .leaflet-container .leaflet-marker-pane img,
    .leaflet-container .leaflet-shadow-pane img,
    .leaflet-container .leaflet-tile-pane img,
    .leaflet-container img.leaflet-image-layer,
    .leaflet-container .leaflet-tile {
    max-width: none !important;
    max-height: none !important;
    }
    
    .leaflet-container.leaflet-touch-zoom {
    -ms-touch-action: pan-x pan-y;
    touch-action: pan-x pan-y;
    }
    .leaflet-container.leaflet-touch-drag {
    -ms-touch-action: pinch-zoom;
    /* Fallback for FF which doesn't support pinch-zoom */
    touch-action: none;
    touch-action: pinch-zoom;
    }
    .leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
    -ms-touch-action: none;
    touch-action: none;
    }
    .leaflet-container {
    -webkit-tap-highlight-color: transparent;
    }
    .leaflet-container a {
    -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
    }
    .leaflet-tile {
    filter: inherit;
    visibility: hidden;
    }
    .leaflet-tile-loaded {
    visibility: inherit;
    }
    .leaflet-zoom-box {
    width: 0;
    height: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 800;
    }
    /* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
    .leaflet-overlay-pane svg {
    -moz-user-select: none;
    }
    
    .leaflet-pane         { z-index: 400; }
    
    .leaflet-tile-pane    { z-index: 200; }
    .leaflet-overlay-pane { z-index: 400; }
    .leaflet-shadow-pane  { z-index: 500; }
    .leaflet-marker-pane  { z-index: 600; }
    .leaflet-tooltip-pane   { z-index: 650; }
    .leaflet-popup-pane   { z-index: 700; }
    
    .leaflet-map-pane canvas { z-index: 100; }
    .leaflet-map-pane svg    { z-index: 200; }
    
    .leaflet-vml-shape {
    width: 1px;
    height: 1px;
    }
    .lvml {
    behavior: url(#default#VML);
    display: inline-block;
    position: absolute;
    }
    
    
    /* control positioning */
    
    .leaflet-control {
    position: relative;
    z-index: 800;
    pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
    pointer-events: auto;
    }
    .leaflet-top,
    .leaflet-bottom {
    position: absolute;
    z-index: 1000;
    pointer-events: none;
    }
    .leaflet-top {
    top: 0;
    }
    .leaflet-right {
    right: 0;
    }
    .leaflet-bottom {
    bottom: 0;
    }
    .leaflet-left {
    left: 0;
    }
    .leaflet-control {
    float: left;
    clear: both;
    }
    .leaflet-right .leaflet-control {
    float: right;
    }
    .leaflet-top .leaflet-control {
    margin-top: 10px;
    }
    .leaflet-bottom .leaflet-control {
    margin-bottom: 10px;
    }
    .leaflet-left .leaflet-control {
    margin-left: 10px;
    }
    .leaflet-right .leaflet-control {
    margin-right: 10px;
    }
    
    
    /* zoom and fade animations */
    
    .leaflet-fade-anim .leaflet-tile {
    will-change: opacity;
    }
    .leaflet-fade-anim .leaflet-popup {
    opacity: 0;
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    }
    .leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
    opacity: 1;
    }
    .leaflet-zoom-animated {
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    }
    .leaflet-zoom-anim .leaflet-zoom-animated {
    will-change: transform;
    }
    .leaflet-zoom-anim .leaflet-zoom-animated {
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
    -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
    transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
    }
    .leaflet-zoom-anim .leaflet-tile,
    .leaflet-pan-anim .leaflet-tile {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    }
    
    .leaflet-zoom-anim .leaflet-zoom-hide {
    visibility: hidden;
    }
    
    
    /* cursors */
    
    .leaflet-interactive {
    cursor: pointer;
    }
    .leaflet-grab {
    cursor: -webkit-grab;
    cursor:    -moz-grab;
    cursor:         grab;
    }
    .leaflet-crosshair,
    .leaflet-crosshair .leaflet-interactive {
    cursor: crosshair;
    }
    .leaflet-popup-pane,
    .leaflet-control {
    cursor: auto;
    }
    .leaflet-dragging .leaflet-grab,
    .leaflet-dragging .leaflet-grab .leaflet-interactive,
    .leaflet-dragging .leaflet-marker-draggable {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor:    -moz-grabbing;
    cursor:         grabbing;
    }
    
    /* marker & overlays interactivity */
    .leaflet-marker-icon,
    .leaflet-marker-shadow,
    .leaflet-image-layer,
    .leaflet-pane > svg path,
    .leaflet-tile-container {
    pointer-events: none;
    }
    
    .leaflet-marker-icon.leaflet-interactive,
    .leaflet-image-layer.leaflet-interactive,
    .leaflet-pane > svg path.leaflet-interactive,
    svg.leaflet-image-layer.leaflet-interactive path {
    pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
    pointer-events: auto;
    }
    
    /* visual tweaks */
    
    .leaflet-container {
    background: #ddd;
    outline: 0;
    }
    .leaflet-container a {
    color: #0078A8;
    }
    .leaflet-container a.leaflet-active {
    outline: 2px solid orange;
    }
    .leaflet-zoom-box {
    border: 2px dotted #38f;
    background: rgba(255,255,255,0.5);
    }
    
    
    /* general typography */
    .leaflet-container {
    font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
    }
    
    
    /* general toolbar styles */
    
    .leaflet-bar {
    box-shadow: 0 1px 5px rgba(0,0,0,0.65);
    border-radius: 4px;
    }
    .leaflet-bar a,
    .leaflet-bar a:hover {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    width: 26px;
    height: 26px;
    line-height: 26px;
    display: block;
    text-align: center;
    text-decoration: none;
    color: black;
    }
    .leaflet-bar a,
    .leaflet-control-layers-toggle {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    display: block;
    }
    .leaflet-bar a:hover {
    background-color: #f4f4f4;
    }
    .leaflet-bar a:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    }
    .leaflet-bar a:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom: none;
    }
    .leaflet-bar a.leaflet-disabled {
    cursor: default;
    background-color: #f4f4f4;
    color: #bbb;
    }
    
    .leaflet-touch .leaflet-bar a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    }
    .leaflet-touch .leaflet-bar a:first-child {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    }
    .leaflet-touch .leaflet-bar a:last-child {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    }
    
    /* zoom control */
    
    .leaflet-control-zoom-in,
    .leaflet-control-zoom-out {
    font: bold 18px 'Lucida Console', Monaco, monospace;
    text-indent: 1px;
    }
    
    .leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
    font-size: 22px;
    }
    
    
    /* layers control */
    
    .leaflet-control-layers {
    box-shadow: 0 1px 5px rgba(0,0,0,0.4);
    background: #fff;
    border-radius: 5px;
    }
    .leaflet-control-layers-toggle {
    background-image: url(../images/layers.png);
    width: 36px;
    height: 36px;
    }
    .leaflet-retina .leaflet-control-layers-toggle {
    background-image: url(../images/layers-2x.png);
    background-size: 26px 26px;
    }
    .leaflet-touch .leaflet-control-layers-toggle {
    width: 44px;
    height: 44px;
    }
    .leaflet-control-layers .leaflet-control-layers-list,
    .leaflet-control-layers-expanded .leaflet-control-layers-toggle {
    display: none;
    }
    .leaflet-control-layers-expanded .leaflet-control-layers-list {
    display: block;
    position: relative;
    }
    .leaflet-control-layers-expanded {
    padding: 6px 10px 6px 6px;
    color: #333;
    background: #fff;
    }
    .leaflet-control-layers-scrollbar {
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 5px;
    }
    .leaflet-control-layers-selector {
    margin-top: 2px;
    position: relative;
    top: 1px;
    }
    .leaflet-control-layers label {
    display: block;
    }
    .leaflet-control-layers-separator {
    height: 0;
    border-top: 1px solid #ddd;
    margin: 5px -10px 5px -6px;
    }
    
    /* Default icon URLs */
    .leaflet-default-icon-path {
    background-image: url(../images/marker-icon.png);
    }
    
    
    /* attribution and scale controls */
    
    .leaflet-container .leaflet-control-attribution {
    background: #fff;
    background: rgba(255, 255, 255, 0.7);
    margin: 0;
    }
    .leaflet-control-attribution,
    .leaflet-control-scale-line {
    padding: 0 5px;
    color: #333;
    }
    .leaflet-control-attribution a {
    text-decoration: none;
    }
    .leaflet-control-attribution a:hover {
    text-decoration: underline;
    }
    .leaflet-container .leaflet-control-attribution,
    .leaflet-container .leaflet-control-scale {
    font-size: 11px;
    }
    .leaflet-left .leaflet-control-scale {
    margin-left: 5px;
    }
    .leaflet-bottom .leaflet-control-scale {
    margin-bottom: 5px;
    }
    .leaflet-control-scale-line {
    border: 2px solid #777;
    border-top: none;
    line-height: 1.1;
    padding: 2px 5px 1px;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    
    background: #fff;
    background: rgba(255, 255, 255, 0.5);
    }
    .leaflet-control-scale-line:not(:first-child) {
    border-top: 2px solid #777;
    border-bottom: none;
    margin-top: -2px;
    }
    .leaflet-control-scale-line:not(:first-child):not(:last-child) {
    border-bottom: 2px solid #777;
    }
    
    .leaflet-touch .leaflet-control-attribution,
    .leaflet-touch .leaflet-control-layers,
    .leaflet-touch .leaflet-bar {
    box-shadow: none;
    }
    .leaflet-touch .leaflet-control-layers,
    .leaflet-touch .leaflet-bar {
    border: 2px solid rgba(0,0,0,0.2);
    background-clip: padding-box;
    }
    
    
    /* popup */
    
    .leaflet-popup {
    position: absolute;
    text-align: center;
    margin-bottom: 20px;
    }
    .leaflet-popup-content-wrapper {
    padding: 1px;
    text-align: left;
    border-radius: 12px;
    }
    .leaflet-popup-content {
    margin: 13px 19px;
    line-height: 1.4;
    }
    .leaflet-popup-content p {
    margin: 18px 0;
    }
    .leaflet-popup-tip-container {
    width: 40px;
    height: 20px;
    position: absolute;
    left: 50%;
    margin-left: -20px;
    overflow: hidden;
    pointer-events: none;
    }
    .leaflet-popup-tip {
    width: 17px;
    height: 17px;
    padding: 1px;
    
    margin: -10px auto 0;
    
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    }
    .leaflet-popup-content-wrapper,
    .leaflet-popup-tip {
    background: white;
    color: #333;
    box-shadow: 0 3px 14px rgba(0,0,0,0.4);
    }
    .leaflet-container a.leaflet-popup-close-button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 4px 0 0;
    border: none;
    text-align: center;
    width: 18px;
    height: 14px;
    font: 16px/14px Tahoma, Verdana, sans-serif;
    color: #c3c3c3;
    text-decoration: none;
    font-weight: bold;
    background: transparent;
    }
    .leaflet-container a.leaflet-popup-close-button:hover {
    color: #999;
    }
    .leaflet-popup-scrolled {
    overflow: auto;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    }
    
    .leaflet-oldie .leaflet-popup-content-wrapper {
    -ms-zoom: 1;
    }
    .leaflet-oldie .leaflet-popup-tip {
    width: 24px;
    margin: 0 auto;
    
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
    }
    .leaflet-oldie .leaflet-popup-tip-container {
    margin-top: -1px;
    }
    
    .leaflet-oldie .leaflet-control-zoom,
    .leaflet-oldie .leaflet-control-layers,
    .leaflet-oldie .leaflet-popup-content-wrapper,
    .leaflet-oldie .leaflet-popup-tip {
    border: 1px solid #999;
    }
    
    
    /* div icon */
    
    .leaflet-div-icon {
    background: #fff;
    border: 1px solid #666;
    }
    
    
    /* Tooltip */
    /* Base styles for the element that has a tooltip */
    .leaflet-tooltip {
    position: absolute;
    padding: 6px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    color: #222;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
    }
    .leaflet-tooltip.leaflet-clickable {
    cursor: pointer;
    pointer-events: auto;
    }
    .leaflet-tooltip-top:before,
    .leaflet-tooltip-bottom:before,
    .leaflet-tooltip-left:before,
    .leaflet-tooltip-right:before {
    position: absolute;
    pointer-events: none;
    border: 6px solid transparent;
    background: transparent;
    content: "";
    }
    
    /* Directions */
    
    .leaflet-tooltip-bottom {
    margin-top: 6px;
    }
    .leaflet-tooltip-top {
    margin-top: -6px;
    }
    .leaflet-tooltip-bottom:before,
    .leaflet-tooltip-top:before {
    left: 50%;
    margin-left: -6px;
    }
    .leaflet-tooltip-top:before {
    bottom: 0;
    margin-bottom: -12px;
    border-top-color: #fff;
    }
    .leaflet-tooltip-bottom:before {
    top: 0;
    margin-top: -12px;
    margin-left: -6px;
    border-bottom-color: #fff;
    }
    .leaflet-tooltip-left {
    margin-left: -6px;
    }
    .leaflet-tooltip-right {
    margin-left: 6px;
    }
    .leaflet-tooltip-left:before,
    .leaflet-tooltip-right:before {
    top: 50%;
    margin-top: -6px;
    }
    .leaflet-tooltip-left:before {
    right: 0;
    margin-right: -12px;
    border-left-color: #fff;
    }
    .leaflet-tooltip-right:before {
    left: 0;
    margin-left: -12px;
    border-right-color: #fff;
    }
    
    /* ==========================================================================
    Remodal's default mobile first theme
    ========================================================================== */
    
    
    /* Default theme styles for the background */
    
    .remodal-bg.remodal-is-opening,
    .remodal-bg.remodal-is-opened {
    filter: blur(3px);
    }
    
    
    /* Default theme styles of the overlay */
    
    .remodal-overlay {
    background: rgba(43, 46, 56, 0.9);
    }
    
    .remodal-overlay.remodal-is-opening,
    .remodal-overlay.remodal-is-closing {
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    }
    
    .remodal-overlay.remodal-is-opening {
    animation-name: remodal-overlay-opening-keyframes;
    }
    
    .remodal-overlay.remodal-is-closing {
    animation-name: remodal-overlay-closing-keyframes;
    }
    
    
    /* Default theme styles of the wrapper */
    
    .remodal-wrapper {
    padding: 10px 10px 0;
    }
    
    
    /* Default theme styles of the modal dialog */
    
    .remodal {
    box-sizing: border-box !important;
    width: 100% !important;
    margin-bottom: 10px !important;
    padding: 6px !important;
    transform: translate3d(0, 0, 0) !important;
    color: #2b2e38 !important;
    background: #fff !important;
    }
    
    .remodal.remodal-is-opening,
    .remodal.remodal-is-closing {
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    }
    
    .remodal.remodal-is-opening {
    animation-name: remodal-opening-keyframes;
    }
    
    .remodal.remodal-is-closing {
    animation-name: remodal-closing-keyframes;
    }
    
    
    /* Vertical align of the modal dialog */
    
    .remodal,
    .remodal-wrapper:after {
    vertical-align: middle;
    }
    
    
    /* Close button */
    
    .remodal-close {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: visible;
    margin: 0;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
    color: #95979c;
    border: 0;
    outline: 0;
    background: transparent;
    }
    
    .remodal-close:hover,
    .remodal-close:focus {
    color: #2b2e38;
    }
    
    
    /* Dialog buttons */
    
    .remodal-confirm,
    .remodal-cancel {
    font: inherit;
    display: inline-block;
    overflow: visible;
    min-width: 110px;
    margin: 0;
    padding: 12px 0;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    border: 0;
    outline: 0;
    }
    
    .remodal-confirm {
    color: #fff;
    background: #81c784;
    }
    
    .remodal-confirm:hover,
    .remodal-confirm:focus {
    background: #66bb6a;
    }
    
    .remodal-cancel {
    color: #fff;
    background: #e57373;
    }
    
    .remodal-cancel:hover,
    .remodal-cancel:focus {
    background: #ef5350;
    }
    
    
    /* Remove inner padding and border in Firefox 4+ for the button tag. */
    
    .remodal-confirm::-moz-focus-inner,
    .remodal-cancel::-moz-focus-inner,
    .remodal-close::-moz-focus-inner {
    padding: 0;
    border: 0;
    }
    
    
    /* Keyframes
    ========================================================================== */
    
    @keyframes remodal-opening-keyframes {
    from {
    transform: scale(1.05);
    opacity: 0;
    }
    to {
    transform: none;
    opacity: 1;
    filter: blur(0);
    }
    }
    
    @keyframes remodal-closing-keyframes {
    from {
    transform: scale(1);
    opacity: 1;
    }
    to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
    }
    }
    
    @keyframes remodal-overlay-opening-keyframes {
    from {
    opacity: 0;
    }
    to {
    opacity: 1;
    }
    }
    
    @keyframes remodal-overlay-closing-keyframes {
    from {
    opacity: 1;
    }
    to {
    opacity: 0;
    }
    }
    
    
    /* Media queries
    ========================================================================== */
    
    @media only screen and (min-width: 641px) {
    .remodal {
    max-width: 700px;
    }
    }
    
    
    /* IE8
    ========================================================================== */
    
    .lt-ie9 .remodal-overlay {
    background: #2b2e38;
    }
    
    .lt-ie9 .remodal {
    width: 700px;
    }
    /* @font-face {
    font-family: 'iransans';
    src: url("../fonts/IranSans/iransans.woff") format("woff");
    } */
    
    
    /* ////////// */
    
    
    /* body {
    font-family: 'iransans', sans-serif;
    overflow-x: hidden;
    padding-top: 0;
    background: none;
    } */
    
    
    /* ////////// */
    
    .container1 {
    direction: rtl;
    margin: 20px;
    display: flex;
    }
    
    .c-imgtext {
    display: flex;
    flex-basis: 33.3%;
    max-width: 33.3%;
    }
    
    @media screen and (max-width: 1590px) {
    .c-imgtext {
    padding: 10px;
    }
    .c-imgtext .c-view {
    margin-top: -20px;
    }
    .c-imgtext .btn-primary1 {
    width: 50%;
    }
    }
    
    @media screen and (max-width: 1428px) {
    .c-imgtext {
    padding: 10px;
    }
    .c-imgtext .c-img {
    margin: 10px;
    }
    .c-imgtext .c-content {
    padding: 2px;
    }
    .c-imgtext .c-view {
    margin-top: 15px;
    }
    .c-imgtext .btn-primary1 {
    width: 85%;
    height: 100%;
    }
    }
    
    @media screen and (max-width: 1270px) {
    .c-imgtext {
    padding: 10px;
    flex-direction: column;
    display: table;
    margin-left: auto;
    margin-right: auto;
    }
    .c-imgtext .c-img {
    margin: 10px;
    }
    .c-imgtext .c-content {
    padding: 10px;
    max-width: 100%;
    }
    .c-imgtext .c-view {
    margin: 5px;
    }
    .c-imgtext .btn-primary1 {
    width: 40%;
    height: 40px;
    margin: auto;
    }
    }
    
    @media screen and (max-width: 1031px) {
    /* ////////// */
    .container1 {
    flex-direction: column;
    }
    .c-imgtext {
    max-width: 40%;
    padding: 10px;
    margin: 10px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    }
    .c-imgtext .c-img {
    margin: 10px;
    max-width: 100%;
    padding-left: 14px;
    padding-top: 31px;
    padding-right: 15px;
    padding-bottom: 35px;
    }
    .c-imgtext .c-content {
    padding: 10px;
    max-width: 100%;
    }
    .c-imgtext .c-view {
    margin: 5px;
    }
    .c-imgtext .btn-primary1 {
    width: 50%;
    height: 40px;
    margin: auto;
    }
    }
    
    @media screen and (max-width: 857px) {
    /* ////////// */
    .container1 {
    flex-direction: column;
    }
    .c-imgtext {
    margin: 10px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    }
    .c-imgtext .c-img {
    background-color: #fff;
    box-shadow: none;
    }
    .c-imgtext .c-content {
    padding: 10px;
    flex-basis: 100%;
    max-width: 100%;
    }
    .c-imgtext .c-view {
    margin: 5px;
    }
    .c-imgtext .btn-primary1 {
    width: 50%;
    height: 40px;
    margin: auto;
    }
    }
    
    .c-img {
    border-radius: 2px;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, .4);
    }
    
    .c-img img {
    border-radius: 2px;
    }
    
    .c-content {
    display: grid;
    padding: 20px;
    }
    
    .c-date,
    .c-view {
    color: #959595;
    letter-spacing: -.7px;
    cursor: pointer
    }
    
    .c-date:hover,
    .c-view:hover,
    .c-text:hover {
    color: #f35959;
    }
    
    .c-text {
    letter-spacing: -.7px;
    cursor: pointer;
    color: #4a5f73;
    }
    
    .c-view {
    margin-top: -40px;
    }
    
    .btn-primary1 {
    line-height: 1.467;
    background-color: #ff3333;
    text-align: center;
    color: #fff;
    width: 30%;
    height: 85%;
    border: 1px solid #ff3333;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: -.5px;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    }
    
    .btn-primary1::after {
    width: 200%;
    height: 200%;
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, .2);
    right: -50%;
    top: -50%;
    opacity: 0;
    transition: all .3s ease-in-out;
    }
    
    .btn-primary1:hover::after {
    opacity: 1;
    }
    
    .c-pager {
    display: flex;
    justify-content: center;
    margin: 10.5px -10px;
    align-items: center;
    direction: rtl;
    cursor: pointer;
    position: absolute;
    top: 1093px;
    text-align: center;
    padding: 20px;
    }
    
    .c-pager_items {
    padding-right: 10px;
    padding-left: 10px;
    }
    
    .c-pager_items>li {
    display: inline-block;
    }
    
    .c-pager_item {
    width: 35px;
    height: 34px;
    display: inline-block;
    text-align: center;
    line-height: 34px;
    margin: 0 3px;
    border-radius: 8px;
    font-size: 18px;
    vertical-align: top;
    }
    
    .c-pager_item.is-active {
    background-color: #00bfd6;
    border: 1px solid #00bfb6;
    color: #fff;
    }
    
    .c-pager_items-line {
    width: 2px;
    height: 34px;
    border: 1px solid #e8e8e8;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 30px;
    margin-left: 30px;
    }
    
    .c-pager_last {
    width: 35px;
    height: 34px;
    vertical-align: top;
    font-size: 23px;
    display: inline-block;
    text-align: center;
    color: #6e6e6e;
    }
    
    .c-pager_last::before {
    font-family: digikala;
    content: "\00bb";
    line-height: 1;
    }
    
    .content1 {
    display: flex;
    }
    
    .main-title1 {
    margin-top: -23px;
    border: 2px solid #a3a3a3;
    border-radius: 5px;
    background-color: #999999;
    color: #fff;
    min-height: 78px;
    width: 97%;
    margin-right: 1%;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    letter-spacing: -.9px;
    font-size: 22px;
    font-weight: 400;
    }
    
    .main-pic {
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 56px;
    margin-bottom: 28px;
    box-shadow: 0 8px 13px -7px rgb(0 0 0 / 50%);
    }
    
    .main-desc {
    display: table !important;
    margin-left: auto !important;
    margin-right: auto !important;
    color: #515151 !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    letter-spacing: -0.2px !important;
    line-height: 2.8 !important;
    }
    
    .main-desc h2 {
    margin: 40px;
    }
    
    .main-desc p {
    font-weight: 300;
    line-height: 50px;
    }
    
    .aside-title {
    margin-top: -23px;
    border: 2px solid #a3a3a3;
    border-radius: 5px;
    background-color: #999999;
    color: #fff;
    height: 8%;
    width: 95%;
    margin-right: 2%;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    letter-spacing: -.9px;
    font-size: 22px;
    font-weight: 400;
    }
    
    .aside-img-title {
    max-height: 93px;
    position: absolute;
    width: 26%;
    top: 335px;
    left: 1%;
    }
    
    .main1 {
    min-width: 70%;
    flex-basis: 70%;
    background-color: #77dde9;
    min-height: 337px;
    background-color: #fff;
    box-shadow: 0 6px 12px 0 rgb(181 181 181 / 50%);
    border: 2px solid #e7e7e7;
    padding-top: 37px;
    padding-bottom: 50px;
    border-radius: 5px;
    margin-left: 15px;
    flex-direction: column;
    margin-bottom: 25px
    }
    
    .aside1 {
    display: flex;
    flex-basis: 30%;
    max-width: 30%;
    height: 1000px;
    background-color: #fff;
    box-shadow: 0 6px 12px 0 rgb(181 181 181 / 50%);
    border: 1px solid #dedede;
    padding-top: 37px;
    padding-bottom: 50px;
    }
    
    .main-date1 {
    /* position: absolute; */
    height: 28px;
    display: flex;
    font-size: 17px;
    margin-top: 84px;
    margin-right: 11px;
    color: #B0B0B0;
    }
    
    .aside-description {
    min-width: 79%;
    padding-right: 20px;
    color: #515151;
    letter-spacing: -0.2px;
    }
    
    .aside-img {
    flex-basis: 50%;
    max-width: 50%;
    }
    
    .aside-img img {
    width: 80px;
    border-radius: 50%;
    }
    
    .row1 {
    height: 8%;
    width: 95%;
    display: flex;
    margin-bottom: 40px;
    }
    
    @media screen and (max-width: 1500px) {
    .row1 {
    width: 311px;
    }
    }
    
    @media screen and (max-width: 1381px) {
    .row1 {
    width: 279px;
    }
    .aside-img-title {
    left: 1%;
    }
    }
    
    @media screen and (max-width: 1326px) {
    .aside-img-title {
    left: 3%;
    }
    }
    
    @media screen and (max-width: 1326px) {
    .aside-img-title {
    left: 5%;
    }
    }
    
    @media screen and (max-width: 1140px) {
    .row1 {
    width: 222px;
    }
    .aside-img-title {
    left: 5%;
    }
    }
    
    @media screen and (max-width: 1000px) {
    .row1 {
    width: 300px;
    }
    }
    
    @media screen and (max-width: 999px) {
    .row1 {
    width: 300px;
    }
    }
    
    @media screen and (max-width: 500px) {
    .row1 {
    width: 250px;
    }
    }
    
    .aside-main-date {
    margin-top: 28px;
    height: 21px;
    font-size: 13px;
    margin-right: 0;
    }
    
    @media screen and (max-width: 1150px) {
    .main-pic img {
    height: 50%;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: table;
    }
    }
    
    @media screen and (max-width: 1000px) {
    .aside1 {
    display: flex;
    flex-direction: column;
    min-height: 600px;
    max-width: 98%;
    margin-top: 20px;
    position: relative;
    margin-bottom: 30px;
    }
    .c-pager {
    display: flex;
    justify-content: center;
    margin: 10.5px -10px;
    align-items: center;
    direction: rtl;
    cursor: pointer;
    position: absolute;
    top: 404px;
    text-align: center;
    padding: 45px;
    }
    .content1 {
    flex-direction: column;
    }
    .aside-img-title {
    max-height: 93px;
    position: absolute;
    width: 94%;
    left: -5%;
    top: 93px;
    }
    }
    
    @media screen and (max-width: 998px) {
    .c-pager {
    top: 460px;
    }
    }
    
    @media screen and (max-width: 400px) {
    .aside-img-title {
    max-width: 76%;
    position: absolute;
    /* width: 60%; */
    left: 18%;
    top: 81px;
    }
    .aside1 {
    min-height: 850px;
    }
    .aside-description {
    padding-right: unset;
    }
    .row1 {
    height: 8%;
    width: 95%;
    display: flex;
    margin-bottom: 40px;
    flex-direction: column;
    }
    .c-pager {
    top: 560px;
    }
    }
    
    @media screen and (max-width: 850px) {
    .main-pic img {
    height: 50%;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: table;
    }
    }
    
    .Webbody {
    width: fit-content;
    }
    .c-product_page .c-breadcrumb li:last-child {
    font-weight: 300;
    }
    
    .c-remodal_price_chart {
    max-width: 900px;
    text-align: center;
    }
    
    .c-remodal_price_chart-main {
    padding: 15px 30px;
    }
    
    .c-remodal_price_chart-aside_title {
    font-size: 18px;
    line-height: 1.222;
    opacity: .96;
    color: #6a6a6a;
    }
    
    .c-remodal_price_chart-aside_subtitle {
    font-size: 12px;
    color: #6a6a6a;
    margin-top: 10px;
    line-height: 1.833;
    }
    
    .c-remodal_price_chart-title_bottom {
    line-height: 22px;
    }
    
    .c-remodal_price-chart_tooltip {
    padding: 0 10px;
    }
    
    .c-remodal_price-chart_tooltip p {
    text-align: right;
    color: #787878;
    direction: rtl;
    font-size: 14px;
    letter-spacing: -.4px;
    line-height: 25px;
    }
    
    .c-remodal_price-chart_tooltip hr {
    border: 1px solid #e9e9e9;
    margin: 10px 0;
    }
    
    .c-product_price {
    display: flex;
    align-items: center;
    }
    
    .c-product {
    background-color: #fff;
    box-shadow: 0 12px 12px 0 rgba(181, 181, 181, .1);
    border: 1px solid #e4e4e4;
    display: inline-flex;
    margin-bottom: 15px;
    width: 100%;
    }
    
    .c-product_gallery {
    flex-basis: 400px;
    max-width: 400px;
    flex-shrink: 0;
    }
    
    .c-gallery {
    height: 100%;
    }
    
    .c-gallery_item {
    display: flex;
    height: clac(100% - 100px);
    padding: 17px 0;
    }
    
    .c-gallery_options {
    display: flex;
    flex-direction: column;
    margin-right: 19px;
    z-index: 20;
    }
    
    .c-gallery_options li {
    margin-top: 12px;
    position: relative;
    }
    
    .c-gallery_options li:first-child {
    margin-top: 0;
    }
    
    .btn-option {
    width: 51px;
    height: 46px;
    /* border-radius: 8px; */
    /* border: 1px solid #cacaca; */
    /* background-color: #fff; */
    color: #565656;
    border: none;
    display: inline-block;
    cursor: pointer;
    position: relative;
    }
    
    .btn-option:hover {
    border-color: #9d9d9d;
    }
    
    .btn-option::before {
    position: absolute;
    font-family: digikala;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    }
    
    .btn-option_wishlist::before {
    content: "\e0d0";
    font-size: 22px;
    }
    
    .btn-option_social::before {
    content: "\e0b5";
    font-size: 26px;
    }
    
    .bell::before {
    font-family: digikala;
    content: "\e00b";
    }
    
    .btn-option_compare::before {
    content: "\e017";
    font-size: 25px;
    font-weight: 600;
    }
    
    .btn-option_stats::before {
    content: "\e0b9";
    font-size: 21px;
    }
    
    .c-tooltip_short {
    /* display: none; */
    position: absolute;
    font-size: 13px;
    white-space: nowrap;
    line-height: 1.692;
    background-color: #6f6f6f;
    color: #fff;
    padding: 9px 15px;
    display: none;
    opacity: 0;
    animation-name: tooltip;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    animation-delay: .5s;
    }
    
    .c-tooltip_short::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    }
    
    .c-gallery_options li:hover .c-tooltip_short {
    display: block;
    }
    
    .c-tooltip_short-left {
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    margin-right: 10px;
    }
    
    .c-tooltip_short-left::before {
    border-width: 10px 0 12px 10px;
    border-color: transparent transparent transparent #6f6f6f;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    }
    
    @keyframes tooltip {
    from {
    opacity: 0;
    }
    to {
    opacity: 1;
    }
    }
    
    .c-gallery_img {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    }
    
    .c-gallery_img img {
    max-width: 85%;
    max-height: 85%;
    }
    
    .c-gallery_img img[alt]::after {
    /* background: #fff url(../img/discount/digikala.png) no-repeat 50%; */
    position: absolute;
    content: attr(alt);
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-size: contain;
    color: transparent;
    text-align: center;
    }
    
    .c-gallery_items {
    border-top: 1px solid #f4f4f4;
    display: flex;
    padding: 11px 0 27px;
    }
    
    .c-gallery_items li {
    flex-basis: 25%;
    max-width: 25%;
    height: 68px;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 0 10px;
    }
    /*======================================
    Selectric v1.13.0
    ======================================*/
    
    .selectric-wrapper {
    position: relative;
    cursor: pointer;
    }
    
    .selectric-responsive {
    width: 100%;
    }
    
    .selectric {
    border: 1px solid #DDD;
    border-radius: 0px;
    background: #F8F8F8;
    position: relative;
    overflow: hidden;
    }
    
    .selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 38px 0 10px;
    font-size: 12px;
    line-height: 38px;
    color: #444;
    height: 38px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }
    
    .selectric .button {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 38px;
    height: 38px;
    line-height: 38px;
    background-color: #F8f8f8;
    color: #BBB;
    text-align: center;
    font: 0/0 a;
    *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
    }
    
    .selectric .button:after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-top-color: #BBB;
    border-bottom: none;
    }
    
    .selectric-focus .selectric {
    border-color: #aaaaaa;
    }
    
    .selectric-hover .selectric {
    border-color: #c4c4c4;
    }
    
    .selectric-hover .selectric .button {
    color: #a2a2a2;
    }
    
    .selectric-hover .selectric .button:after {
    border-top-color: #a2a2a2;
    }
    
    .selectric-open {
    z-index: 9999;
    }
    
    .selectric-open .selectric {
    border-color: #c4c4c4;
    }
    
    .selectric-open .selectric-items {
    display: block;
    }
    
    .selectric-disabled {
    filter: alpha(opacity=50);
    opacity: 0.5;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }
    
    .selectric-hide-select {
    position: relative;
    overflow: hidden;
    width: 0;
    height: 0;
    }
    
    .selectric-hide-select select {
    position: absolute;
    left: -100%;
    }
    
    .selectric-hide-select.selectric-is-native {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    }
    
    .selectric-hide-select.selectric-is-native select {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    border: none;
    z-index: 1;
    box-sizing: border-box;
    opacity: 0;
    }
    
    .selectric-input {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 1px !important;
    height: 1px !important;
    outline: none !important;
    border: none !important;
    *font: 0/0 a !important;
    background: none !important;
    }
    
    .selectric-temp-show {
    position: absolute !important;
    visibility: hidden !important;
    display: block !important;
    }
    
    /* Items box */
    .selectric-items {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #F8F8F8;
    border: 1px solid #c4c4c4;
    z-index: -1;
    box-shadow: 0 0 10px -6px;
    }
    
    .selectric-items .selectric-scroll {
    height: 100%;
    overflow: auto;
    }
    
    .selectric-above .selectric-items {
    top: auto;
    bottom: 100%;
    }
    
    .selectric-items ul, .selectric-items li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 20px;
    min-height: 20px;
    }
    
    .selectric-items li {
    display: block;
    padding: 10px;
    color: #666;
    cursor: pointer;
    }
    
    .selectric-items li.selected {
    background: #E0E0E0;
    color: #444;
    }
    
    .selectric-items li.highlighted {
    background: #D0D0D0;
    color: #444;
    }
    
    .selectric-items li:hover {
    background: #D5D5D5;
    color: #444;
    }
    
    .selectric-items .disabled {
    filter: alpha(opacity=50);
    opacity: 0.5;
    cursor: default !important;
    background: none !important;
    color: #666 !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }
    
    .selectric-items .selectric-group .selectric-group-label {
    font-weight: bold;
    padding-left: 10px;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: none;
    color: #444;
    }
    
    .selectric-items .selectric-group.disabled li {
    filter: alpha(opacity=100);
    opacity: 1;
    }
    
    .selectric-items .selectric-group li {
    padding-left: 25px;
    }
    
    .btn-primary12 {
    line-height: 1.467;
    background-color: #00bfd6;
    color: #fff;
    width: 100%;
    height: 100%;
    border: 1px solid #00bfd6;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: -.5px;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    }
    
    .btn-primary12::after {
    width: 200%;
    height: 200%;
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, .2);
    right: -50%;
    top: -50%;
    opacity: 0;
    transition: all .3s ease-in-out;
    }
    
    .btn-primary12:hover::after {
    opacity: 1;
    }
    
    
    /*
    @font-face {
    font-family: "IRANYekan";
    src: url(../fonts/iranyekan/IRANYekan.eot) format("embedded-opentype"), url(../fonts/iranyekan/IRANYekan.ttf) format("truetype"), url(../fonts/iranyekan/IRANYekan.woff) format("woff"), url(../fonts/iranyekan/IRANYekan.woff2) format("woff2");
    font-weight: 300;
    }
    
    @font-face {
    font-family: "IRANYekan";
    src: url(../fonts/iranyekan400/IRANYekan.eot) format("embedded-opentype"), url(../fonts/iranyekan400/IRANYekan.ttf) format("truetype"), url(../fonts/iranyekan400/IRANYekan.woff) format("woff"), url(../fonts/iranyekan400/IRANYekan.woff2) format("woff2");
    font-weight: 400;
    }
    
    @font-face {
    font-family: "IRANYekan";
    src: url(../fonts/iranyekan700/IRANYekan.eot) format("embedded-opentype"), url(../fonts/iranyekan700/IRANYekan.ttf) format("truetype"), url(../fonts/iranyekan700/IRANYekan.woff) format("woff"), url(../fonts/iranyekan700/IRANYekan.woff2) format("woff2");
    font-weight: 700;
    }
    
    @font-face {
    font-family: "IranSans";
    src: url(../fonts/IranSans/IranSans.ttf) format("truetype");
    font-weight: 700;
    }
    
    @font-face {
    font-family: "digikala";
    src: url(../fonts/digikala/digikala.eot) format("embedded-opentype"), url(../fonts/digikala/digikala.ttf) format("truetype"), url(../fonts/digikala/digikala.woff) format("woff"), url(../fonts/digikala/digikala.woff2) format("woff2");
    }
    
    *,
    *::before,
    *::after {
    box-sizing: border-box;
    }
    
    body,
    html {
    direction: rtl;
    }
    
    a {
    text-decoration: none;
    color: #4a5f73;
    }
    
    html {
    min-width: 1009px;
    }
    
    ul,
    p,
    h4,
    h3 {
    list-style: none;
    padding: 0;
    margin: 0;
    }
    
    ::placeholder {
    color: #c6c6c6;
    }
    
    input,
    button {
    font-family: inherit;
    font-size: inherit;
    }
    */
    
    .body1 {
    background-color: #f5f5f5;
    position: relative;
    margin: 0;
    /* font-family: IRANYekan, sans-serif; */
    font-weight: 300;
    font-size: 14px;
    color: #515151;
    padding-top: 115px;
    }
    
    .container12 {
    padding-right: 15px;
    padding-left: 15px;
    }
    
    .c-link_underline {
    color: #1ca2bd;
    position: relative;
    cursor: pointer;
    line-height: 2;
    }
    
    .c-link_underline::after {
    position: absolute;
    content: "";
    border-bottom: 1px dashed #1ca2bd;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: 11px;
    }
    
    .c-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    z-index: 231;
    }
    
    .container1 {
    /* min-width: 1009px; */
    max-width: 1676px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    display: flex;
    }
    
    .c-header_row {
    position: relative;
    margin-right: 0;
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
    padding: 18px 0;
    align-items: center;
    height: 75px;
    width: 100%;
    background-color: #fff;
    }
    
    .c-header_logo {
    max-width: 155px;
    max-height: 100%;
    width: 100%;
    padding-right: 25px;
    text-indent: -1000em;
    }
    
    .c-header_logo-img {
    /* background: url(../svg/logo.svg) no-repeat 100%; */
    background-size: auto 100%;
    display: block;
    height: 36px;
    }
    
    .c-header_search {
    max-width: calc(100% - 155px - 370px);
    width: 100%;
    padding-right: 50px;
    padding-left: 50px;
    transition: all .3s ease-in-out;
    }
    
    .c-search {
    height: 100%;
    padding-left: 60px;
    position: relative;
    }
    
    .c-search input {
    width: 100%;
    height: 100%;
    font-size: 12px;
    font-family: inherit;
    padding: 10px 10px 9px;
    border-radius: 0 7px 7px 0;
    background-color: #eceff1;
    border: 1px solid #d5dadd;
    color: #474747;
    position: relative;
    z-index: 51;
    font-weight: 300;
    line-height: 1.833;
    }
    
    .c-search_button {
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    border: none;
    background-color: #ef5661;
    border-radius: 7px 0 0 7px;
    align-items: center;
    display: flex;
    justify-content: center;
    line-height: 30px;
    }
    
    .c-search_button::before {
    content: "\e0a8";
    font-family: 'digikala';
    color: #fff;
    font-size: 25px;
    height: 27px;
    }
    
    .c-search_result {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 60px;
    right: 0;
    border-top: 1px solid #e7e7e7;
    box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, .3);
    z-index: 50;
    border-radius: 0 0 7px 7px;
    padding: 10px 15px;
    display: none;
    }
    
    .c-search_result.is-active {
    display: block;
    }
    
    .c-search_result-footer {
    font-size: 12px;
    margin: 5px 0 0 10px;
    padding: 15px 0 15px 0;
    font-weight: 400;
    }
    
    .c-search_result-footer ul {
    list-style: none;
    margin: 0;
    padding-right: 0;
    }
    
    .c-search_result-footer ul li {
    display: inline-block;
    background-color: #eceff1;
    height: 26px;
    border-radius: 13px;
    margin-top: 15px;
    margin-left: 15px;
    }
    
    .c-search_result-footer ul li a {
    color: #4a4a4a;
    padding: 0 11px;
    line-height: 26px;
    }
    
    .c-search_result-footer ul li:hover {
    background-color: #e0e0e0;
    }
    
    .c-header_action {
    height: 100%;
    max-width: 370px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 370px;
    }
    
    .c-header_action-btn {
    position: relative;
    height: 100%;
    }
    
    .c-header_action-btn>div {
    height: 100%;
    width: 100%;
    }
    
    .c-header_btn-user {
    width: 154px;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #6f6f6f;
    position: relative;
    padding-left: 30px;
    margin-left: 20px;
    line-height: 39px;
    }
    
    .c-header_btn-user span {
    text-align: center;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    line-height: 39px;
    }
    
    .c-header_btn-user::after {
    font-family: "digikala";
    content: "\e010";
    font-size: 14px;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    }
    
    .c-header_user-dropdown {
    position: absolute;
    background-color: #fff;
    width: 228px;
    display: none;
    left: 0;
    padding: 15px;
    top: calc(100% + 10px);
    box-shadow: 0 2px 9px 0 rgba(112, 112, 112, .3);
    z-index: 123;
    }
    
    .c-header_user-dropdown.is-active {
    display: block;
    }
    
    .c-header_user-dropdown::before,
    .c-header_user-dropdown::after {
    position: absolute;
    content: "";
    }
    
    .c-header_user-dropdown::before {
    height: 4px;
    left: 0;
    right: 0;
    bottom: 100%;
    background-color: #ef5661;
    }
    
    .c-header_user-dropdown::after {
    border-color: transparent transparent #ef5661;
    border-width: 0 8px 8px;
    bottom: 100%;
    border-style: solid;
    left: 30px;
    margin-bottom: 2px;
    }
    
    .c-header_user-dropown_login {
    background-color: #00bfd6;
    color: #fff;
    width: 100%;
    display: block;
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    line-height: 38px;
    letter-spacing: -.5px;
    font-weight: 700;
    }
    
    .c-header_user-dropdown_sign-up {
    text-align: center;
    border-bottom: 1px solid #eceff1;
    line-height: 50px;
    }
    
    .c-header_user-dropdown_sign-up span {
    color: #4a4a4a;
    font-weight: 700;
    letter-spacing: -.4px;
    }
    
    .c-header_user-dropdown_sign-up a {
    color: #008ec9;
    border-bottom: 1px dashed #008ec9;
    margin-right: 10px;
    font-weight: 700;
    padding-bottom: 3px;
    cursor: pointer;
    }
    
    .c-header_user-dropdown_action {
    display: block;
    color: #4a4a4a;
    cursor: pointer;
    line-height: 40px;
    position: relative;
    padding-right: 50px;
    margin-right: -15px;
    margin-left: -15px;
    }
    
    .c-header_user-dropdown_action::before {
    position: absolute;
    font-family: "digikala";
    font-size: 19px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    opacity: .6;
    }
    
    .c-header_user-profile::before {
    content: "\e0af";
    }
    
    .c-header_user-dropdown_action:hover {
    background-color: #f4f4f4;
    }
    
    .c-header_user-order::before {
    content: "\e06f";
    }
    
    
    /* .divider {
    height: 30px;
    width: 0;
    border-right: 1px solid #606060;
    } */
    
    .c-header_btn-card {
    width: 174px;
    display: flex;
    color: #00bfd6;
    border-radius: 5px;
    cursor: pointer;
    height: 100%;
    padding: 0 15px;
    line-height: 25px;
    margin-right: 20px;
    align-items: center;
    justify-content: space-between;
    background-color: #00efd6;
    color: #fff;
    }
    
    .c-header_btn-card[data-counter="۰"] {
    background-color: #fff;
    color: #00efd6;
    border: 1px solid #00bfd6;
    width: 154px;
    }
    
    .c-header_btn-card::before {
    font-family: 'digikala';
    content: "\e023";
    font-size: 23px;
    line-height: 23px;
    }
    
    .c-header_btn-card::after {
    font-family: digikala;
    content: "\e010";
    }
    
    .c-header_btn-card[data-counter="۰"]::after {
    content: unset;
    }
    
    .c-header_basket-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    background-color: #fff;
    z-index: 10;
    width: 354px;
    left: 0;
    padding: 0 0 45px;
    line-height: 22px;
    border: 1px solid #c6c6c6;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .15);
    display: none;
    }
    
    .c-header_basket-dropdown.is-active {
    display: block;
    }
    
    .c-header_basket-dropdown_header {
    display: flex;
    padding: 14px 10px 14px 15px;
    background-color: rgba(250, 250, 250, .9);
    position: relative;
    }
    
    .c-header_basket-dropdown_total {
    line-height: 20px;
    color: #fb3449;
    font-size: 15px;
    }
    
    .c-header_basket-dropdown_total span:first-of-type {
    color: #676767;
    font-size: 13px;
    }
    
    .c-header_basket-dropdown_link {
    font-size: 11px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding-right: 15px;
    padding-left: 15px;
    transition: background-color .3s ease-in-out;
    }
    
    .c-header_basket-dropdown_link-arrow {
    height: 10px;
    width: 10px;
    background-color: #fafafa;
    position: absolute;
    top: -6.5px;
    left: 30px;
    transform: rotate(45deg);
    border-top: 1px solid #c6c6c6;
    border-left: 1px solid #c6c6c6;
    transition: background-color .3s ease-in-out;
    }
    
    .c-header_basket-dropdown_link:hover,
    .c-header_basket-dropdown_link:hover .c-header_basket-dropdown_link-arrow {
    background-color: #e5e5e5;
    }
    
    .c-header_basket-dropdown_list {
    padding: 0 15px;
    margin: 0;
    }
    
    .c-header_basket-dropdown_item {
    padding: 10px 24px 10px 0;
    min-height: 88px;
    display: block;
    position: relative;
    }
    
    .c-header_basket-dropdown_item-remove {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    right: -5px;
    background-color: #eaeaea;
    }
    
    .c-header_basket-dropdown_item-remove::before {
    font-family: digikala;
    content: "\e02e";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #959595;
    font-size: 8px;
    }
    
    .c-header_basket-dropdown_item-content {
    display: inline-flex;
    align-items: center;
    }
    
    .c-header_basket-dropdown_item-image {
    height: 60px;
    width: 60px;
    flex-basis: 60px;
    flex-shrink: 0;
    position: relative;
    }
    
    .c-header_basket-dropdown_item-image img {
    max-width: 100%;
    max-height: 100%;
    }
    
    .c-header_basket-dropdown_item-image img[alt]::after {
    /* background: #fff url(../img/discount/digikala.png) no-repeat 50%; */
    content: attr(alt);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: contain;
    color: transparent;
    }
    
    .c-header_basket-dropdown_item-details {
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    }
    
    .c-header_basket-dropdown_item-title {
    font-size: 12px;
    line-height: 20px;
    color: #454545;
    font-weight: 700;
    }
    
    .c-header_basket-dropdown_item-params {
    margin-top: 12px;
    }
    
    .c-header_basket-dropdown_item-props {
    font-size: 10px;
    line-height: 17px;
    }
    
    .c-header_basket-dropdown_item-props span:not(:first-of-type) {
    border-right: 1px solid #e0e0e0;
    padding-right: 10px;
    margin: 10px;
    color: #959595;
    }
    
    .c-header_basket-dropdown_submit {
    background-color: #00bfd6;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 15px;
    line-height: 26px;
    padding-top: 9px;
    text-align: center;
    letter-spacing: -.5px;
    padding-bottom: 10px;
    border-radius: 0 0 8px 8px;
    border-top: 1px solid #c6c6c6;
    font-weight: 700;
    }
    
    .c-header_btn-card span {
    display: inline-flex;
    }
    
    .c-header_btn-card span::after {
    content: attr(data-counter);
    height: 25px;
    width: 25px;
    border-radius: 100%;
    text-align: center;
    font-size: 18px;
    margin-right: 5px;
    background-color: #fff;
    color: #00bfd6;
    }
    
    .c-header_btn-card span[data-counter="۰"]::after {
    background-color: #00bfd6;
    color: #fff;
    }
    
    .c-header_nav {
    background-color: #616161;
    }
    
    .c-header_nav-line {
    background-color: #000000;
    width: 100%;
    height: 2px;
    bottom: 0;
    position: absolute;
    }
    
    .c-topmenu {
    margin-right: 0;
    margin-left: 0;
    }
    
    .c-topmenu_list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    position: relative;
    }
    
    .c-topmenu_list-categori_items {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    }
    
    .c-topmenu_list-a {
    color: #fff;
    font-size: 11px;
    padding: 8px 9px 7px;
    line-height: 25px;
    height: 100%;
    display: block;
    }
    
    .c-topmenu_list-special_items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    }
    
    .c-topmenu_list-special_items .c-topmenu_list-a {
    background-color: #4f4f4f;
    }
    
    .c-topmenu_list-special_items li {
    position: relative;
    }
    
    .c-topmenu_list-special_items li:first-of-type::after {
    content: "";
    height: 6px;
    width: 6px;
    position: absolute;
    left: -3px;
    background-color: #747373;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    border-radius: 100%;
    }
    
    .c-topmenu_list-special_items li:first-of-type {
    display: none;
    }
    
    .c-topmenu_sublist {
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 410px;
    max-width: 1280px;
    padding: 19px 24px 45px 280px;
    display: none;
    right: 0;
    left: 0;
    }
    
    .c-topmenu_list-categori_items>li.show-menu .c-topmenu_sublist {
    display: block;
    }
    
    .c-topmenu_sublist-menulist {
    height: 100%;
    width: 100%;
    }
    
    .c-topmenu_sublist-menulist ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
    margin: 0;
    padding: 0;
    }
    
    .c-topmenu_sublist-li {
    height: 25.846px;
    max-width: 100%;
    width: 25%;
    display: inline-flex;
    }
    
    .c-topmenu_sublist-main::before {
    font-family: "digikala";
    content: "\e011";
    color: #1ca2bd;
    right: 0;
    margin-left: 2px;
    font-size: 12px;
    }
    
    .c-topmenu_sublist-main a {
    color: #1ca2bd;
    font-size: 12px;
    line-height: 1.833;
    }
    
    .c-topmenu_sublist-main a:hover {
    border-bottom: 1px dashed #1ca2bd;
    font-weight: 700;
    }
    
    .c-topmenu_sublist-item {
    color: #6a6a6a;
    font-size: 12px;
    padding-right: 20px;
    font-weight: 100;
    }
    
    .c-topmenu_sublist-item a:hover {
    font-weight: 700;
    }
    
    .c-topmenu_sublist-footer {
    bottom: 0;
    position: absolute;
    height: 45px;
    right: 24px;
    border-top: 1px solid #e9e9e9;
    margin-top: 17px;
    align-items: center;
    }
    
    .c-topmenu_sublist-footer a {
    color: #19bfd3;
    font-size: 12px;
    font-weight: 700;
    }
    
    .c-topmenu_sublist-footer::before {
    font-family: digikala;
    content: "\e083";
    color: #19bfd3;
    margin-left: 7px;
    }
    
    .c-topmenu_sublist-img {
    position: absolute;
    width: 270px;
    /* height: 100%; */
    /* max-width: 325px; */
    left: 0;
    bottom: 0;
    margin: 0;
    }
    
    .c-topmenu_list-categori_items li {
    z-index: 5;
    }
    
    
    /* 33min */
    
    
    /* menu hover */
    
    .c-topmenu_list-hover {
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .15);
    height: 100%;
    top: 0;
    bottom: 0;
    position: absolute;
    right: 0;
    transform: scaleX(0);
    z-index: 3;
    transition: all .3s ease-in-out;
    }
    
    .c-topmenu_list-hover>div::before {
    background-color: #ef5661;
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    }
    
    .c-topmenu_list-special_items .c-topmenu_list-a:hover {
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .15);
    }
    
    .c-topmenu_list-special_items .c-topmenu_list-a::before {
    background-color: #ef5661;
    width: 100%;
    height: 2px;
    content: "";
    position: absolute;
    bottom: -1px;
    right: 0;
    left: 0;
    transform: scaleX(0);
    transition: all .3s ease-in-out;
    }
    
    .c-topmenu_list-special_items .c-topmenu_list-a:hover::before {
    transform: scaleX(1);
    }
    
    .c-cover {
    position: fixed;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity .2s ease-in-out;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(74, 74, 74, .43);
    z-index: 230;
    pointer-events: none;
    }
    
    .c-cover.is-active {
    /* opacity: 1; */
    pointer-events: all;
    }
    
    .c-footer {
    margin-top: 105px;
    padding: 80px 10px 0;
    background-color: #eceff1;
    position: relative;
    }
    
    .c-footer_jump-top {
    font-size: 20px;
    color: #4a4a4a;
    height: 59px;
    line-height: 1.1;
    background-color: #f5f5f5;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid #eceff1;
    border-bottom: 1px solid #cfd8dc;
    }
    
    .c-footer_jump-top_container {
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
    align-items: center;
    cursor: pointer;
    }
    
    .c-footer_jump-top_icon {
    background-color: rgba(191, 191, 191, .4);
    height: 36px;
    width: 36px;
    border-radius: 50%;
    transform: rotate(90deg);
    line-height: 46px;
    text-align: center;
    margin-left: 5px;
    }
    
    .c-footer_jump-top_icon::before {
    font-family: digikala;
    content: "\e011";
    color: #fff;
    line-height: 1;
    }
    
    .c-footer .c-footer_feature {
    flex-direction: row;
    justify-content: space-around;
    }
    
    .c-footer hr {
    height: 1px;
    border: none;
    background-color: #cfd8dc;
    width: calc(100%-15px);
    margin: auto;
    }
    
    .c-footer_about {
    padding: 20px 0 20px 15px;
    max-width: 1450px;
    display: flex;
    justify-content: space-between;
    }
    
    .c-footer_links {
    display: flex;
    flex-basis: calc(100% - 450px);
    justify-content: space-between;
    padding: 0 10px;
    align-items: flex-start;
    }
    
    .c-footer_links-col {
    width: calc(33.33%-2px);
    }
    
    .c-footer_links-headline {
    margin-bottom: 22px;
    }
    
    .c-footer_links-headline>div {
    font-size: 16px;
    line-height: 22px;
    }
    
    .c-footer_links-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    }
    
    .c-footer_links-ul li {
    margin: 13px 0 0;
    }
    
    .c-footer_links-ul li a {
    color: #4a4a4a;
    font-weight: 300;
    line-height: 1.571;
    letter-spacing: -.1px;
    }
    
    .c-footer_form {
    width: 333px;
    }
    
    .c-form_newsletter {
    margin: 0 0 35px;
    }
    
    fieldset {
    border: none;
    margin: 0;
    padding: 0;
    }
    
    .c-form_newsletter-title {
    padding: 0;
    margin-bottom: 21px;
    letter-spacing: .3px;
    line-height: 1.571;
    }
    
    .c-form_newsletter-row {
    display: flex;
    flex-wrap: nowrap;
    }
    
    .c-form_newsletter-input {
    line-height: 1.571;
    font-family: inherit;
    font-size: inherit;
    padding: 11px 12px;
    border-radius: 0 5px 5px 0;
    border: 1px solid #c8c8c8;
    border-left: none;
    color: #717171;
    direction: ltr;
    width: 100%;
    letter-spacing: -.8px;
    }
    
    .c-form_newsletter-input::placeholder {
    color: #c6c6c6;
    text-align: right;
    }
    
    .c-form_newsletter-input:-ms-placeholder {
    color: #c6c6c6;
    text-align: right;
    }
    
    .c-form_newsletter-input::-ms-placeholder {
    color: #c6c6c6;
    text-align: right;
    }
    
    .c-form_newsletter-btn {
    font-family: inherit;
    font-size: inherit;
    background-color: #00efd6;
    color: #fff;
    padding: 11px 24px;
    border-radius: 5px 0 0 5px;
    border: none;
    width: 87px;
    text-align: center;
    font-weight: 700;
    overflow: hidden;
    letter-spacing: .3px;
    cursor: pointer;
    position: relative;
    }
    
    .c-form_newsletter-btn::before {
    position: absolute;
    content: "";
    background-color: rgba(255, 255, 255, .2);
    height: 200%;
    width: 200%;
    right: -50%;
    top: -50%;
    opacity: 0;
    transition: all .3s ease-in-out;
    }
    
    .c-form_newsletter-btn:hover::before {
    opacity: 1;
    }
    
    .c-footer_social>span {
    line-height: 1.571;
    margin-bottom: 21px;
    display: block;
    letter-spacing: .3px;
    font-weight: 500;
    }
 ul.social-nets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* 👈 فاصله بین آیکون‌ها بیشتر شد */
    padding: 0;
    margin: 0;
    list-style: none;
}
ul.social-nets a {
    display: inline-block;
    margin: 0 7px; /* 👈 اینم فاصله افقی بین آیکون‌ها */
    color:#1d569f;
}


ul.social-nets li {
    display: inline-block; /* مطمئن شو اگه از <li> استفاده می‌کنی */
}

    
    .c-footer_social-instagram {
    background-image: linear-gradient(266deg, #4e60d3, #913baf, #d52d88, #f26d4f);
    height: 45px;
    width: 156px;
    border-radius: 9px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .11);
    font-weight: 700;
    font-size: 12px;
    line-height: 45px;
    text-align: center;
    }
    
    .c-footer_social-instagram a {
    color: #fff;
    }
    
    .c-footer_social-instagram img {
    position: relative;
    top: 10px;
    right: -5px;
    }
    
    .c-footer_address {
    display: flex;
    max-width: 1450px;
    padding: 15px 12px 15px 15px;
    letter-spacing: -1.1px;
    justify-content: space-between;
    line-height: 27px;
    align-items: center;
    }
    
    .c-footer_contact {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    }
    
    .c-footer_contact li {
    font-size: 16px;
    line-height: 36px;
    }
    
    .c-footer_contact li:first-of-type {
    width: 100%;
    }
    
    .c-footer_contact li:nth-of-type(3) {
    border-right: 1px solid #979797;
    margin-right: 20px;
    padding-right: 20px;
    }
    
    .c-footer_address-images {
    display: flex;
    }
    
    .c-footer_address-images a:first-of-type {
    margin-left: 17px;
    }
    
    .c-footer_more-info {
    background-color: #d7dee8;
    padding: 20px 12px;
    margin: 0 -10px;
    }
    
    .c-footer_description {
    padding: 0 7px;
    display: flex;
    }
    
    .c-footer_seo {
    margin-top: 25px;
    }
    
    .c-footer_seo h1 {
    font-size: 15px;
    line-height: 1.467;
    margin-bottom: 18px;
    }
    
    .c-footer_seo p {
    font-size: 12px;
    line-height: 2.17;
    font-weight: 300;
    letter-spacing: -.3px;
    }
    
    .c-footer_seo a {
    font-size: 14px;
    line-height: 1.571;
    margin-right: 10px;
    letter-spacing: -.3px;
    }
    
    .c-footer_enmad {
    display: flex;
    padding: 0;
    list-style: none;
    margin: 10px 0;
    }
    
    .c-footer_enmad li {
    width: 150px;
    height: 140px;
    background-color: #f0f0f0;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    margin-left: 15px;
    }
    
    .c-footer_enmad li:last-of-type {
    margin-left: 0;
    }
    
    .c-footer_other_site {
    display: flex;
    padding: 0;
    margin: 9px auto;
    max-width: 1450px;
    }
    
    .c-footer_other_site li {
    width: calc(25% - 5px);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    .c-footer_copyright {
    padding-left: 12px;
    padding-right: 12px;
    }
    
    .c-footer_copyright-text {
    padding-top: 30x;
    border-top: 1px solid #b0bec5;
    color: #4a4a4a;
    font-size: 12px;
    padding-bottom: 15px;
    text-align: center;
    }
    
    .c-footer_feature {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    justify-content: space-between;
    }
    
    .c-footer_feature a {
    width: 16.3%;
    }
    
    .c-footer-feature_item {
    font-size: 13px;
    padding-top: 80px;
    padding-bottom: 20px;
    line-height: 1.692;
    text-align: center;
    }
    
    .c-sliders_right-feature_items-1 {
    /* background: url(../svg/feature/express.svg) 43% 8px no-repeat; */
    background-size: auto 58px;
    }
    
    .c-sliders_right-feature_items-2 {
    /* background: url(../svg/feature/support.svg) 50% 4px no-repeat; */
    background-size: auto 58px;
    }
    
    .c-sliders_right-feature_items-3 {
    /* background: url(../svg/feature/pay.svg) 50% 0 no-repeat; */
    background-size: auto 58px;
    }
    
    .c-sliders_right-feature_items-4 {
    /* background: url(../svg/feature/return.svg) 50% 5px no-repeat; */
    background-size: auto 58px;
    }
    
    .c-sliders_right-feature_items-5 {
    /* background: url(../svg/feature/guarantee.svg) 50% 6px no-repeat; */
    background-size: auto 58px;
    }
    
    .c-breadcrumb {
    font-size: 10px;
    margin: 10px 0;
    }
    
    .c-breadcrumb li {
    display: inline-block;
    }
    
    .c-breadcrumb li:not(:first-of-type)::before {
    content: "/";
    margin-left: 5px;
    padding-right: 5px;
    vertical-align: top;
    color: #cfcfcf;
    font-size: 13px;
    letter-spacing: .4px;
    }
    
    .c-breadcrumb li a {
    color: #6a6a6a;
    }
    
    .c-breadcrumb li:last-of-type {
    font-size: 12px;
    line-height: 1.833;
    font-weight: 700;
    }
    
    .c-breadcrumb li:not(:last-of-type):hover {
    font-weight: 600;
    }
    
    .c-category_card {
    margin-top: 15px;
    margin-left: -10px;
    margin-right: -10px;
    position: relative;
    }
    
    .c-category_card_item {
    width: 33%;
    padding: 0 10px;
    position: absolute;
    }
    
    .c-category_card_content {
    background-color: #fff;
    padding: 5px 5px 0;
    border: 1px solid #e8e8e8;
    box-shadow: 0 12px 12px 0 rgba(181, 181, 181, .1);
    }
    
    .c-category_card-header {
    position: relative;
    margin-bottom: 5px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.4px;
    display: flex;
    }
    
    .c-category_card_title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent);
    min-height: 48px;
    line-height: 48px;
    padding-right: 10px;
    }
    
    .c-category_card_img {
    width: 100%;
    }
    
    .c-category_card-list {
    padding-top: 8px;
    padding-bottom: 2px;
    letter-spacing: -.7px;
    line-height: 1.571;
    }
    
    .c-category_card-list li {
    position: relative;
    padding-right: 51px;
    margin: 10px 0;
    }
    
    .c-category_card-list li a:hover {
    color: #1ca2bd;
    }
    
    .c-category_card-list li:first-child {
    margin-top: 0;
    }
    
    .c-category_card-list li:last-child {
    margin-bottom: 25px;
    }
    
    .c-category_card-list li::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #dbdbdb;
    right: 25px;
    border-radius: 4px;
    top: 50%;
    transform: translateY(-50%);
    }
    
    .c-category_card-footer {
    font-size: 13px;
    letter-spacing: -.3px;
    text-align: left;
    padding: 18px 36px;
    margin-top: -20px;
    }
    
    .c-category_card-footer a {
    position: relative;
    line-height: 2;
    cursor: pointer;
    color: #1ca2bd;
    }
    
    .c-category_card-footer a::before {
    position: absolute;
    content: "";
    border-bottom: 1px dashed #1ca2bd;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: 13.5px;
    }
    
    .c-category_card-footer a::after {
    position: absolute;
    font-family: digikala;
    content: "\e011";
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin: 6px;
    font-size: 11px;
    }
    
    .c-swiper {
    background-color: #fff;
    padding: 9px 33px 11px 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
    height: 100%;
    margin: 20px 0 0;
    }
    
    .c-top_swiper .c-swiper {
    margin: 0;
    }
    
    .c-swiper_headline {
    margin: 0 0 6px 33px;
    display: flex;
    position: relative;
    }
    
    .c-swiper_headline::after {
    content: "";
    position: absolute;
    height: 1px;
    background-color: #dfdfdf;
    right: 0;
    left: 0;
    bottom: 0;
    }
    
    .c-swiper_headline span {
    font-size: 18px;
    font-weight: 700;
    padding: 8px 0;
    min-height: 48px;
    line-height: 31px;
    position: relative;
    }
    
    .c-swiper_headline span::before {
    content: "";
    position: absolute;
    background-color: #ef5661;
    height: 1px;
    right: 0;
    left: -40px;
    bottom: 0;
    z-index: 1;
    }
    
    .c-swiper_headline span::after {
    content: "";
    position: absolute;
    background-color: #fff;
    height: 1px;
    width: 15px;
    bottom: 0;
    left: -45px;
    z-index: 1;
    }
    
    .c-swiper_content {
    position: relative;
    }
    
    .c-top_swiper {
    display: flex;
    margin: 15px 0 0;
    }
    
    .c-top_swiper-right {
    flex-basis: 75%;
    max-width: 75%;
    min-height: 400px;
    padding-left: 20px;
    }
    
    .c-swiper_container {
    overflow: hidden;
    padding-top: 3px;
    }
    
    .c-swiper_box {
    display: flex;
    padding: 2px 0;
    transition: transform .4s ease-in-out;
    }
    
    .c-swiper_slide {
    flex-shrink: 0;
    transition: all .2s ease-in-out;
    }
    
    .c-swiper_slide:hover {
    transform: translateY(-2px);
    }
    
    .c-swiper_url {
    padding: 5px 15px 60px;
    display: flex;
    flex-direction: column;
    margin: 0 5px;
    align-items: center;
    position: relative;
    }
    
    .c-swiper_url:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
    }
    
    .c-swiper_url:hover::after {
    position: absolute;
    content: "";
    height: 2px;
    bottom: -2px;
    right: 0;
    left: 0;
    }
    
    .c-swiper_img img {
    width: 210px;
    height: 210px;
    display: flex;
    position: relative;
    align-items: center;
    max-width: 100%;
    }
    
    .c-swiper_img img[alt]::after {
    position: absolute;
    content: attr(alt);
    /* background: #fff url(../img/discount/digikala.png) no-repeat 50%; */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: contain;
    text-align: center;
    color: transparent;
    }
    
    .c-swiper_title {
    margin-top: 14px;
    font-size: 12px;
    width: 90%;
    text-align: center;
    line-height: 25px;
    }
    
    .c-swiper_price {
    bottom: 10px;
    position: absolute;
    width: 90%;
    display: flex;
    justify-content: center;
    }
    
    .c-swiper_price-value {
    color: #fb3449;
    font-size: 20px;
    }
    
    .c-swiper_price-value span {
    font-size: 14px;
    line-height: 22px;
    }
    
    .c-swiper_btn-next,
    .c-swiper_btn-prev {
    position: absolute;
    background: #fff;
    width: 49px;
    height: 90px;
    transform: translateY(-50%);
    margin-top: -22px;
    top: 50%;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .1);
    cursor: pointer;
    color: #a8a8a8;
    margin-top: -35px;
    z-index: 10000;
    }
    
    .c-swiper_btn-next {
    left: 10px;
    margin-left: -10px;
    box-shadow: 1.5px 0 4 px 0 rgba(0, 0, 0, .15);
    border-radius: 0 5px 3px 0;
    }
    
    .c-swiper_btn-next::before {
    content: "\e011";
    }
    
    .c-swiper_btn-prev {
    right: 10px;
    margin-right: -43px;
    box-shadow: -1.5px 0 4 px 0 rgba(0, 0, 0, .15);
    border-radius: 5px 0 0 5px;
    }
    
    .c-swiper_btn-prev::before {
    content: "";
    }
    
    .c-swiper_btn-next::before,
    .c-swiper_btn-prev::before {
    font-family: digikala;
    font-size: 26px;
    top: 50%;
    position: absolute;
    left: 50%;
    margin: -13px 0 0 -13px;
    line-height: 1;
    color: #000000;
    font-weight: 700;
    }
    
    .c-swiper_btn-next.disable,
    .c-swiper_btn-prev.disable {
    opacity: .15;
    cursor: auto;
    }
    
    .c-search_page-container {
    margin-top: 17px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    }
    
    .c-search_page-right {
    flex-basis: 25%;
    max-width: 25%;
    padding-left: 10px;
    height: 100%;
    }
    
    .c-box1 {
    background-color: #fff !important;
    box-shadow: 0 12px 12px 0 rgba(181, 181, 181, .1) !important;
    /* border: 1px solid #dedede !important; */
    margin: 22px 0 10px !important;
    border-radius: 10px;
    }
    
    .c-list_filter {
    border-right: 1px solid #efefef;
    }
    
    .c-box_title {
    font-size: 13px;
    line-height: 1.692;
    font-weight: 700;
    color: #535353;
    padding: 8px 16px 8px 15px;
    border-bottom: 1px solid #f2f2f2;
    margin-right: 6px;
    margin-left: 6px;
    }
    
    .c-list_filter-clear {
    color: #fb3449;
    float: left;
    font-size: 11px;
    line-height: 2;
    }
    
    .c-list_filter ul {
    margin-top: 10px;
    margin-bottom: 8px;
    margin-right: 2px;
    padding-left: 14px;
    }
    
    .c-list_filter ul li {
    margin: 6px 10px 0 0;
    }
    
    .c-list_filter-lable {
    position: relative;
    font-size: 11px;
    border: 1px solid #eee;
    padding: 0 10px 0 31px;
    display: inline-flex;
    line-height: 30px;
    letter-spacing: .3px;
    border-radius: 10px;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%;
    }
    
    .c-list_filter-remove {
    position: absolute;
    left: 0;
    background: none;
    border: none;
    width: 32px;
    top: 0;
    line-height: 1.15;
    }
    
    .c-list_filter-remove::before {
    font-family: digikala;
    content: "\e021";
    font-size: 10px;
    margin-top: 10px;
    display: block;
    line-height: 1;
    color: #727272;
    }
    
    .c-box_header1 {
    line-height: 1.571;
    padding: 8px 16px 10px 15px;
    border-bottom: 1px solid #f2f2f2;
    margin-left: 6px;
    margin-right: 6px;
    font-weight: 700;
    letter-spacing: .2px;
    position: relative;
    }
    
    .c-box_item {
    padding: 6px 13px 8px 12px;
    font-size: 12px;
    }
    
    .c-box_cat-list {
    margin-right: 3px 0;
    }
    
    .c-box_item>ul {
    overflow: hidden;
    }
    
    
    /* برای پایینی های اعمال میشود */
    
    .c-box_cat-list .c-box_cat-list {
    padding-right: 15px;
    }
    
    .c-box_cat-item {
    margin-bottom: 10px;
    line-height: 20px;
    }
    
    .c-box_cat-span {
    margin-bottom: 10px;
    display: block;
    }
    
    .c-box_cat-span-arrow_down,
    .c-box_cat-span-arrow_left {
    position: relative;
    padding-right: 17px;
    }
    
    .c-box_cat-span-arrow_down::before,
    .c-box_cat-span-arrow_left::before {
    font-family: digikala;
    position: absolute;
    top: 0;
    right: 0;
    color: #6b6b6b;
    font-size: 9px;
    line-height: 2.444;
    }
    
    .c-box_cat-span-arrow_down::before {
    content: "\e011";
    }
    
    .c-box_cat-span-arrow_left::before {
    content: "\e010";
    }
    
    .c-box_cat-link {
    color: #545454;
    }
    
    .c-box_cat-link:hover {
    color: #00bfd6;
    }
    
    .c-box_cat-link.is-active {
    color: #2e2e2e;
    font-weight: 700;
    pointer-events: none;
    }
    
    .c-box_content {
    padding: 10px 13px 8px 12px;
    }
    
    .c-box_search-in-result {
    position: relative;
    }
    
    .c-box_search-in-result::before {
    font-family: digikala;
    content: "\e0a8";
    position: absolute;
    font-size: 16px;
    right: 7px;
    top: 12px;
    line-height: 1;
    }
    
    .c-box_search-input {
    font-family: inherit;
    font-size: 11px;
    line-height: 2;
    padding: 7px 28px 8px 2px;
    width: 100%;
    border: 1px solid transparent;
    letter-spacing: 0;
    border-radius: 5px;
    background-color: #f8f8f8;
    color: #555;
    transition: all .15s ease-in-out;
    }
    
    .c-box_search-input:focus {
    background: none;
    border-color: #00efd6;
    }
    
    .c-box_search-input_clear {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: none;
    }
    
    .c-box_search-input_clear::before {
    font-family: digikala;
    content: "\e01a";
    color: #6c6c6c;
    cursor: pointer;
    }
    
    .c-filter1 .c-box_search-input {
    background-color: #fff !important;
    border-color: #00bfd6 !important;
    font-size: 12px !important;
    }
    
    .c-filter1 .c-box_search-in-result {
    margin: 9px 14px 8px !important;
    }
    
    .c-box_toggleable1 {
    cursor: pointer !important;
    }
    
    .c-box_toggleable1::before {
    font-family: digikala !important;
    content: "\e010" !important;
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    transform: rotate(180deg) translateY(60%) !important;
    transition: all .3s ease-in-out !important;
    }
    
    .c-box_toggleable1.is-hidden1 {
    border-bottom: none !important;
    }
    
    .b3 {
    bottom: 11px;
    }
    
    .sort_ul {
    flex-direction: column;
    }
    
    .sort_remodal {
    flex-direction: column;
    }
    
    .sort_ul {
    flex-direction: column;
    display: flex;
    text-align: center;
    }
    
    .c-box_toggleable1.is-hidden::before {
    transform: translateY(-50%) !important;
    }
    
    .c-box_scroll {
    max-height: 333px;
    overflow: auto;
    }
    
    .c-box_scroll::before {
    content: "";
    position: relative;
    height: 5px;
    width: 100%;
    display: block;
    }
    
    .c-box_scroll ul {
    font-size: 12px;
    line-height: 1.833;
    }
    
    .c-box_scroll ul li {
    position: relative;
    }
    
    .c-box_scroll .c-filter_label {
    padding: 5px 52px 5px 13px;
    display: inline-flex;
    /*flex-direction: row-reverse;*/
    justify-content: space-between;
    width: 100%;
    color: #3b3b3b;
    }
    
    .c-filter_label:hover {
    background-color: #f9f9f9;
    }
    
    .c-box_scroll .c-filter_label[data-en]::before {
    content: attr(data-en);
    color: #a6a6a6;
    font-size: 11px;
    line-height: 2;
    font-weight: 300;
    max-width: 110px;
    }
    
    .c-box_scroll .c-box_checkbox {
    width: 19px;
    height: 18px;
    position: absolute;
    right: 20px;
    top: 6px;
    }
    
    .c-box_checkbox input[type="checkbox"] {
    visibility: hidden;
    }
    
    .c-box_checkbox-check {
    border: 1px solid #d8d88d;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    cursor: pointer;
    }
    
    .c-box_checkbox-check::before {
    font-family: digikala;
    content: "\e029";
    position: absolute;
    top: 2px;
    line-height: 1;
    color: #fff;
    left: 2px;
    font-size: 11px;
    }
    
    .c-box_checkbox input[type="checkbox"]:checked+.c-box_checkbox-check {
    background-color: #00bfd6;
    border-color: #1fa4b3;
    }
    
    .c-box_switcher {
    padding: 8px 73px 8px 20px;
    font-size: 12px;
    position: relative;
    }
    
    .c-statusswitcher {
    position: absolute;
    right: 20px;
    top: 10px;
    }
    
    .c-filter1 {
    line-height: 22px!important;
    }
    
    .c-statusswitcher input[type="checkbox"] {
    visibility: hidden;
    position: absolute;
    }
    
    .c-statusswitcher_slider {
    width: 40px;
    height: 21px;
    background-color: rgb(229, 229, 229);
    display: inline-block;
    border-radius: 29px;
    border: 1px solid #8c8c8c;
    position: relative;
    cursor: pointer;
    transition: all .15s ease-in-out;
    }
    
    .c-statusswitcher_slider-toggle {
    width: 15px;
    height: 15px;
    background-color: #fff;
    position: absolute;
    top: 2px;
    right: 2px;
    border-radius: 50%;
    border: 1px solid #959595;
    transition: all .4s ease-in-out;
    }
    
    input[type="checkbox"]:checked+.c-statusswitcher_slider {
    background-color: #00efd6;
    border-color: #148693;
    }
    
    input[type="checkbox"]:checked+.c-statusswitcher_slider span {
    right: 21px;
    }
    
    .c-box_filter-slider {
    padding: 30px 32px 32px !important;
    border-bottom: 1px solid #f5f5f5 !important;
    }
    
    .c-range_slider1 {
    height: 1px !important;
    border: none !important;
    box-shadow: none !important;
    background-color: #c6c6c6 !important;
    }
    
    .c-range_slider1.noUi-horizontal .noUi-handle {
    border-radius: 50% !important;
    border: none !important;
    width: 19px !important;
    height: 19px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    left: -9px !important;
    top: -7px !important;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1) !important;
    }
    
    .c-range_slider1 .noUi-connect {
    background-color: #35ccde !important;
    box-shadow: none !important;
    }
    
    .c-range_slider1.noUi-horizontal .noUi-handle::before {
    font-family: digikala !important;
    position: unset !important;
    background: none !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #ababab !important;
    height: auto !important;
    width: auto !important;
    }
    
    .c-range_slider1.noUi-horizontal .noUi-handle::after {
    display: none !important;
    }
    
    .c-range_slider1.noUi-horizontal .noUi-handle.noUi-handle-lower::before {
    content: "\e011" !important;
    }
    
    .c-range_slider1.noUi-horizontal .noUi-handle.noUi-handle-upper::before {
    content: "\e011" !important;
    }
    
    .c-filter_range1 {
    display: flex !important;
    }
    
    .c-filter_range1 li {
    flex-basis: 50% !important;
    text-align: center !important;
    font-size: 13px !important;
    letter-spacing: .3px !important;
    color: #858585 !important;
    padding: 13px 15px 20px !important;
    }
    
    .c-filter_range1 li+li {
    border-right: 1px solid #f5f5f5 !important;
    }
    
    .c-filter_range1 li::before {
    content: attr(data-lable) !important;
    }
    
    .c-filter_range1 li::after {
    content: attr(data-currency) !important;
    }
    
    .c-filter_range1 li::after,
    .c-filter_range1 li::before {
    display: block !important;
    }
    
    .c-filter_range1 input[type="text"] {
    font-family: inherit !important;
    font-size: 14px !important;
    height: 28px !important;
    width: 77px !important;
    border-radius: 5px !important;
    border: none !important;
    background-color: #f8f8f8 !important;
    margin: 6px 0 !important;
    text-align: center !important;
    color: #3c3c3c !important;
    opacity: .5 !important;
    }
    
    .c-filter_action1 {
    padding: 8px 32px !important;
    border-top: 1px solid #f5f5f5 !important;
    }
    
    .c-filter_price-btn1 {
    font-family: inherit !important;
    border-radius: 8px !important;
    background-color: #00bfd6 !important;
    color: #fff !important;
    line-height: 22px !important;
    padding: 11px 45px 11px 31px !important;
    white-space: nowrap !important;
    max-width: 100% !important;
    border: 1px solid #148693 !important;
    font-size: 13px !important;
    cursor: pointer !important;
    position: relative !important;
    }
    
    .c-filter_price-btn1::before {
    font-family: digikala !important;
    content: "\e03e" !important;
    position: absolute !important;
    right: 15px !important;
    font-size: 18px !important;
    }
    
    .disabled {
    }
    
    .c-filter_price-btn1:not(.disabled)::after {
    content: "" !important;
    width: 200% !important;
    height: 200% !important;
    background-color: rgba(255, 255, 255, .2) !important;
    position: absolute !important;
    top: -50% !important;
    right: -50% !important;
    opacity: 0 !important;
    transition: all .3s ease-in-out !important;
    }
    
    .c-filter_price-btn1:not(.disabled):hover::after {
    opacity: 1 !important;
    }
    
    .c-filter_color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 6px;
    margin-left: 6px;
    border: 1px solid #f2f2f2;
    }
    
    .c-search_page-left {
    flex-basis: 75%;
    max-width: 75%;
    padding-right: 10px;
    }
    
    .c-search_page-left .c-breadcrumb {
    margin-top: 0;
    }
    
    .c-search_page-list {
    position: relative;
    background-color: #fff;
    border: 1px solid #e4e4e4;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03);
    }
    
    .c-listing_counter {
    position: absolute;
    left: 0;
    top: -27px;
    color: #b7b7b7;
    font-size: 12px;
    line-height: 21px;
    }
    
    .c-listing_header {
    position: relative;
    padding: 7px 44px 7px 130px;
    border-bottom: 1px solid #ebe9e9;
    }
    
    .c-listing_header::before {
    font-family: digikala;
    content: "\e0b6";
    position: absolute;
    right: 13px;
    color: #cecece;
    top: 50%;
    transform: translateY(-50%);
    }
    
    .c-listing_sort {
    display: flex;
    min-height: 44px;
    align-items: center;
    margin-top: 1px;
    }
    
    .c-listing_sort::before {
    content: attr(data-lable);
    font-size: 12px;
    color: #3b3b3b;
    margin-left: 5px;
    line-height: 21px;
    }
    
    .c-listing_sort li+li {
    margin-right: 5px;
    }
    
    .c-listing_sort li a {
    font-size: 12px;
    padding: 0 5px;
    line-height: 25px;
    display: block;
    border-radius: 5px;
    }
    
    .c-listing_sort li a.is-active {
    background-color: #00bfd6;
    color: #fff;
    }
    
    .c-listing_sort li a:not(.is-active):hover {
    background-color: #ece9e9;
    }
    
    .c-listing_type-list {
    display: flex;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    }
    
    .c-listing_type-list li {
    margin-right: 4px;
    }
    
    .c-listing_type-list li button {
    width: 34px;
    height: 30px;
    background: none;
    border: 1px solid #cbcbcb;
    border-radius: 5px;
    color: #8a8a8a;
    opacity: .46;
    cursor: pointer;
    }
    
    .c-listing_type-list li button.is-active {
    opacity: 1;
    cursor: auto;
    }
    
    .c-listing_type-list li button::before {
    font-family: digikala;
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
    }
    
    .c-listing_type-list li button[data-type="gallery"]::before {
    content: "\e053";
    }
    
    .c-listing_type-list li button[data-type="list"]::before {
    content: "\e062";
    }
    
    .c-listing_items {
    display: flex;
    flex-wrap: wrap;
    margin-right: -1px;
    margin-left: -1px;
    }
    
    .c-listing_items>li {
    max-width: 33.3%;
    }
    
    .c-search_page-list .c-product_box {
    padding: 26px 20px 60px;
    border: 1px solid #ebebeb;
    margin-left: -1px;
    margin-top: -1px;
    margin-bottom: -1px;
    transition: box-shadow .2s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    }
    
    .c-search_page-list .c-product_box:hover {
    box-shadow: 0 2px 17px 0 rgba(0, 0, 0, .09);
    }
    
    .c-search_page-list .c-prodcut_box-img {
    height: 150px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    
    .c-search_page-list .c-prodcut_box-img img {
    max-width: 100%;
    max-height: 100%;
    }
    
    .c-search_page-list .c-prodcut_box-img img[alt]::after {
    position: absolute;
    content: attr(alt);
    /* background: #fff url(../img/discount/digikala.png) no-repeat 50%; */
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-size: contain;
    color: transparent;
    }
    
    .c-search_page-list .c-product_box-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    }
    
    .c-search_page-list .c-product_box-title {
    font-size: 12px;
    line-height: 30px;
    margin-top: 20px;
    }
    
    .c-search_page-list .c-product_box-title {
    color: #535353;
    }
    
    .c-product_box-row_price {
    display: flex;
    margin-top: 13px;
    justify-content: space-between;
    flex-direction: row-reverse;
    }
    
    .c-product_box-price_value {
    color: #000;
    font-weight: 700;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: .8px;
    width: 100%;
    text-align: left;
    }
    
    .c-product_box-price_currency {
    font-size: 13px;
    font-weight: 400;
    }
    
    .c-product_box-compare-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    color: #ababab;
    }
    
    .c-product_box-compare-checkbox input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    }
    
    .c-product_box-compare-checkbox span {
    border: 1px solid #d8d8d8;
    width: 17px;
    height: 17px;
    margin-left: 5px;
    border-radius: 4px;
    position: relative;
    }
    
    .c-product_box-compare-checkbox span::before {
    font-family: digikala;
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }
    
    .c-product_box-compare-checkbox input:checked+span {
    background-color: #00bfd6;
    }
    
    .c-product_box-compare-checkbox input:checked+span::before {
    content: "\e029";
    }
    
    .c-product_box:hover .c-product_box-compare-checkbox,
    .c-product_box:hover .c-product_box-seller {
    opacity: 1;
    }
    
    .c-search_page-list .c-product_box-color {
    position: absolute;
    top: 19px;
    right: 16px;
    width: 12px;
    display: flex;
    flex-direction: column;
    }
    
    .c-search_page-list .c-product_box-color>li {
    margin-bottom: 1px;
    height: 10px;
    display: flex;
    justify-content: center;
    }
    
    .c-search_page-list .c-product_box-color_item {
    height: 10px;
    width: 10px;
    display: block;
    border-radius: 50%;
    border: 1px solid rgb(233, 233, 233);
    }
    
    .c-search_page-list .c-product_box-seller {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 5px 45px 5px 10px;
    height: 53px;
    border-top: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: all .3s ease-in-out;
    background-color: #fff;
    }
    
    .c-search_page-list .c-product_box-seller::before {
    font-family: digikala;
    content: "\e0a9";
    position: absolute;
    right: 165px;
    font-size: 21px;
    color: #ccc;
    }
    
    .c-search_page-list .c-product_box-seller_details {
    font-size: 12px;
    font-weight: 700;
    }
    
    .c-search_page-list .c-product_box-seller_details-lable {
    font-weight: 400;
    }
    
    .c-product_box-tags {
    padding: 11px 20px 12px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 1px solid #f5f5f5;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    }
    
    .c-product_box-rate {
    display: flex;
    line-height: 22px;
    }
    
    .c-product_box-rate_span {
    background-color: #f9f9f9;
    padding: 4px 25px 4px 4.5px;
    position: relative;
    border-radius: 5px;
    color: #9a9a9a;
    font-size: 12px;
    }
    
    .c-product_box-rate_span::before {
    font-family: digikala;
    content: "\e09f";
    position: absolute;
    right: 5px;
    font-size: 15px;
    line-height: 1;
    top: 6px;
    }
    
    .c-product_box-discount_banner {
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    border-left: 69px solid #ff637d;
    border-bottom: 69px solid transparent;
    }
    
    .c-product_box-discount_banner>span {
    position: absolute;
    transform: rotate(-45deg);
    top: 4;
    left: -58px;
    color: #fff;
    text-align: center;
    }
    
    .c-product_box-discount_banner>span span:first-of-type {
    font-size: 18px;
    line-height: 1.222;
    font-weight: 700;
    }
    
    .c-product_box-discount_banner>span span:last-of-type {
    position: relative;
    top: -10px;
    font-size: 9px;
    line-height: 2.444;
    }
    
    .c-product_box-img_discount {
    border: 1px solid #ffcbd0;
    height: 19px;
    width: 102px;
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
    }
    
    .c-product_box-img_discount::before {
    /* background: url(../img/search/discount-img.png) no-repeat; */
    content: "";
    width: 89px;
    position: absolute;
    height: 10px;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }
    
    .c-product_box-counter {
    color: #fb3449;
    padding: 3px 0 0 24px;
    position: relative;
    font-size: 16px;
    line-height: 20px;
    }
    
    .desc {
    text-align: center;
    }
    
    .b3 {
    position: sticky !important;
    z-index: 1000;
    }
    
    .c-product_box-counter::before {
    font-family: digikala;
    content: "\e02b";
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 20px;
    line-height: 20px;
    }
    
    .c-product_box-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    }
    
    .c-product_box-price del {
    font-size: 13px;
    line-height: 22px;
    display: block;
    color: #acacac;
    letter-spacing: .5px;
    }
    
    .c-product_box-price_discount-value {
    background-color: #fb3449;
    color: #fff;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 27px;
    min-width: 50px;
    padding: 4px 6px 1px;
    margin-bottom: 3px;
    margin-right: 5px;
    }
    
    .c-search_page-list.is-list .c-listing_items {
    display: block;
    margin: 0;
    }
    
    .c-search_page-list.is-list .c-listing_items>li {
    flex-basis: 100%;
    max-width: 100%;
    border-top: 1px solid #e6e6e6;
    }
    
    .c-search_page-list.is-list .c-listing_items>li:first-child {
    border-top: none;
    }
    
    .c-search_page-list.is-list .c-product_box {
    border: none;
    padding: 22px 0 23px;
    margin: 0;
    flex-direction: row;
    }
    
    .c-search_page-list.is-list .c-prodcut_box-img {
    flex-basis: 190px;
    }
    
    .c-search_page-list.is-list .c-product_box-seller {
    display: none;
    }
    
    .c-search_page-list.is-list .c-product_box-content {
    display: unset;
    position: relative;
    padding-bottom: 55px;
    }
    
    .c-search_page-list.is-list .c-product_box-title {
    background-color: #fafafa;
    padding: 11px 10px;
    border-radius: 5px;
    margin: 0 0 12px;
    font-size: 14px;
    color: #202020;
    line-height: 24px;
    letter-spacing: .3px;
    }
    
    .c-product_box-title-en {
    display: none;
    }
    
    .c-search_page-list.is-list .c-product_box-title-en {
    display: block;
    text-align: left;
    font-size: 10px;
    line-height: 21px;
    letter-spacing: .2px;
    color: #676767;
    margin-bottom: 16px;
    }
    
    .c-search_page-list.is-list .c-product_box-color {
    display: inline-flex;
    position: unset;
    margin: 0 0 17px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    }
    
    .c-search_page-list.is-list .c-product_box-color::before {
    content: attr(data-title);
    white-space: nowrap;
    font-size: 12px;
    color: #6b6b6b;
    letter-spacing: .3px;
    line-height: 21px;
    }
    
    .c-search_page-list.is-list .c-product_box-color li {
    margin: 0 8px 0 0;
    align-items: center;
    }
    
    .c-listing_items {
    line-height: 22px;
    }
    
    .c-search_page-list.is-list .c-product_box-row_price {
    margin-top: 0;
    }
    
    .c-search_page-list.is-list .c-product_box-compare-checkbox {
    opacity: 1;
    }
    
    .c-search_page-list.is-list .c-product_box-tags {
    border: none;
    padding: 0 0 0 10px;
    margin: 20px 0 0;
    }
    
    .c-search_page-list.is-list .c-product_box-rate_span {
    bottom: -7px;
    }
    
    .c-search_page-list.is-list .c-product_box-seller-item {
    display: block;
    opacity: 1;
    text-align: left;
    position: relative;
    padding-left: 70px;
    background: none;
    border-top: none;
    }
    
    .c-search_page-list.is-list .c-product_box-seller-item {
    left: 194px;
    right: unset;
    top: 50%;
    transform: translateY(-50%);
    }
    
    .c-search_page-list.is-list .c-product_box-seller_name {
    font-size: 12px;
    font-weight: 700;
    }
    
    .c-search_page-list .c-product_box-seller_name_guarantee {
    display: none;
    }
    
    .c-search_page-list.is-list .c-product_box-seller_name_guarantee {
    color: #949494;
    font-size: 12px;
    display: block;
    }
    
    .c-search_page-list .c-product_box-prop {
    display: none;
    }
    
    .c-search_page-list.is-list .c-product_box-prop {
    display: block;
    flex-basis: 208px;
    padding-right: 12px;
    padding-left: 12px;
    border-right: 1px solid #ececec;
    }
    
    .c-search_page-list.is-list .c-product_box-prop>span {
    position: relative;
    padding-right: 28px;
    margin: 0 0 10px;
    line-height: 25px;
    letter-spacing: .2px;
    color: #313131;
    }
    
    .c-search_page-list.is-list .c-product_box-prop>span::before {
    font-family: digikala;
    content: "\e0b7";
    position: absolute;
    /* right: 1px; */
    font-size: 21px;
    line-height: 1;
    top: 0;
    color: #ababab;
    }
    
    .c-search_page-list.is-list .c-product_box-prop ul {
    font-size: 11px;
    font-weight: 300;
    }
    
    .c-search_page-list.is-list .c-product_box-prop li {
    letter-spacing: .7px;
    position: relative;
    padding-right: 20px;
    margin: 10px;
    }
    
    .c-search_page-list.is-list .c-product_box-prop ul li::before {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #ababab;
    content: "";
    right: 7px;
    top: 7px;
    border-radius: 50%;
    }
    
    .c-search_page-list.is-list .c-product_box-img_discount {
    top: -23px;
    }
    
    .c-pager {
    display: flex;
    justify-content: center;
    margin: 10.5px -10px;
    align-items: center;
    }
    
    .c-pager_items {
    padding-right: 10px;
    padding-left: 10px;
    }
    
    .c-pager_items>li {
    display: inline-block;
    }
    
    .c-pager_item {
    width: 35px;
    height: 34px;
    display: inline-block;
    text-align: center;
    line-height: 34px;
    margin: 0 3px;
    border-radius: 8px;
    font-size: 18px;
    vertical-align: top;
    }
    
    .c-pager_item.is-active {
    background-color: #00bfd6;
    border: 1px solid #00bfb6;
    color: #fff;
    }
    
    .c-pager_items-line {
    width: 2px;
    height: 34px;
    border: 1px solid #e8e8e8;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 30px;
    margin-left: 30px;
    }
    
    .c-pager_last {
    width: 35px;
    height: 34px;
    vertical-align: top;
    font-size: 23px;
    display: inline-block;
    text-align: center;
    color: #6e6e6e;
    }
    
    .c-pager_last::before {
    font-family: digikala;
    content: "\00bb";
    line-height: 1;
    }
    
    .c-discount_banner {
    display: flex;
    }
    
    .c-discount_banner-item {
    margin-top: 20px;
    }
    
    .c-discount_banner-item:not(:last-of-type) {
    margin-left: 20px;
    }
    
    .c-discount_banner-item img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
    }
    
    .c-cateogry_desc {
    background-color: #fff;
    padding: 30px 50px;
    margin: 56px 0 23px;
    color: #787878;
    box-shadow: 0 -6px 12px 0 rgba(181, 181, 181, .1);
    line-height: 22px;
    border: 1px solid #dbdbdb;
    position: relative;
    }
    
    .c-cateogry_desc.collapsed .c-cateogry_desc-text {
    max-height: 250px;
    }
    
    .c-cateogry_desc-text,
    .c-cateogry_desc-text p {
    font-size: 12px;
    line-height: 2.57;
    letter-spacing: -.5px;
    text-align: justify;
    overflow: hidden;
    }
    
    .c-cateogry_desc-text p,
    .c-cateogry_desc-text h2 {
    padding: 0;
    margin: 0;
    }
    
    .c-cateogry_desc-text h1,
    .c-cateogry_desc-text h2 {
    font-size: 15px;
    line-height: 1.467;
    font-weight: 500;
    letter-spacing: -.9px;
    margin-bottom: 15px;
    }
    
    .c-cateogry_desc-btn {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    width: calc(100% - 80px);
    height: 60px;
    padding-top: 80px;
    padding-bottom: 30px;
    font-size: 14.5px;
    align-items: center;
    line-height: 1.571;
    font-weight: 700;
    cursor: pointer;
    }
    
    .c-cateogry_desc.collapsed .c-cateogry_desc-btn {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, .3), #fff);
    }
    
    .c-cateogry_desc-btn::after {
    font-family: digikala;
    content: "\e010";
    margin-right: 10px;
    font-size: 13px;
    transition: all .3s ease-in-out;
    transform: rotate(180deg);
    }
    
    .c-cateogry_desc.collapsed .c-cateogry_desc-btn::after {
    transform: rotate(0deg);
    }
    
    .page {
    margin-top: 17px;
    }
    
    .c-compare_headline {
    padding: 0 30px;
    margin: 26px 0 20px;
    }
    
    .c-compare_headline span {
    font-size: 18px;
    font-weight: 700;
    line-height: 31px;
    }
    
    .c-compare_list-header {
    background-color: #fff;
    border: 1px solid #e4e4e4;
    border-bottom: 2px solid #00bfd6;
    margin-bottom: 28px;
    box-shadow: 0 12px 12px 0 rgba(181, 181, 181, .1);
    position: sticky;
    top: 0;
    z-index: 10;
    }
    
    .is-sticky .c-compare_list-header {
    box-shadow: 0 12px 12px 0 rgba(181, 181, 181, .5);
    }
    
    .c-compare_list-header>li {
    display: flex;
    }
    
    .c-compare_header {
    max-width: 25%;
    flex-basis: 25%;
    border-right: 1px solid #e4e4e4;
    position: relative;
    }
    
    .c-compare_header:first-child {
    border-right: none;
    }
    
    .c-compare_header-img {
    display: flex;
    flex-direction: column;
    padding: 25px;
    text-align: center;
    color: #626262;
    position: relative;
    }
    
    .c-compare_header-img::after {
    content: "";
    position: absolute;
    border-width: 0 10px 10px;
    border-color: transparent transparent #00bfd6;
    border-style: solid;
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    }
    
    .c-compare_header-images {
    height: 180px;
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    }
    
    .is-sticky .c-compare_header-images {
    height: 70px;
    }
    
    .c-compare_header-images .c-swiper_box {
    padding: 0;
    }
    
    .c-compare_header-images .c-swiper_slide {
    display: flex;
    justify-content: center;
    position: relative;
    }
    
    .c-compare_header-images .c-swiper_slide img {
    width: calc(100% - 20px) !important;
    object-fit: scale-down !important;
    max-height: 100% !important;
    }
    
    .ss {
    width: calc(100% - 20px) !important;
    object-fit: scale-down !important;
    max-height: 100% !important;
    }
    
    .c-compare_header-images .c-swiper_slide img[alt]::after {
    position: absolute;
    content: attr(alt);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: contain;
    color: transparent;
    }
    
    .c-compare_images-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 23px;
    display: none;
    }
    
    .c-compare_images-button::before {
    font-family: digikala;
    font-size: 23px;
    line-height: 23px;
    color: #a9a9a9;
    }
    
    .c-compare_header-images:hover .c-compare_images-button {
    display: block;
    }
    
    .c-compare_images-next {
    left: 2px;
    }
    
    .c-compare_images-next::before {
    content: "\e011";
    }
    
    .c-compare_images-prev {
    right: 2px;
    }
    
    .c-compare_images-prev::before {
    content: "\e014";
    }
    
    .c-compare_title {
    font-size: 13px;
    line-height: 2.23;
    }
    
    .is-sticky .c-compare_title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    height: 20px;
    }
    
    .c-compare_price {
    margin: 10px 0;
    }
    
    .c-compare_price-value {
    color: #fe3449;
    line-height: 1.467;
    font-size: 15px;
    letter-spacing: .8px;
    }
    
    .c-compare_btn1 {
    background-color: #00bfb6 !important;
    color: #fff !important;
    border: 1px solid #147693 !important;
    padding: 11px 31px !important;
    border-radius: 8px !important;
    margin-top: 10px !important;
    font-size: 13px !important;
    line-height: 1.692 !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    }
    
    .is-sticky .c-compare_btn1 {
    display: none;
    }
    
    .c-compare_btn1::after {
    position: absolute;
    content: "";
    width: 200%;
    height: 200%;
    background-color: rgba(255, 255, 255, .2);
    right: -50%;
    top: -50%;
    opacity: 0;
    transition: all .3s ease-in-out;
    }
    
    .c-compare_btn1:hover::after {
    opacity: 1;
    }
    
    .c-compare_btn-remove {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #f5f5f5;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    z-index: 50;
    }
    
    .remodal-close::before {
    top: 9px !important;
    left: -2px !important;
    }
    
    .c-compare_btn-remove::before {
    font-family: digikala !important;
    content: "\e02e" !important;
    font-size: 12px;
    color: #727272;
    vertical-align: middle;
    }
    
    .c-compare-add {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    height: 100%;
    }
    
    .c-compare-add-btn {
    background: none;
    font-family: inherit !important;
    border: 5px dashed #d2d2d2 !important;
    border-radius: 19px !important;
    max-width: 270px !important;
    padding: 35px !important;
    color: #b3b3b3 !important;
    margin: auto !important;
    cursor: pointer !important;
    font-size: 15px !important;
    line-height: 1.467 !important;
    }
    
    .is-sticky .c-compare-add-btn {
    height: 130px;
    padding: 11px;
    font-size: 13px;
    line-height: 1.692;
    }
    
    .c-compare-add-btn::before {
    font-family: digikala;
    content: "\e005";
    font-size: 107px;
    display: block;
    line-height: 1;
    margin-bottom: 15px;
    }
    
    .is-sticky .c-compare-add-btn::before {
    font-size: 45px;
    }
    
    .c-compare_btn-gray1 {
    background-color: #7a7a77 !important;
    border: unset !important;
    font-family: inherit !important;
    }
    
    .c-compare_prop-title {
    font-size: 19px;
    line-height: 1.158;
    margin-bottom: 25px;
    letter-spacing: -.3px;
    padding-right: 19px;
    position: relative;
    }
    
    .c-compare_prop-title::before {
    position: absolute;
    content: "";
    border-width: 7px 7px 7px 0;
    border-style: solid;
    border-color: transparent #00bfd6 transparent transparent;
    right: 0;
    bottom: 3px;
    }
    
    .c-compare_list {
    background-color: #fff;
    margin-bottom: 47px;
    }
    
    .c-compare_list>li {
    display: flex;
    margin: 10px 0;
    }
    
    .c-compare_list-title {
    background-color: #eaeaea;
    width: 100%;
    line-height: 1.692;
    padding: 9px 26px;
    font-weight: 700;
    font-size: 13px;
    }
    
    .c-compare_list-value {
    flex-basis: 25%;
    max-width: 25%;
    border-right: 1px solid #e4e4e4;
    }
    
    .c-compare_list-value:first-child {
    border-right: none;
    }
    
    .c-compare_list-span {
    padding: 14px 18px 12px;
    line-height: 1.571;
    color: #4d4d4d;
    letter-spacing: -.3px;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    
    .remodal-overlay {
    background-color: rgba(135, 135, 135, .5);
    }
    
    .c-remodal_compare {
    max-width: 900px;
    background-color: #f8f8f8;
    padding: 0;
    text-align: right;
    }
    
    .remodal {
    max-height: 95vh;
    overflow: auto;
    }
    
    .c-remodal_compare-header {
    background-color: #ececec !important;
    padding: 19px 37px 20px 63px !important;
    border-bottom: 1px solid #dedede !important;
    }
    
    .c-remodal_compare-search_row {
    display: flex;
    margin-right: -9px;
    margin-left: -9px;
    }
    
    .c-remodal_compare-search_col {
    padding-right: 9px;
    padding-left: 9px;
    display: flex;
    align-items: center;
    width: auto;
    }
    
    .c-remodal_compare-search_field {
    flex-grow: 1;
    }
    
    .c-remodal_compare-search_lable {
    width: 100%;
    position: relative;
    }
    
    .c-remodal_compare-search_lable::before {
    font-family: digikala;
    content: "\e0a8";
    position: absolute;
    font-size: 17px;
    right: 15px;
    top: 13px;
    line-height: 1;
    }
    
    .c-remodal_compare-search_input {
    padding: 11px 42px 11px 12px;
    font-family: inherit;
    width: 100%;
    color: #717171;
    border: 1px solid #c8c8c8;
    border-left: none;
    line-height: 1.571;
    border-radius: 0 5px 5px 0;
    font-size: 14px;
    letter-spacing: 0.2px;
    }
    
    .c-remodal_compare-select_brand {
    padding: 11px 42px 11px 12px;
    font-family: inherit;
    width: 50%;
    color: #717171;
    border: 1px solid #c8c8c8;
    border-left: none;
    line-height: 1.571;
    border-radius: 0 5px 5px 0;
    font-size: 14px;
    letter-spacing: -.8px;
    }
    
    .c-remodal_compare-search_input::placeholder {
    color: #c6c6c6;
    }
    
    .selectric-c-remodal_compare-select_brand {
    width: 100%;
    max-width: 200px;
    }
    
    .selectric-c-remodal_compare-select_brand .selectric {
    border-radius: 5px 0 0 5px;
    }
    
    .selectric {
    background-color: #fff;
    border-color: #c8c8c8;
    }
    
    .selectric .button {
    display: none;
    }
    
    .selectric .label {
    height: 43px;
    font-size: 14px;
    line-height: 43px;
    margin: 0 18px 0 43px;
    color: #6f6f6f;
    }
    
    .selectric .label::after {
    font-family: digikala;
    content: "\e00e";
    position: absolute;
    left: 14px;
    font-size: 7px;
    top: 18px;
    line-height: 1;
    }
    
    .selectric-open .selectric .label::after {
    transform: rotate(180deg);
    }
    
    .selectric-items {
    border-radius: 0 0 4px 4px;
    }
    
    .selectric-items li.highlighted,
    .selectric-items li.selectedm,
    .selectric-items li:hover {
    background-color: #f1f1f1;
    color: #6f6f6f;
    }
    
    .selectric-items li {
    font-size: 14px;
    }
    
    .c-remodal_compare-content {
    padding: 17px 17px 0 !important;
    }
    
    .c-remodal_compare-content_img img {
    width: 60%;
    }
    
    .c-remodal_compare-content_items {
    display: flex !important;
    flex-wrap: wrap !important;
    max-height: 60vh !important;
    min-height: 290px !important;
    justify-content: space-between !important;
    margin: -17px 0 0 !important;
    overflow: auto !important;
    }
    
    .c-remodal_compare-content_items>li {
    flex-basis: 32% !important;
    max-width: 32% !important;
    margin-top: 17px !important;
    }
    
    .rem {
    background-color: #fff !important;
    width: 100% !important;
    /* height: 185px; */
    display: block !important;
    border: 1px solid #e9e9e9 !important;
    text-align: center !important;
    cursor: pointer !important;
    border-radius: 6px !important;
    }
    
    .c-remodal_compare-content_item1 {
    background-color: #fff !important;
    width: 100% !important;
    /* height: 185px; */
    display: block !important;
    border: 1px solid #e9e9e9 !important;
    text-align: center !important;
    cursor: pointer !important;
    border-radius: 6px !important;
    }
    
    .c-remodal_compare-content_img {
    /* height: 94px; */
    margin: 14px 40px 15px !important;
    position: relative !important;
    }
    
    .c-remodal_compare-content_img img[alt]::after {
    position: absolute !important;
    content: attr(alt) !important;
    background: #fff url(../images/2.jpg) no-repeat 50% !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    background-size: contain !important;
    }
    
    .c-remodal_compare-content_title {
    font-size: 12px;
    line-height: 2;
    display: block;
    padding: 16px 18px;
    max-height: 60px;
    overflow: hidden;
    }
    
    .c-input {
    width: 100%;
    line-height: 1.571;
    padding: 11px 12px;
    border: 1px solid #c8c8c8;
    border-radius: 5px;
    letter-spacing: -.8px;
    color: #717171;
    }
    
    .c-remodal_address {
    text-align: right;
    max-width: 824px;
    padding: 0;
    margin: 0;
    }
    
    .c-remodal_address-header {
    height: 104px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 12px 0 rgba(112, 112, 112, .1);
    }
    
    .c-remodal_address-logo {
    /* background: url(../svg/logo2.svg) no-repeat 50% 50%; */
    text-indent: -1000em;
    display: block;
    width: 156px;
    height: 60px;
    margin: auto;
    }
    
    .c-remodal_address .container1 {
    min-width: unset;
    width: 100%;
    max-width: 100%;
    padding: 30px 30px 30px 140px;
    }
    
    .c-profile_headeline .c-profile_headeline-address {
    padding-right: 41px;
    margin: 26px 0 20px;
    position: relative;
    color: #858585;
    }
    
    .c-profile_headeline-address::before {
    font-family: digikala;
    content: "\e088";
    font-size: 26px;
    position: absolute;
    right: 25px;
    color: #c6c6c6;
    /* top: -4px; */
    line-height: 1;
    }
    
    .c-form_address-row {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: -7px;
    margin-right: -7px;
    margin-top: 20px;
    }
    
    .c-form_address-row:first-child {
    margin-top: unset;
    }
    
    .c-form_address-col {
    width: 100%;
    padding-right: 7px;
    padding-left: 7px;
    /* display: flex; */
    }
    
    .c-form_address-title {
    font-size: 15px;
    letter-spacing: -.3px;
    color: #858585;
    line-height: 1.67;
    margin-bottom: 10px;
    }
    
    .c-form_address-row .c {
    display: flex;
    }
    
    .c-form_address-required_star {
    color: red;
    font-size: 18px;
    margin-right: 3px;
    line-height: 1.222;
    margin-bottom: -5px;
    }
    
    .c-input_left-direction {
    text-align: left;
    direction: ltr;
    }
    
    .c-form_address-col_half {
    max-width: 50%;
    flex-basis: 50%;
    }
    
    .selectric {
    border: 1px solid #c8c8d6;
    border-radius: 5px;
    overflow: hidden;
    }
    
    .selectric-above .selectric-items {
    border-radius: 4px 4px 0 0;
    border: 1px solid #ababc0;
    border-bottom: none;
    }
    
    .c-selectric-input {
    max-width: calc(100% - 10px);
    max-height: 40px;
    margin: 5px;
    width: 100%;
    padding: 11px 12px;
    border-radius: 5px;
    border: 1px solid #c8c8c8;
    letter-spacing: -.8px;
    color: #717171;
    }
    
    .label.placeholder {
    color: #c5c5c5;
    }
    
    .hidden {
    display: none !important;
    }
    
    .selectric-has-search .selectric-scroll {
    height: calc(100% - 50px);
    }
    
    .c-textarea {
    resize: none;
    font-family: inherit;
    font-size: 12px;
    width: 100%;
    border: 1px solid #9b9b9b;
    border-radius: 5px;
    padding: 10px;
    line-height: 2.5;
    }
    
    .c-form_address-col_submit {
    max-width: 67%;
    flex-basis: 67%;
    }
    
    .btn-submit {
    width: 100%;
    padding: 20px 100px 20px 20px;
    background-color: #00bfd6;
    color: #fff;
    font-size: 18px;
    border: 1px solid #41a7b4;
    border-radius: 8px;
    letter-spacing: -.7px;
    line-height: 1.222;
    text-align: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    }
    
    .btn-submit::before {
    font-family: digikala;
    content: "\e028";
    position: absolute;
    right: 23px;
    font-size: 27px;
    top: 16px;
    line-height: 1;
    }
    
    .btn-submit::after {
    background: rgba(255, 255, 255, .2);
    content: "";
    width: 95px;
    height: 95px;
    position: absolute;
    right: -15px;
    top: -20px;
    border-radius: 50%;
    transition: all .3s ease-in-out;
    }
    
    .btn-submit:hover::after {
    width: 900px;
    height: 900px;
    right: -450px;
    top: -450px;
    }
    
    .c-form_address-col_return {
    flex-basis: 28%;
    max-width: 28%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    }
    
    .remodal1 {
    padding: 0;
    text-align: right;
    }
    
    .c-remodal_alert {
    max-width: 590px;
    box-shadow: 0 0 17px 0 rgba(0, 0, 0, .25);
    }
    
    .c-remodal_alert-contianer {
    padding: 25px;
    }
    
    .c-remodal_alert-content {
    margin-bottom: 34px;
    }
    
    .c-remodal_alert-content p {
    font-size: 18px;
    color: #737373;
    line-height: 32px;
    }
    
    .c-remodal_alert-action {
    display: flex;
    justify-content: flex-end;
    }
    
    .c-remodal_alert-button {
    min-width: 124px;
    padding: 10px 20px;
    color: #fff;
    border: none;
    border-radius: 5px;
    line-height: 1.15;
    cursor: pointer;
    }
    
    .c-remodal_alert-button_confirm {
    background-color: #63d0df;
    margin-left: 20px;
    }
    
    .c-remodal_alert-button_cancel {
    background-color: #979ba7;
    }
    
    .c-header_btn-user_has-notifiction {
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 3px;
    flex-shrink: 0;
    }
    
    .c-header_btn-user_has-notifiction::before {
    content: "";
    position: absolute;
    background-color: #ffe5ba;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    animation-name: notifi;
    animation-duration: .8s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    }
    
    .not-active.c-header_btn-user_has-notifiction::before {
    content: unset;
    }
    
    .c-header_btn-user_has-notifiction::after {
    background-color: #ffbf3d;
    height: 11px;
    width: 11px;
    position: absolute;
    content: "";
    border-radius: 50%;
    }
    
    @keyframes notifi {
    0% {
    width: 11px;
    height: 11px;
    }
    to {
    width: 25px;
    height: 25px;
    }
    }
    
    .c-header_user-dropdown_phone {
    background-color: #ffbf3d;
    color: #fff;
    width: 100%;
    height: 40px;
    display: block;
    border-radius: 16px;
    text-align: center;
    line-height: 38px;
    letter-spacing: -.5px;
    font-weight: 700;
    }
    
    .c-header_user-dropdown hr {
    border-top: 1px solid #eceff1;
    width: calc(100% + 12px);
    left: 7px;
    position: relative;
    opacity: .43;
    margin: 0;
    }
    
    .c-header_user-logout::before {
    content: "\e05a";
    }
    
    .remodal-close {
    top: 10px;
    left: 17px;
    font-size: 23px;
    padding: 5px;
    line-height: 1;
    color: #989898;
    transition: color .3s ease-in-out;
    }
    
    .c-remodal_address .remodal-close {
    top: 30px;
    left: 30px;
    background-color: #f5f5f5;
    border-radius: 50%;
    height: 38px;
    width: 38px;
    cursor: pointer;
    font-size: 14px;
    }
    
    .c-remodal_compare .remodal-close {
    left: 10px;
    font-size: 14px;
    }
    
    .remodal-close:hover {
    color: #009ec9;
    }
    
    .remodal-close::before {
    font-family: digikala !important;
    content: "\e02e";
    line-height: 1;
    }
    
    .c-checkbox {
    width: 19px;
    height: 18px;
    position: relative;
    display: inline-block;
    }
    
    .c-checkbox input[type="checkbox"] {
    visibility: hidden;
    position: absolute;
    }
    
    .c-checkbox_check {
    border: 1px solid #d8d88d;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 4px;
    cursor: pointer;
    }
    
    .c-checkbox_check::before {
    font-family: digikala;
    content: "\e029";
    position: absolute;
    top: 2px;
    line-height: 1;
    color: #fff;
    left: 2px;
    font-size: 11px;
    }
    
    .c-checkbox input[type="checkbox"]:checked+.c-checkbox_check {
    background-color: #00bfd6;
    border-color: #1fa4b3;
    }
    
    .right-placeholder::placeholder {
    direction: rtl;
    text-align: right;
    }
    
    .c-box_switcher {
    padding: 8px 73px 8px 20px;
    font-size: 12px;
    position: relative;
    }
    
    .c-switcher {
    position: absolute;
    height: 20px;
    width: 40px;
    cursor: pointer;
    }
    
    .c-switcher input[type="checkbox"] {
    visibility: hidden;
    position: absolute;
    }
    
    .c-switcher_slider {
    width: 15px;
    height: 15px;
    top: 2px;
    left: 2px;
    display: inline-block;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #959595;
    position: absolute;
    cursor: pointer;
    transition: all .4s ease-in-out;
    }
    
    .c-switcher_bg {
    width: 100%;
    height: 100%;
    border-radius: 29px;
    border: 1px solid #8c8c8c;
    transition: all .4s ease-in-out;
    display: block;
    background-color: rgb(229, 229, 229);
    }
    
    input[type="checkbox"]:checked+.c-switcher_slider+.c-switcher_bg {
    background-color: #00efd6;
    border-color: #148693;
    }
    
    input[type="checkbox"]:checked+.c-switcher_slider {
    left: 21px;
    border-color: #148693;
    }
    
    .btn-primary_gray {
    background-color: #7a7a7a;
    border-color: #7a7a7a;
    }
    
    .c-checkout_page .container1 {
    max-width: 1366px;
    }
    
    .page-row {
    display: flex;
    }
    
    .c-cart_page-content {
    max-width: 71.5%;
    flex-basis: 71.5%;
    padding-left: 10px;
    }
    
    .page-headline {
    margin: 26px 0 20px;
    padding: 0 30px;
    }
    
    .page-headline>span {
    font-size: 18px;
    line-height: 31px;
    font-weight: 700;
    }
    
    .c-cart_page-aside {
    max-width: 28.5%;
    flex-basis: 28.5%;
    padding-right: 10px;
    }
    
    .c-checkout {
    background-color: #fff;
    box-shadow: 0 12px 12px 0 rgba(181, 181, 181, .1);
    border: 1px solid #e7e7e7;
    margin: 0 0 10px;
    }
    
    .c-checkout_item {
    border-top: 1px solid #eaeaea;
    }
    
    .c-checkout_item:first-child {
    border-top: none;
    }
    
    .c-checkout_row {
    display: flex;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 10px;
    }
    
    .c-checkout_col {
    line-height: 22px;
    width: 100%;
    position: relative;
    }
    
    .c-checkout_col-thumb {
    flex-basis: 19%;
    max-width: 19%;
    padding-right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    .c-checkout_col-thumb img {
    max-width: 90%;
    }
    
    .c-checkout_btn-remove {
    position: absolute;
    right: 14px;
    border: none;
    background-color: #f5f5f5;
    border-radius: 13px;
    height: 26px;
    width: 26px;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    }
    
    .c-checkout_btn-remove::before {
    font-family: digikala;
    content: "\e02e";
    font-size: 9px;
    /* vertical-align: top; */
    margin-top: 3px;
    display: block;
    text-align: center;
    }
    
    .c-checkout_col-desc {
    flex-basis: 35%;
    max-width: 35%;
    }
    
    .c-checkout_title {
    line-height: 1.88;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 400;
    }
    
    .c-checkout_seller {
    font-size: 13px;
    margin: 7px 0;
    }
    
    .c-checkout_gurantee {
    font-size: 12px;
    margin: 7px 0;
    }
    
    .c-checkout_color {
    line-height: 1.692;
    font-size: 13px;
    margin: 7px 0;
    }
    
    .c-checkout_color-value {
    margin-right: 8px;
    padding-left: 25px;
    position: relative;
    }
    
    .c-checkout_color-shap {
    width: 17px;
    height: 17px;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid #bdbdbd;
    border-radius: 5px;
    }
    
    .c-checkout_col-information {
    flex-basis: 46%;
    max-width: 46%;
    display: flex;
    }
    
    .c-checkout_row-inner {
    width: 100%;
    display: flex;
    }
    
    .c-checkout_col-counter {
    flex-basis: 52%;
    max-width: 52%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    }
    
    .c-checkout_price {
    font-size: 17px;
    padding-right: 47px;
    }
    
    .c-checkout_col-price {
    flex-basis: 47%;
    max-width: 47%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    }
    
    .c-checkout_aside {
    margin-top: 77px;
    margin-bottom: 83px;
    position: sticky;
    top: 10px;
    }
    
    .c-checkout_summary {
    line-height: 22px;
    background-color: #fff;
    box-shadow: 0 12px 12px 0 rgba(181, 181, 181, .1);
    border: 1px solid #e7e7e7;
    }
    
    .c-checkout_summary-ul {
    padding: 15px 10px;
    }
    
    .c-checkout_summary-ul>li {
    display: flex;
    padding-bottom: 5px;
    margin: 5px 0;
    }
    
    .c-checkout_summary-ul>li:last-child {
    padding-bottom: 0;
    }
    
    .c-checkout_summary-ul>li span:last-child {
    margin-right: auto;
    }
    
    .c-checkout_summary-u .c-tooltip:last-of-type {
    margin-right: 5px;
    }
    
    .c-tooltip {
    display: inline-block;
    position: relative;
    cursor: pointer;
    }
    
    .c-tooltip_icon {
    position: relative;
    margin-right: 5px;
    display: block;
    width: 22px;
    height: 100%;
    margin-top: -4px;
    }
    
    .c-tooltip_icon::before {
    font-family: digikala;
    content: "\e0ce";
    position: absolute;
    font-size: 21px;
    line-height: 1.048;
    top: 50%;
    transform: translateY(-50%);
    color: #ababab;
    font-weight: 400;
    }
    
    .c-tooltip_contianer {
    position: absolute;
    top: calc(100% + 17px);
    min-width: 273px;
    max-width: 394px;
    right: -10px;
    z-index: 110;
    background-color: #fff;
    box-shadow: 0 -6px 12px 0 rgba(181, 181, 181, .3);
    border: 1px solid #b8b8b8;
    padding: 11px 11px 21px;
    display: none;
    }
    
    .c-tooltip:hover .c-tooltip_contianer {
    display: block;
    }
    
    .c-tooltip_contianer.is-right {
    left: -10px;
    right: unset;
    }
    
    .c-tooltip_arrow {
    position: absolute;
    background-color: #fff;
    width: 13.7px;
    height: 13.7px;
    transform: rotate(-133deg);
    right: 16px;
    top: -8px;
    box-shadow: inset -1px -1px 0 0 #b8b8b8;
    }
    
    .c-tooltip_contianer.is-right .c-tooltip_arrow {
    left: 14px;
    right: unset;
    }
    
    .c-tooltip_text {
    font-size: 13px;
    letter-spacing: -.3px;
    color: #777;
    }
    
    .c-checkout_summary-devider {
    padding: 0 10px;
    }
    
    .c-checkout_summary-devider>div {
    border: 1px solid #e6e6e6;
    width: 100%;
    height: 4px;
    border-right: none;
    border-left: none;
    }
    
    .c-checkout_summary-content {
    padding: 15px;
    color: #a0a0a0;
    font-size: 11px;
    }
    
    .c-checkout_summary-price_title {
    font-size: 18px;
    text-align: center;
    color: #676767;
    line-height: normal;
    }
    
    .c-checkout_summary-price_value {
    font-size: 15px;
    color: #fb3449;
    text-align: center;
    }
    
    .c-checkout_summary-price_value-amount {
    font-size: 20px;
    line-height: 2;
    font-weight: 700;
    }
    
    .c-checkout_page .btn-submit {
    font-size: 15px;
    padding: 15px 80px 15px 15px;
    font-weight: 700;
    letter-spacing: -.6px;
    margin-top: 2px;
    line-height: unset;
    }
    
    .c-checkout_page .btn-submit::before {
    content: "\e02a";
    font-size: 21px;
    right: 21px;
    top: 14px;
    }
    
    .c-checkout_page .btn-submit::after {
    width: 85px;
    height: 85px;
    right: -20px;
    top: -17px;
    }
    
    .c-checkout_page .btn-submit:hover::after {
    width: 900px;
    height: 900px;
    right: -450px;
    top: -450px;
    }
    
    .c-checkout_summary-content div:last-child {
    padding-right: 5px;
    line-height: 2;
    margin-top: 9px;
    }
    
    .c-checkout_summary-content .c-tooltip {
    margin-right: 5px;
    }
    
    .c-checkout_summary-content p {
    padding-right: 5px;
    line-height: 2.4;
    margin-top: 6px;
    }
    
    .c-checkout_aside-feature {
    background-color: #fff;
    margin-top: 10px;
    box-shadow: 0 8px 13px -7px rgba(0, 0, 0, .5);
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    padding: 15px;
    letter-spacing: -.2px;
    color: #aaa;
    }
    
    .c-checkout_aside-feature_item {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 0 27px 0 20px;
    line-height: 1.692;
    }
    
    .c-checkout_aside-feature_item-guarantee {
    /* background: url(../svg/checkout/guarantee.svg) no-repeat 100% 50%; */
    background-size: 22px auto;
    }
    
    .c-checkout_aside-feature_item-cash {
    /* background: url(../svg/checkout/cash.svg) no-repeat 100% 50%; */
    background-size: 22px auto;
    }
    
    .c-checkout_aside-feature_item-express {
    /* background: url(../svg/checkout/express.svg) no-repeat 100% 50%; */
    background-size: 22px auto;
    margin-bottom: 0;
    }
    
    .c-checkout_page-highlight_logo .c-header {
    height: 110px;
    box-shadow: 0 2px 12px 0 rgba(112, 112, 112, .1);
    }
    
    .c-checkout_page-highlight_logo .c-header_logo-img {
    width: 180px;
    height: 100%;
    position: absolute;
    background-size: contain;
    left: 50%;
    top: 5px;
    transform: translate(-50%);
    }
    
    .c-checkout_steps {
    display: flex;
    position: absolute;
    top: 100px;
    z-index: 1000;
    left: 50%;
    transform: translateX(-50%);
    justify-content: space-between;
    width: 783px;
    line-height: 1.692;
    color: #a0a0a0;
    font-size: 13px;
    }
    
    .c-checkout_steps li {
    position: relative;
    }
    
    .c-checkout_steps li::before {
    position: absolute;
    content: "";
    width: 372px;
    height: 3px;
    background-color: #d0d0d0;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    }
    
    .c-checkout_steps li:first-of-type::before {
    content: unset;
    }
    
    .c-checkout_steps li.is-completed::before {
    background-color: #00bfd6;
    color: #00bfd6;
    }
    
    .c-checkout_steps-item {
    width: 20px;
    height: 20px;
    background-color: #d0d0d0;
    border-radius: 100%;
    position: relative;
    z-index: 1;
    }
    
    .c-checkout_steps-item::before {
    position: absolute;
    content: attr(data-title);
    top: -25px;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    }
    
    .c-checkout_steps li.is-completed .c-checkout_steps-item {
    background-color: #00bfd6;
    }
    
    .c-checkout_page-highlight_logo .c-checkout_aside {
    margin-top: 61px;
    margin-bottom: 100px;
    }
    
    .page-headline_ckeckout {
    color: #858585;
    margin-top: 20px;
    margin-bottom: 10px;
    }
    
    .page-headline_ckeckout span {
    font-weight: 400;
    }
    
    .c-checkout_contact {
    background-color: #fff;
    box-shadow: 0 12px 12px 0 rgba(181, 181, 181, .1);
    border: 1px solid #e7e7e7;
    margin-bottom: 20px;
    position: relative;
    }
    
    .c-checkout_contact-cotent {
    padding: 20px 43px 22px 20px;
    color: #6d6d6d;
    }
    
    .c-checkout_contact-cotent::before {
    position: absolute;
    content: "";
    background-color: #8dd4dc;
    top: 0;
    bottom: 0;
    width: 5px;
    right: -1px;
    }
    
    .c-checkout_contact-item {
    font-size: 12px;
    line-height: 34px;
    }
    
    .c-checkout_contact-item_username {
    font-size: 15px;
    line-height: 1.467;
    font-weight: 700;
    margin-bottom: 5px;
    }
    
    .c-checkout_contact-content-btn_edit {
    border: none;
    background: none;
    font-size: 12px;
    margin-right: 11px;
    color: #00bfd6;
    border-bottom: 1px dashed #00bfd6;
    font-weight: 700;
    line-height: 21px;
    cursor: pointer;
    }
    
    .c-checkout_contact-item_loaction {
    padding-bottom: 3.5px;
    }
    
    .c-checkout_contact-item_mobile {
    display: inline-block;
    font-size: 14px;
    line-height: 1.571;
    padding-left: 10px;
    border-left: 1px solid #e4e4e4;
    }
    
    .c-checkout_contact-item_post-code {
    display: inline-block;
    font-size: 14px;
    line-height: 1.571;
    margin-right: 10px;
    }
    
    .c-checkout_contact-badge {
    background-color: #f3fbff;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    border: 1px solid #8dd4dd;
    top: 50%;
    position: absolute;
    right: -20px;
    transform: translateY(-50%);
    }
    
    .c-checkout_contact-badge::before {
    font-family: digikala;
    content: "\e029";
    position: absolute;
    top: 14px;
    left: 13px;
    font-size: 11px;
    color: #00bfd6;
    line-height: 1;
    }
    
    .c-checkout_contact-loaction_edit-btn {
    position: absolute;
    left: 20px;
    top: 20px;
    border: none;
    background-color: #ededed;
    padding: 3px 10px 4px;
    color: #6d6d6d;
    border-radius: 5px;
    line-height: 25px;
    }
    
    .c-checkout_invoice {
    background-color: #fff;
    box-shadow: 0 12px 12px 0 rgba(181, 181, 181, .1);
    border: 1ps solid #e7e7e7;
    padding: 25px 40px;
    margin-bottom: 29px;
    }
    
    
    /* .c-checkout_invoice-headline {
    display: flex;
    } */
    
    .c-checkbox_primary {
    width: 22px;
    height: 21px;
    }
    
    .c-checkbox_primary .c-checkbox_check {
    border-color: #b7b7b7;
    border-radius: 5px;
    }
    
    .c-checkbox_primary input[type="checkbox"]:checked+.c-checkbox_check::before {
    left: 3px;
    top: 3px;
    font-size: 12px;
    }
    
    .c-checkout_invoice-headline>span {
    margin-right: 10px;
    font-size: 15px;
    line-height: 1.467;
    color: #5e5e5e;
    }
    
    .c-message {
    padding: 15px 20px;
    line-height: 22px;
    border-radius: 5px;
    }
    
    .c-message_info {
    background-color: #fffde4;
    border: 1px solid #f6e8a1;
    color: #a37731;
    }
    
    .c-checkout_actions {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 5px 0;
    margin-top: 15px;
    }
    
    .c-checkout_actions button {
    border: none;
    background: none;
    padding: 0;
    }
    
    .c-remodal_checkout .c-profile_headeline-address {
    background-color: #f6f6f6;
    padding: 7px 15px 8px;
    font-size: 18px;
    line-height: 1.39;
    }
    
    .c-remodal_checkout .c-profile_headeline-address::before {
    content: unset;
    }
    
    .c-remodal_checkout .c-form_address-row {
    margin-top: 20px;
    }
    
    .c-remodal_checkout .c-form_address-col .c-form_address-row:first-child {
    margin-top: 0;
    }
    
    .c-remodal_checkout .c-input,
    .c-remodal_checkout .selectric {
    border-color: #9b9b9b;
    }
    
    .c-remodal_checkout .btn-submit {
    font-size: 18px;
    font-weight: 400;
    padding: 20px 100px 20px 20px;
    line-height: 1.222;
    letter-spacing: -.7px;
    }
    
    .c-remodal_checkout .btn-submit::before {
    content: "\e028";
    font-size: 27px;
    top: 16px;
    right: 23px;
    }
    
    .c-remodal_checkout .btn-submit::after {
    width: 95px;
    height: 95px;
    right: -20px;
    top: -15px;
    }
    
    .page-header {
    margin-top: 17px;
    margin-bottom: 20px;
    }
    
    .page-header_row {
    display: flex;
    margin-right: -10px;
    }
    
    .page-header_content {
    padding-right: 10px;
    }
    
    .c-checkout_paymethod {
    box-shadow: 0 12px 12px rgba(181, 181, 181, .1);
    background-color: #fff;
    border: 1px solid #e7e7e7;
    }
    
    .c-checkout_paymethod-item {
    padding: 30px 158px 38px 94px;
    position: relative;
    display: flex;
    }
    
    .c-checkout_paymethod-item .is-selected {
    background-color: #fbffff;
    }
    
    .c-checkout_paymethod-item_cash::before {
    font-family: digikala;
    content: "\e07c";
    position: absolute;
    right: 86px;
    font-size: 25px;
    top: 38px;
    line-height: 1;
    color: #c6c6c6;
    }
    
    .c-checkout_paymethod-item_cash.is-selected::before {
    color: #00bfd6;
    }
    
    .c-radio {
    width: 14px;
    height: 14px;
    position: relative;
    display: inline-block;
    }
    
    .c-radio input[type="radio"] {
    visibility: hidden;
    position: absolute;
    }
    
    .c-radio_check {
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #ccc;
    position: absolute;
    border-radius: 50%;
    }
    
    .c-radio input[type="radio"]:checked+.c-radio_check::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #00bfd6;
    border-radius: inherit;
    left: 1px;
    top: 1px;
    }
    
    .c-checkout_paymethod-item .c-radio {
    position: absolute;
    right: 40px;
    top: 41px;
    }
    
    .c-radio_primary {
    width: 19px;
    height: 19px;
    }
    
    .c-radio_primary input[type="radio"]:checked+.c-radio_check::before {
    width: 15px;
    height: 15px;
    }
    
    .c-checkout_paymethod-title {
    font-size: 16px;
    line-height: 1.375;
    font-weight: 700;
    letter-spacing: -.7px;
    }
    
    .c-checkout_paymethod-title span {
    display: block;
    font-size: 14px;
    color: #a0a0a0;
    margin-top: 5px;
    letter-spacing: -.5px;
    line-height: 1.571;
    }
    
    .c-checkout_paymethod-options {
    border-top: 1px solid #e2f2f4;
    padding: 18px 20px 24px;
    line-height: 1.571;
    }
    
    .c-checkout_paymethod-providers {
    display: flex;
    margin: -16px -16px 0 0;
    position: relative;
    }
    
    .c-checkout_paymethod-providers_arrow {
    width: 14px;
    height: 14px;
    position: absolute;
    border-left: 1px solid #cbf1f5;
    border-top: 1px solid #cbf1f5;
    transform: rotate(45deg);
    top: -10px;
    right: 100px;
    background-color: #fbffff;
    }
    
    .c-checkout_paymethod-providers label {
    height: 64px;
    border: 1px solid #cbf1f5;
    padding: 7px 16px;
    margin-right: 16px;
    margin-top: 16px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    cursor: pointer;
    }
    
    .c-checkout_paymethod-providers label.is-selected {
    background-color: #cbfdff;
    }
    
    .c-checkout_paymethod-providers label img {
    max-width: 80px;
    max-height: 50px;
    }
    
    .c-checkout_paymethod-providers_title {
    display: block;
    margin-right: 10px;
    }
    
    .c-checkout_paymethod-providers .c-radio {
    display: none;
    }
    
    .c-checkout_order-summary {
    margin-bottom: 29px;
    background-color: #fff;
    border: 1px solid #e7e7e7;
    box-shadow: 0 12px 12px 0 rgba(181, 181, 181, .1);
    padding: 15px 20px;
    }
    
    .c-checkout_order-summary-item {
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    }
    
    .c-checkout_order-summary_header {
    background-color: #fcfcfc;
    padding: 9px 25px 9px 50px;
    cursor: pointer;
    position: relative;
    border-radius: 6px;
    }
    
    .c-checkout_order-summary_header.is-active {
    border-bottom: 1px solid #e7e7e7;
    border-radius: 6px 6px 0 0;
    }
    
    .c-checkout_order-summary_header::before {
    font-family: digikala;
    position: absolute;
    content: "\e010";
    left: 30px;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #c6c6c6;
    }
    
    .c-checkout_order-summary_header.is-active::before {
    transform: rotate(180deg) translateY(50%);
    }
    
    .c-checkout_order-summary_row {
    display: flex;
    margin-right: -10px;
    margin-left: -10px;
    }
    
    .c-checkout_order-summary_col {
    padding-right: 10px;
    padding-left: 10px;
    width: 100%;
    flex-basis: 20%;
    font-weight: 700;
    letter-spacing: -.4px;
    color: #858585;
    flex-grow: 1;
    line-height: 25px;
    }
    
    .c-checkout_order-summary_col span {
    font-size: 12px;
    display: block;
    color: #919191;
    line-height: 21px;
    }
    
    .c-checkout_order-summary_col-post-time {
    letter-spacing: -.7px;
    }
    
    .c-checkout_order-summary_content {
    padding: 30px 0;
    display: none;
    }
    
    .is-active+.c-checkout_order-summary_content {
    display: block;
    }
    
    .c-checkout_order-summary_content .c-swiper {
    padding: 0 10px;
    box-shadow: unset;
    margin-top: 0;
    }
    
    .c-checkout_order-summary_content .c-swiper_slide {
    padding: 0 10px;
    text-align: center;
    }
    
    .c-checkout_order-summary_content .c-swiper_img {
    height: 145px;
    margin-top: 10px;
    margin-bottom: 15px;
    /* display: block; */
    }
    
    .c-checkout_order-summary_content .c-swiper_title {
    font-size: 13px;
    font-weight: 700;
    color: #858585;
    letter-spacing: -.4px;
    }
    
    .c-checkout_order-summary_option {
    margin-top: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #b9b9b9;
    letter-spacing: -.4px;
    line-height: 1.833;
    }
    
    .c-checkout_order-summary_option span {
    display: block;
    }
    
    .c-cart_page_row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
    }
    
    .c-checkout_price-options {
    flex-basis: 100%;
    max-width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    /* background-color: red; */
    }
    
    .c-checkout_price-options_continer {
    background-color: #fff;
    box-shadow: 0 12px 12px 0 rgba(181, 181, 181, .1);
    border: 1px solid #e6e6e6;
    padding: 15px 15px 30px;
    }
    
    .c-checkout_price-options_header {
    padding-right: 5px;
    margin-bottom: 9px;
    }
    
    .c-checkout_price-options_header>span:first-of-type {
    font-size: 18px;
    line-height: 31px;
    color: #777676;
    }
    
    .c-checkout_price-options_desc {
    line-height: 2.36;
    margin-bottom: 14px;
    }
    
    .c-checkout_price-options_row {
    display: flex;
    justify-content: space-between;
    }
    
    .c-checkout_price-options_fields {
    width: calc(100% - 171px);
    position: relative;
    }
    
    .c-checkout_price-options_gift-input {
    position: absolute;
    top: 0;
    right: 0;
    /* bottom: 0; */
    width: calc(100% - 40px);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left-color: #acacac;
    }
    
    .c-checkout_price-options_button {
    width: 161px;
    }
    
    .c-checkout_price-options_button .btn-primary12 {
    width: unset;
    padding: 11px 31px;
    letter-spacing: 0;
    white-space: nowrap;
    font-weight: 400;
    border: 1px solid #148693;
    }
    
    .c-payment_page .c-checkout_aside {
    margin-bottom: 72px;
    margin-top: 0;
    }
    
    .c-checkout_paymethod-item .c-tooltip {
    height: 0;
    margin-top: 24.5px;
    }
    
    .c-stars {
    display: flex;
    position: relative;
    font-size: 18px;
    }
    
    .c-profile_wishlist .c-stars {
    margin-top: 10px;
    width: 100px;
    }
    
    .c-stars_item::before {
    display: inline-block;
    width: 15px;
    height: 14px;
    /* background: url(../svg/star.svg) no-repeat 50% 50%; */
    content: "";
    background-size: 100%;
    }
    
    .c-stars_selected {
    position: absolute;
    display: flex;
    overflow: hidden;
    }
    
    .c-stars_selected .c-stars_item::before {
    /* background-image: url(../svg/star_fill.svg); */
    }
    
    .btn-gray {
    background-color: #7a7a7a;
    border: unset;
    }
    
    .mobile-container {
    display: none;
    }
    
    .mobile-main_menu {
    display: none;
    }
    
    .mobile-main_slider {
    display: none;
    }
    
    .mobile-discount_title {
    display: none;
    }
    
    .mobile-discount_price-primary {
    display: none;
    }
    
    .mobile-discount_show-more {
    display: none;
    }
    
    .c-profile_message.in-mobile {
    display: none;
    }
    
    .in-mobile {
    display: none;
    }
    
    .c-product_headline .in-mobile {
    display: none;
    }
    
    .c-checkout_product-content {
    background: #fff;
    border: 1px solid #e7e7e7;
    box-shadow: 0 12px 12px 0 rgba(181, 181, 181, .1);
    }
    
    .c-checkout_product-content .c-swiper {
    margin: 0;
    padding: 10px 15px 0;
    box-shadow: unset;
    border-bottom: 1px solid #e7e7e7;
    }
    
    .c-checkout_product-content .c-swiper_url {
    padding: 10px;
    }
    
    .c-checkout_product-content .c-swiper_img {
    /* height: 90px; */
    padding: 0 10px 5px;
    justify-content: center;
    }
    
    .c-checkout_product-content .c-swiper_img img {
    max-height: 100%;
    max-width: 100%;
    }
    
    .c-checkout_product-content .c-swiper_title {
    margin-top: 0;
    font-size: 11px;
    letter-spacing: -.3px;
    line-height: 22px;
    }
    
    .c-checkout_time {
    padding: 18px;
    }
    
    .c-checkout_time-title {
    color: #858585;
    line-height: 2;
    letter-spacing: -.3px;
    }
    
    .c-checkout_time-subtitle {
    font-size: 11px;
    display: flex;
    color: #a2a2a2;
    letter-spacing: -.2px;
    line-height: 2;
    }
    
    .c-checkout_time-subtitle>li:not(:last-child) {
    border-left: 1px solid #e0e0e0;
    margin-left: 10px;
    padding-left: 10px;
    }
    
    .div1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    }
    
    .c-checkout_swiper-product_amount {
    display: none;
    }
    
    .c-slide.fadein {
    opacity: 1;
    }
    
    .c-slider_dots {
    left: 50%;
    z-index: 3000;
    height: 15px;
    position: absolute;
    display: inline-flex;
    bottom: 34px;
    transform: translateX(-50%);
    align-items: center;
    }
    
    .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background-color: #ffffff;
    margin: 0 6px;
    border-radius: 100%;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .3);
    opacity: .8;
    cursor: pointer;
    }
    
    .swiper-pagination-bullet:hover {
    width: 11px;
    height: 11px;
    margin: 0 5.5px;
    }
    
    .swiper-pagination-bullet-active {
    background-color: #00bfd6;
    opacity: 1;
    }
    
    .c-remodal_gallery .c-slider_dots {
    display: none;
    }
    
    .c-remodal_share {
    max-width: 719px;
    }
    
    .c-remodal_share-main {
    display: flex;
    }
    
    .c-remodal_share-aside {
    flex-basis: 43%;
    max-width: 43%;
    padding: 15px 30px;
    }
    
    .c-remodal_share-title {
    font-size: 17px;
    letter-spacing: -.4px;
    color: #565656;
    }
    
    .c-remodal_share-icon {
    height: 389px;
    position: relative;
    }
    
    .c-remodal_share-icon::before {
    font-family: digikala;
    content: "\e0b5";
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 196px;
    transform: translate(-50%, -50%);
    color: #e0e0e0;
    }
    
    .c-remodal_share-content {
    flex-basis: 57%;
    max-width: 57%;
    padding: 46px 21px 0;
    background-color: #fcfcfc;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }
    
    .c-form_share-title {
    letter-spacing: -.3px;
    line-height: 1.571;
    color: #565656;
    margin-bottom: 12px;
    }
    
    .c-form_share-row {
    display: flex;
    margin: 0 -10px 30px;
    }
    
    .c-form_share-col {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    }
    
    .c-form_share-row_btn-share {
    margin-bottom: 24px;
    }
    
    .c-btn_share-group {
    margin-right: -12px;
    }
    
    .c-btn_share-group li {
    margin-right: 12px;
    display: inline-flex;
    }
    
    .btn-share {
    width: 40px;
    height: 38px;
    background: #ccc;
    display: inline-block;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: #fff;
    }
    
    .btn-share::before {
    position: absolute;
    font-family: digikala;
    line-height: 1;
    }
    
    .btn-share::after {
    width: 200%;
    height: 200%;
    position: absolute;
    right: -50%;
    top: -50%;
    background: #fff3;
    content: "";
    opacity: 0;
    transition: all .3s ease-in-out;
    }
    
    .btn-share:hover::after {
    opacity: 1;
    }
    
    .btn-share_twitter {
    background-color: #4dcceb;
    }
    
    .btn-share_twitter::before {
    content: "\e0c4";
    font-size: 20px;
    left: 8px;
    top: 9px;
    }
    
    .btn-share_fb {
    background-color: #4d8eeb;
    }
    
    .btn-share_fb::before {
    content: "\e045";
    font-size: 24px;
    left: 13px;
    top: 7px;
    }
    
    .btn-share_gplus {
    background-color: #eb4d4d;
    }
    
    .btn-share_gplus::before {
    content: "\e04c";
    font-size: 22px;
    left: 12px;
    top: 9px;
    }
    
    .c-input_send-to-email {
    position: relative;
    display: block;
    }
    
    .c-input_send-to-email::before {
    font-family: digikala;
    position: absolute;
    line-height: 1;
    content: "\e03c";
    font-size: 22px;
    left: 11px;
    top: 9px;
    color: #a7a7a7;
    }
    
    .c-input_send-to-email .c-input {
    padding-right: 20px;
    }
    
    .c-form_share-row_submit {
    margin-top: -15px;
    }
    
    .c-form_share .btn-primary12 {
    width: unset;
    padding: 11px 31px;
    margin-left: 10px;
    font-weight: normal;
    letter-spacing: normal;
    min-width: 109px;
    border-color: #148693;
    }
    
    .c-remodal_share-url_title {
    margin-bottom: 12px;
    color: #565656;
    line-height: 1.571;
    letter-spacing: -.3px;
    }
    
    .c-remodal_share-url_row {
    display: flex;
    margin-right: -21px;
    margin-left: -21px;
    }
    
    .c-remodal_share-url_col {
    width: 100%;
    }
    
    .c-url {
    position: relative;
    display: inline-block;
    width: 100%;
    }
    
    .c-url::before {
    font-family: digikala;
    position: absolute;
    line-height: 1;
    content: "\e061";
    font-size: 23px;
    left: 20px;
    top: 15px;
    color: #bababa;
    }
    
    .c-url_input {
    background: none;
    border: none;
    padding: 17px 12px 16px 54px;
    width: 100%;
    direction: ltr;
    color: #a9a9a9;
    font-size: 17px;
    letter-spacing: -.4px;
    border-top: 1px solid #efefef;
    line-height: 1.294;
    }
    
    .c-brand_profile {
    background-color: #fff;
    border: 1px solid #dcdcdc;
    margin: 0 0 33px;
    }
    
    .c-brand_profile-header {
    height: 214px;
    width: 100%;
    /* background: url(../svg/brand_background.svg) repeat 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 110%;
    }
    
    .c-brand_profile-avatar {
    background-color: #fff;
    padding: 10px;
    border-radius: 15px;
    border: 1px solid #ebebeb;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .08);
    }
    
    .c-brand_profile-avatar_img {
    width: 145px;
    height: 145px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
    }
    
    .c-brand_profile-details {
    height: 72px;
    position: relative;
    padding: 0 48px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    }
    
    .c-brand_profile-name {
    font-size: 17px;
    line-height: 29px;
    letter-spacing: -.4px;
    color: #555;
    font-weight: 700;
    }
    
    .c-brand_profile-share_btn {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 34px;
    height: 34px;
    }
    
    .c-brand_profile-share_btn::before {
    font-family: digikala;
    content: "\e0ab";
    font-size: 20px;
    border: 1px solid #cacaca;
    padding: 5px 8px;
    line-height: 1.1;
    position: absolute;
    border-radius: 8px;
    }
    
    .c-brand_profile-url {
    font-size: 12px;
    text-align: left;
    direction: ltr;
    color: #ababab;
    max-width: 100%;
    width: 100%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    }
    
    .c-404_page {
    /* background: url(../img/404_background.png); */
    background-size: auto 100%;
    }
    
    .c-404 {
    padding: 68px 0;
    text-align: center;
    line-height: 22px;
    }
    
    .c-404_title h1 {
    font-size: 36px;
    line-height: 1.222;
    }
    
    .c-404_action {
    display: inline-flex;
    }
    
    .c-404_action .btn-primary {
    background-color: #6ab946;
    border: 1px solid #4aa42e;
    min-width: 161px;
    padding: 10px 20px;
    margin: 10px 10px 46px;
    }
    
    .c-404_img {
    width: 90%;
    max-width: 677px;
    margin: auto;
    }
    
    .c-404_img img {
    width: 100%;
    }
    
    @media screen and (max-width:900px) {
    .header_hidden {
    display: none !important;
    }
    }
    
    .carousel-inner {
    border-radius: 10px;
    }
    
    @media screen and (min-width:1366px) {
    .c-header_search {
    padding-left: 150px;
    }
    .c-search input {
    font-size: 14px;
    line-height: 1.571;
    }
    .c-topmenu_list-a {
    padding: 10px 20px 9px;
    font-size: 12px;
    line-height: 1.833;
    }
    .c-topmenu_list-special_items li:first-of-type {
    display: block;
    }
    .c-topmenu_sublist-img {
    width: 350px;
    }
    .c-sliders_right {
    display: block;
    min-width: 17.5%;
    max-width: 17.5%;
    }
    .c-topmenu_sublist {
    padding-left: 360px;
    }
    .c-sliders_right-singleimg {
    display: block;
    }
    .c-sliders_left {
    max-width: 82.5%;
    min-width: 82.5%;
    padding-right: 15px;
    }
    .c-main_slider {
    height: 329px;
    }
    .c-discount {
    height: 461px;
    }
    .c-discount_left {
    flex-basis: 100%;
    max-width: 100%;
    }
    .c-discount_box {
    flex-direction: row;
    }
    .c-discount_container {
    padding: 70px 45px 40px 160px;
    height: 463px;
    }
    .c-discount_image {
    flex-basis: 50%;
    max-width: 50%;
    }
    .c-discount_image-top-bar {
    width: 264px;
    top: -70px;
    }
    .c-discount_image-top-bar::before {
    background-size: auto 21px;
    }
    .c-discount_prop {
    flex-basis: 41.667%;
    max-width: 41.667%;
    }
    .c-discount_aside {
    min-width: 250px;
    padding: 11px 0 47px;
    border-right: 1px solid #ececec;
    letter-spacing: -.5px;
    }
    .c-discount_aside-li {
    height: 40px;
    align-items: center;
    display: flex;
    }
    .c-discount_aside-a {
    padding: 0 18px 0 0;
    color: #464646;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    }
    .c-discount_aside-a span {
    font-size: 13px;
    }
    .c-discount_aside-a.is-active {
    color: #fff;
    background-color: #ef5661;
    }
    .c-discount_aside-a::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 6px;
    right: -9px;
    background-color: #ef5661;
    opacity: 0;
    border-radius: 3px;
    }
    .c-discount_aside-a.is-active::before {
    opacity: 1;
    }
    .c-discount_aside-button {
    height: 47px;
    background-color: #00efd6;
    color: #fff;
    border-radius: 0 0 0 3px;
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    padding: 10px 40px 11px 30px;
    justify-content: center;
    overflow: hidden;
    }
    .c-discount_aside-button::before {
    height: 90px;
    width: 90px;
    opacity: .21;
    border-radius: 100%;
    right: -55px;
    top: -20px;
    background-color: #fff;
    transition: all .3s ease-in-out;
    }
    .c-discount_aside-button:hover::before {
    width: 100%;
    right: 0;
    border-radius: 0;
    }
    .c-discount_aside-button::after {
    font-family: digikala;
    content: "\e010";
    position: absolute;
    right: 6px;
    top: 50%;
    font-size: 20px;
    font-weight: 700;
    transform: translateY(-50%) rotateY(180deg);
    }
    .c-discount_right {
    display: none;
    }
    .c-feature_main-page {
    display: none;
    }
    .c-top_swiper-right {
    flex-basis: 83.3%;
    max-width: 83.3%;
    }
    .c-top_swiper-left {
    flex-basis: 16.6%;
    max-width: 16.6%;
    }
    .c-swiper_brand .c-swiper_slide {
    height: 160px;
    }
    .c-footer {
    padding: 90px 41px 0;
    }
    .c-footer_links-col {
    width: calc(25% - 2px);
    }
    .c-footer_contact li:nth-of-type(2) {
    border-right: 1px solid #979797;
    margin-right: 20px;
    padding-right: 20px;
    }
    .c-footer_contact li:first-of-type {
    width: unset;
    }
    .c-footer_more-info {
    padding: 0 41px;
    margin: 0 -41px;
    }
    .c-footer_seo h1 {
    line-height: 1.375;
    }
    .c-breadcrumb {
    font-size: 12px;
    line-height: 1.833;
    }
    .c-breadcrumb li:last-of-type {
    font-size: 14px;
    line-height: 1.571;
    }
    .c-category_card-header {
    font-size: 20px;
    }
    .c-category_card-list {
    padding-top: 23px;
    }
    .c-category_card-list li {
    padding-right: 69px;
    margin: 12px 0;
    }
    .c-category_card-list li:last-child {
    margin-bottom: 28px;
    }
    .c-category_card-list li::before {
    width: 10px;
    height: 10px;
    right: 33px;
    border-radius: 5px;
    }
    .c-category_card-footer {
    font-size: 15px;
    line-height: 1.46;
    }
    .c-search_page-right {
    flex-basis: 19.2%;
    max-width: 19.2%;
    }
    .c-box_search-input::before {
    right: 12px;
    top: 10px;
    font-size: 19px;
    }
    .c-box_search-input {
    padding-right: 38px;
    }
    .c-search_page-left {
    flex-basis: 80.8%;
    max-width: 80.8%;
    }
    .c-listing_sort li a {
    padding: 0 10px;
    }
    .c-listing_items>li {
    max-width: 25%;
    }
    .c-listing_items .c-prodcut_box-img {
    height: 230px;
    }
    .c-product_box-price_value {
    font-size: 20px;
    line-height: 34px;
    }
    .c-product_box-price_currency {
    font-size: 17px;
    }
    .c-product_box-price del {
    font-size: 16px;
    line-height: 28px;
    }
    .c-search_page-list.is-list .c-prodcut_box-img {
    flex-basis: 230px;
    }
    .c-search_page-list.is-list .c-product_box-content {
    padding-left: 20px;
    }
    .c-search_page-list.is-list .c-product_box-tags {
    padding-left: 20px;
    }
    .c-search_page-list.is-list .c-product_box-prop {
    flex-basis: 241px;
    padding-right: 20px;
    }
    .c-remodal_compare {
    max-width: 980px;
    }
    .c-remodal_compare-content_item1 {
    width: 221px;
    height: 215px;
    }
    .c-remodal_compare-content_img {
    height: 115px;
    }
    .c-profile_wishlist-list_item {
    max-width: calc(50% - 10.5px);
    padding: 30px 0 20px;
    }
    .c-profile_wishlist-list_item:first-child,
    .c-profile_wishlist-list_item:nth-child(2) {
    margin-top: 0;
    }
    .c-profile_address-container {
    max-width: 50%;
    flex-basis: 50%;
    }
    .c-form_edit-user_col {
    padding: 0 55px;
    }
    .c-form_edit-user_label {
    flex-basis: 18%;
    max-width: 18%;
    }
    .c-form_edit-user_field {
    flex-basis: 82%;
    max-width: 82%;
    }
    .c-form_edit-user_label>label {
    padding-right: 5px;
    margin-bottom: 0;
    }
    .c-cart_page-content {
    max-width: 75.5%;
    flex-basis: 75.5%;
    }
    .c-cart_page-aside {
    max-width: 24.5%;
    flex-basis: 24.5%;
    }
    .c-checkout_price-options {
    flex-basis: 50%;
    max-width: 50%;
    }
    .c-product {
    margin-bottom: 20px;
    }
    .c-product_gallery {
    flex-basis: 516px;
    max-width: 516px;
    }
    .c-gallery_items li {
    flex-basis: 20%;
    max-width: 20%;
    }
    .c-gallery_items li:nth-child(4) {
    display: flex;
    }
    .c-product_title {
    font-size: 17px;
    line-height: 1.294;
    }
    .c-product_headline span {
    font-size: 14px;
    line-height: 1.571;
    }
    .c-product_config {
    flex-basis: 534px;
    }
    .c-product_directory {
    font-size: 12px;
    }
    .c-product_delivery {
    font-size: 13px;
    line-height: 1.692;
    }
    .c-product_delivery-seller>span {
    border-right: 1px solid #e8e8e8;
    margin-right: 16px;
    padding-right: 16px;
    width: unset;
    margin-top: 0;
    display: inline;
    }
    .c-product_params {
    flex-basis: 221px;
    }
    .c-product_feature {
    display: flex;
    }
    .c-product_feature-body {
    display: none;
    }
    .c-product_price-value del {
    line-height: 1.375;
    }
    .c-product_offer {
    padding: 0 65px 0 0;
    font-size: 13px;
    line-height: 2;
    text-align: right;
    }
    .c-product_offer::before {
    font-size: 45px;
    right: 0;
    top: 4px;
    transform: translateX(0);
    }
    }
    
    @media screen and (max-width:1365px) {
    .c-discount_right {
    display: block;
    flex-basis: 22.5%;
    }
    .c-discount_right-singleimg {
    height: 335.7px;
    overflow: hidden;
    border-radius: 5px;
    }
    .c-discount_right-singleimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }
    .c-discount_aside-button {
    display: none;
    }
    .c-discount_right-show_more {
    height: 60px;
    line-height: 60px;
    background-color: #00efd6;
    color: #fff;
    border-radius: 5px;
    letter-spacing: -.5px;
    position: relative;
    padding-right: 40px;
    justify-content: center;
    overflow: hidden;
    margin-top: 16.2%;
    display: flex;
    box-shadow: 0 8px 14px 0 rgba(0, 0, 0, .03);
    }
    .c-discount_right-show_more::before {
    height: 90px;
    width: 90px;
    opacity: .21;
    border-radius: 100%;
    right: -40px;
    top: 50%;
    background-color: #fff;
    transition: all .3s ease-in-out;
    position: absolute;
    transform: translateY(-50%);
    content: "";
    }
    .c-discount_right-show_more:hover::before {
    right: -200px;
    height: 900px;
    width: 900px;
    top: -500px;
    transform: unset;
    cursor: pointer;
    }
    .c-discount_right-show_more::after {
    font-family: digikala;
    content: "\e010";
    position: absolute;
    right: 6px;
    top: 50%;
    font-size: 20px;
    font-weight: 700;
    transform: translateY(-50%) rotateY(180deg);
    }
    .c-discount_aside {
    height: 60px;
    }
    .c-discount_aside-container {
    position: relative;
    }
    .c-discount_aside-ul {
    display: flex;
    position: absolute;
    transition: right .3s ease-in-out;
    }
    .c-discount_aside-li {
    padding: 10px;
    white-space: nowrap;
    }
    .c-discount_aside-a {
    padding: 10px 25px;
    line-height: 22px;
    display: block;
    border-radius: 5px;
    }
    .c-discount_aside-a.is-active {
    background-color: #ef5661;
    color: #fff;
    }
    .c-discount_aside-button {
    display: none;
    }
    .c-discount_btn-next,
    .c-discount_btn-prev {
    position: absolute;
    top: 0;
    cursor: pointer;
    width: 43px;
    height: 100%;
    z-index: 3;
    }
    .c-discount_btn-next::before,
    .c-discount_btn-prev::before {
    font-family: digikala;
    position: absolute;
    font-size: 18px;
    margin-top: 20px;
    left: 13px;
    line-height: 1;
    z-index: 2;
    }
    .c-discount_btn-next::before {
    content: "\e011";
    }
    .c-discount_btn-next {
    left: 0;
    }
    .c-discount_btn-prev::before {
    content: "\e014";
    }
    .c-discount_btn-prev {
    right: 0;
    }
    .c-discount_btn-prev::after {
    right: -57px;
    }
    .c-discount_btn-next::after,
    .c-discount_btn-prev::after {
    content: "";
    position: absolute;
    background-color: rgba(255, 255, 255, .7);
    height: 100px;
    width: 100px;
    border-radius: 50%;
    transform: translateY(-50%);
    top: 50%;
    }
    .c-feature_main-page {
    background-color: #fff;
    width: 100%;
    padding: 16px 40px;
    margin-top: 17px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03);
    }
    }
    
    @media screen and (max-width:720px) {
    @font-face {
    font-family: "mobile-digikala";
    src: url(../fonts/mobile-digikala.fe9994c00da14092e0e752ff6f86d990.eot) format("embedded-opentype"), url(../fonts/mobile-digikala.d2d4849f4113b96bbc79ee7b5ccf13c0.ttf) format("truetype"), url(../fonts/mobile-digikala.2c5b0e7c84747738c1bfe3f6bceac481.woff) format("woff"), url(../fonts/mobile-digikala.21d577932bbb77fc396e272f96c5c84e.woff2) format("woff2");
    }
    .c-header_row,
    .c-header_nav {
    display: none;
    }
    .c-header {
    background-color: #f9f9f9;
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    width: 100%;
    transition: all .3s ease-in-out;
    }
    .header-product {
    position: absolute;
    /* width: 800px; */
    }
    .mobile-container {
    display: block;
    padding-right: 8px;
    padding-left: 8px;
    }
    .container1 {
    padding-right: 8px;
    padding-left: 8px;
    min-width: unset;
    }
    html {
    min-width: unset;
    }
    .mobile-header_nav {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    }
    .mobile-header_categories {
    border: none;
    background: none;
    font-weight: 700;
    color: #858585;
    padding-right: 41px;
    position: relative;
    }
    .mobile-header_categories-icon,
    .mobile-header_categories-icon::before,
    .mobile-header_categories-icon::after {
    content: "";
    position: absolute;
    width: 31px;
    height: 3px;
    right: 0;
    background-color: #929292;
    }
    .mobile-header_categories-icon {
    top: 50%;
    }
    .mobile-header_categories-icon::before {
    bottom: 100%;
    margin-bottom: 5px;
    }
    .mobile-header_categories-icon::after {
    top: 100%;
    margin-top: 5px;
    }
    .mobile_header_logo {
    width: 93px;
    height: 25px;
    }
    .mobile_header_logo a {
    /* background-image: url(../svg/logo.svg); */
    display: block;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: contain;
    }
    .mobile-header_search {
    padding: 14px 0 16px 8px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    }
    .mobile-header_search.is-active .mobile-header_search-container {
    flex-basis: 100% !important;
    flex-shrink: 0;
    width: 100%;
    }
    .mobile-header_search-container {
    flex-basis: auto;
    flex-grow: 20;
    flex-shrink: 1;
    transition: all .4s ease-in-out;
    }
    .mobile-header_search-container::before {
    font-family: mobile-digikala;
    content: "\e057";
    font-size: 24px;
    position: absolute;
    bottom: 25px;
    right: 18px;
    line-height: 1;
    color: #929292;
    }
    .mobile-header_search-container::after {
    content: "";
    border-right: 1px solid rgba(163, 163, 163, .5);
    position: absolute;
    height: 27px;
    bottom: 25px;
    right: 50px;
    line-height: 1;
    color: #929292;
    }
    .mobile-input_search {
    width: 100%;
    padding: 9px 53px 8px 10px;
    border-radius: 8px;
    border: 1px solid #979797;
    font-size: 12px;
    line-height: 1.833;
    font-weight: 700;
    color: #858585;
    }
    .mobile-header_search.is-active .mobile-input_search {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    }
    .mobile-input_search::placeholder {
    font-weight: 400;
    letter-spacing: -.7px;
    color: #c5c5c5;
    }
    .c-search_result {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .09);
    left: 15px;
    border-radius: 0 0 5px 5px;
    padding: 10px;
    }
    .c-search_result-footer {
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, .5);
    font-weight: 700;
    letter-spacing: normal;
    }
    .c-search_result-footer ul li {
    background-color: #eee;
    border: 1px solid #d5d5d5;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    height: unset;
    border-radius: 100px;
    }
    .c-search_result-footer ul li a {
    padding: 5px 15px;
    font-size: 15px;
    line-height: 1.467;
    color: rgba(0, 0, 0, .5);
    }
    .mobile-header_cart {
    position: relative;
    margin-right: 22px;
    max-width: 29px;
    }
    .mobile-header_cart::before {
    font-family: mobile-digikala;
    content: "\e017";
    font-size: 30px;
    color: #929292;
    line-height: 1;
    }
    .mobile-header_cart[data-counter]::after {
    content: attr(data-counter);
    position: absolute;
    top: -3px;
    height: 20px;
    width: 20px;
    background-color: #00bfd6;
    right: -2px;
    color: #fff;
    border-radius: 100%;
    padding: 0 6px;
    line-height: 23px;
    }
    .mobile-header_profile {
    margin-right: 22px;
    max-width: 27px;
    position: relative;
    margin-top: 2px;
    }
    .mobile-header_profile::before {
    font-family: mobile-digikala;
    content: "\e002";
    font-size: 30px;
    line-height: 1;
    color: #929292;
    }
    .mobile-header_profile .c-header_btn-user_has-notifiction {
    position: absolute;
    left: 12px;
    top: 12px;
    height: 21px;
    width: 21px;
    }
    .mobile-main_menu {
    display: block;
    width: 285px;
    height: 100vh;
    position: fixed;
    background: #fff;
    z-index: 301;
    box-shadow: -2px 0 4px 0 rgba(0, 0, 0, .13);
    overflow: auto;
    transform: translateX(100%);
    transition: all .5s ease-in-out;
    }
    .mobile-main_menu.is-active {
    transform: translateX(0);
    }
    .mobile-main_menu-logo {
    /* background: url(../svg/logo2.svg) no-repeat 50% 50%; */
    background-size: auto 43px;
    height: 78px;
    margin: 0 25px 0 29px;
    border-bottom: 1px solid #e5e5e5;
    }
    .mobile-main_menu-list {
    padding: 10px 0 80px;
    }
    .mobile-main_menu-category {
    padding: 15px 54px 15px 15px;
    position: relative;
    line-height: 22px;
    display: block;
    color: #757575;
    }
    .mobile-main_menu-category::before {
    font-family: mobile-digikala;
    content: "\e04f";
    position: absolute;
    right: 25px;
    top: 17px;
    font-size: 16px;
    line-height: 1;
    }
    .mobile-main_menu-category.is-active::before {
    content: "\e042";
    }
    .mobile-main_menu-sublist {
    padding: 10px 0;
    background-color: #f5f5f5;
    box-shadow: inset 0 5px 4px -4px rgba(0, 0, 0, .06), inset 0 5px 4px -4px rgba(0, 0, 0, .06);
    display: none;
    }
    .is-active+.mobile-main_menu-sublist {
    display: block;
    }
    .mobile-main_menu-subcategory {
    padding: 10px 73px 10px 15px;
    position: relative;
    color: #757575;
    line-height: 1.571;
    display: block;
    }
    .mobile-main_menu-subcategory::before {
    font-family: mobile-digikala;
    content: "\e04f";
    position: absolute;
    right: 46px;
    top: 13px;
    font-size: 16px;
    line-height: 1;
    }
    .mobile-main_menu-subcategory.is-active::before {
    content: "\e042";
    }
    .mobile-main_menu-subcategory.is-empty::before {
    content: unset;
    }
    .mobile-main_menu-thirdlist {
    padding: 10px 0;
    display: none;
    }
    .is-active+.mobile-main_menu-thirdlist {
    display: block;
    }
    .mobile-main_menu-thirdcategory {
    padding: 10px 95px 10px 15px;
    line-height: 22px;
    display: block;
    color: #757575;
    font-weight: 300;
    position: relative;
    }
    .mobile-main_menu-subcategory_all::before {
    font-family: mobile-digikala;
    content: "\e006";
    position: absolute;
    right: 70px;
    top: 13px;
    line-height: 1;
    font-size: 16px;
    }
    .mobile-main_menu-subcategory .mobile-main_menu-subcategory_all::before {
    right: 46px;
    }
    .mobile-menu_overlay {
    background: rgba(102, 102, 102, .3);
    height: 100vh;
    z-index: 300;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: none;
    }
    .mobile-main_menu-special {
    margin-top: 5px;
    }
    .mobile-main_menu-category_special {
    background-color: #f5f5f5;
    }
    .mobile-main_menu-category_special::before {
    content: "\e050";
    color: #ef4746;
    font-size: 11px;
    right: 26px;
    line-height: 2;
    }
    .mobile-menu_overlay.is-active {
    display: block;
    }
    .c-desktop_main-slider {
    display: none;
    }
    .mobile-main_slider {
    display: block;
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 18px;
    }
    .c-slide {
    background-size: cover !important;
    }
    .c-slider_dots {
    justify-content: center;
    transform: translateX(0);
    }
    .c-slider_next,
    .c-slider_prev {
    display: none;
    }
    .c-discount_right {
    display: none;
    }
    .c-discount_left {
    flex-basis: 100%;
    max-width: 100%;
    padding-right: 0;
    }
    .c-discount_aside {
    display: none;
    }
    .c-discount {
    background-color: transparent;
    box-shadow: unset;
    height: unset;
    padding: 15px 0;
    width: calc(100% + 16px);
    margin-right: -8px;
    padding-right: 8px;
    }
    .c-discount_product {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    }
    .c-discount_container {
    display: flex !important;
    flex: 0 0 49.5vw;
    background-color: #fff;
    margin-left: 10px;
    border-radius: 9px;
    padding: 8px 0;
    height: unset;
    position: relative;
    justify-content: center;
    }
    .c-discount_content {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 269px;
    }
    .c-discount_image {
    height: 124px;
    }
    .c-discount_prop {
    flex-basis: unset;
    }
    .c-discount_price-discount_content {
    position: absolute;
    right: 0;
    top: 0;
    height: unset;
    width: unset;
    padding: 4px 6px 2px;
    font-size: 13px;
    border-radius: 0 9px 0 9px;
    background-color: #fb3449;
    letter-spacing: -.8px;
    line-height: 1;
    }
    .c-discount_image-top-bar,
    .c-discount_ul {
    display: none;
    }
    .c-discount_title {
    display: none;
    }
    .mobile-discount_title {
    display: block;
    line-height: 22px;
    height: 42px;
    text-align: center;
    padding: 0 15px;
    color: #2a2a2a;
    }
    .c-discount_counter-title {
    display: none;
    }
    .c-discount_price-primary {
    display: none;
    }
    .c-discount_price {
    display: flex;
    justify-content: center;
    text-align: center;
    }
    .mobile-discount_price-primary {
    display: block;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: .8px;
    color: #fb3449;
    }
    .mobile-discount_price-primary span {
    font-size: 14px;
    line-height: 1.9;
    }
    .mobile-discount_price-primary>del {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: .5px;
    color: #ababab;
    width: 100%;
    display: inline-block;
    }
    .c-discount_counter {
    padding: 0;
    }
    .c-counter {
    font-size: 18px;
    padding-top: 5px;
    text-align: center;
    width: 100%;
    line-height: 1.5;
    letter-spacing: .8px;
    font-weight: 400;
    color: #fb3449;
    }
    .c-counter span {
    margin: 0;
    width: unset;
    }
    .c-feature_main-page {
    display: none;
    }
    .mobile-discount_show-more {
    display: block;
    background-color: #00bfd6;
    color: #fff;
    padding: 14px;
    text-align: center;
    border-radius: 9px;
    box-shadow: 0 2px 6px 0 rgba(0, 191, 214, .5);
    font-size: 18px;
    letter-spacing: -.6px;
    margin-top: 10px;
    }
    .c-top_swiper-left {
    display: none;
    }
    .c-top_swiper-right {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0;
    }
    .c-swiper_btn-next,
    .c-swiper_btn-prev {
    display: none;
    }
    .c-swiper {
    background: transparent;
    box-shadow: unset;
    border-top: 1px solid #e5e5e5;
    padding: 0;
    }
    .c-swiper_container {
    width: calc(100% + 16px);
    margin-right: -8px;
    padding-right: 8px;
    }
    .c-swiper_headline>span {
    font-size: 14px;
    color: #858585;
    }
    .c-swiper_headline>span::after {
    background-color: #f5f5f5;
    }
    .c-swiper_slide {
    background-color: #fff;
    border-radius: 9px;
    }
    .c-swiper_url:hover {
    box-shadow: unset;
    }
    .c-swiper_url::after {
    display: none;
    }
    /* .c-discount_banner-first .c-discount_banner-item:nth-child(3),
    .c-discount_banner-first .c-discount_banner-item:nth-child(4) {
    display: none;
    } */
    .c-discount_banner {
    justify-content: space-between;
    flex-wrap: wrap;
    }
    .c-discount_banner-item {
    width: 49%;
    margin-left: 0 !important;
    }
    .c-discount_banner-single .c-discount_banner-item {
    width: 100%;
    }
    .c-swiper_brand .c-swiper_url {
    padding-bottom: 0px;
    }
    .c-swiper_brand .c-swiper_slide {
    height: unset;
    }
    .c-footer {
    background-color: #fff;
    padding-top: 0;
    margin-top: 10px;
    }
    .c-footer .container hr:first-of-type {
    display: none;
    }
    .c-footer_about {
    display: block;
    }
    .c-footer_links-col:nth-child(2) {
    display: none;
    }
    .c-footer_links-headline,
    .c-footer_contact {
    display: none;
    }
    .c-footer_links {
    margin: auto;
    }
    .c-footer_form {
    margin: 30px auto;
    border-top: 1px solid #cfd8dc;
    padding-top: 10px;
    }
    .c-footer_social {
    text-align: center;
    }
    .c-footer_social_image {
    display: flex;
    justify-content: center;
    }
    .c-footer_address {
    justify-content: center;
    }
    .c-footer_description aside {
    display: none;
    }
    .c-footer_more-info {
    background-color: #fff;
    border-top: 1px solid #cfd8dc;
    }
    .c-footer_other_site {
    display: none;
    }
    .c-discount_price-finish {
    font-size: 15px;
    }
    .c-search_page-right {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0;
    margin-bottom: 10px;
    margin-top: 20px;
    }
    .c-search_page-left {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0;
    }
    .c-listing_counter,
    .c-listing_type-list {
    display: none;
    }
    .c-search_page-left>nav {
    position: absolute;
    top: 0;
    }
    .c-search_page-container {
    position: relative;
    /* padding: 35px; */
    }
    .c-breadcrumb {
    overflow: auto;
    display: flex;
    }
    .c-breadcrumb li {
    white-space: nowrap;
    }
    .c-listing_sort::before,
    .c-listing_header::before {
    content: unset;
    }
    .c-listing_header {
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;
    overflow: auto;
    }
    .c-listing_sort {
    display: inline-flex;
    }
    .c-product_box-prop,
    .c-product_box-tags,
    .c-product_box-title-en,
    .c-product_box-compare-checkbox {
    display: none !important;
    }
    .c-search_page-list.is-list .c-prodcut_box-img {
    flex-basis: 135px;
    padding: 10px;
    max-height: 128px;
    }
    .c-search_page-list.is-list .c-product_box-title {
    background: transparent;
    font-size: 12px;
    padding: 0;
    letter-spacing: normal;
    }
    .c-product_box-row_price {
    flex-direction: row;
    }
    .c-product_box-price {
    justify-content: flex-start;
    }
    .c-product_box-price_value {
    text-align: right;
    }
    .c-search_page-list.is-list .c-product_box-content {
    padding-bottom: 0px;
    }
    .c-compare_list-header {
    position: relative;
    }
    .c-compare_header-img {
    padding: 15px;
    }
    .c-compare_title {
    font-size: 10px;
    letter-spacing: -.3px;
    }
    .c-compare_btn1 {
    padding: 7px 10px !important;
    font-size: 12px !important;
    margin-right: -10px !important;
    margin-left: -10px !important;
    border: unset !important;
    border-radius: 5px !important;
    }
    .c-compare-add {
    justify-content: center;
    }
    .c-compare_btn-gray1 {
    display: none !important;
    }
    .c-compare-add-btn {
    border: 1px solid !important;
    border-radius: 6px !important;
    padding: 11px !important;
    font-size: 11px !important;
    line-height: 1.692 !important;
    margin: -15px !important;
    }
    .c-compare-add-btn::before {
    font-size: 29px !important;
    }
    .c-remodal_compare-content_title {
    font-size: 11px;
    line-height: 1.6;
    padding: 0 6px;
    letter-spacing: -.3px;
    margin-top: 20px;
    }
    .c-compare_list-span {
    padding: 4px 8px 0;
    font-size: 12px;
    }
    .page_row {
    flex-wrap: wrap;
    }
    .page_aside {
    flex-basis: 100%;
    max-width: 100%;
    }
    .c-profile_box-header {
    height: 90px;
    }
    .c-profile_box-avatar {
    height: 102px;
    width: 102px;
    }
    .c-profile_box-avatar_edit {
    width: 35px;
    height: 35px;
    top: 93%;
    left: 60%;
    background-color: #909090;
    }
    .c-profile_box-avatar_edit::before {
    color: #fff;
    font-size: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }
    .c-profile_box-username {
    margin-top: 7px;
    }
    .c-profile_box-tabs {
    justify-content: center;
    align-items: center;
    background-color: transparent;
    }
    .c-profile_box-tab {
    flex-basis: unset;
    border: 1px solid #00bfd6 !important;
    margin-left: 10px;
    padding: 5px 30px 5px 5px;
    border-radius: 5px;
    color: #00bfd6;
    }
    .c-profile_box-tab::before {
    top: 50%;
    left: unset;
    right: 8px;
    transform: translateY(-50%);
    }
    .page_content {
    flex-basis: 100%;
    max-width: 100%;
    padding-right: 0;
    }
    .c-profile_message.in-mobile {
    display: block;
    }
    .c-profile_message.in-desktop {
    display: none;
    }
    .c-profile_message-content {
    display: block;
    }
    .c-profile_message-btn {
    display: block;
    margin-right: auto;
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    }
    .c-profile_content-row {
    margin-right: 0;
    margin-left: 0;
    }
    .c-profile_content-col {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    }
    .c-profile_address-add {
    display: none;
    }
    .c-profile_address-container {
    padding-left: 0;
    padding-right: 0;
    }
    .c-remodal_address .container {
    padding-left: 15px;
    padding-right: 15px;
    }
    .c-form_edit-user_row {
    flex-wrap: wrap;
    }
    .c-form_edit-user_col {
    flex-basis: 100%;
    max-width: 100%;
    padding: 0 10px;
    }
    .c-form_edit-user_row-submit {
    flex-wrap: nowrap;
    }
    .c-selectric-input {
    display: none;
    }
    .c-profile_return-form_field {
    width: calc(100% - 122px);
    }
    .c-profile_return-form_button {
    width: 112px;
    }
    .c-profile_personal-info_col {
    flex-basis: 100%;
    max-width: 100%;
    border-right: none;
    }
    .c-account_page-footer {
    position: relative;
    }
    .c-account_page-footer_links>li {
    margin: 0 5px;
    }
    .c-account_page-footer_links>li a {
    font-size: 12px;
    }
    .c-account-page {
    min-height: unset;
    }
    .c-category_card {
    display: flex;
    flex-wrap: wrap;
    height: unset !important;
    }
    .c-category_card_item {
    position: relative;
    flex-basis: 100%;
    max-width: 100%;
    right: unset !important;
    top: unset !important;
    margin: 7px 10px;
    padding: 0;
    border: 1px solid #e5e5e5;
    }
    .c-category_card_img {
    display: none;
    }
    .c-category_card_title {
    position: relative;
    width: 100%;
    background: transparent;
    color: #000;
    border-bottom: 1px solid #e5e5e5;
    }
    .page-row {
    flex-wrap: wrap;
    }
    .c-cart_page-content {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0;
    }
    .c-checkout_row {
    flex-wrap: wrap;
    }
    .c-checkout_col-desc {
    flex-basis: 77%;
    max-width: 77%;
    }
    .c-checkout_gurantee {
    display: none;
    }
    .c-checkout_btn-remove {
    display: none;
    }
    .c-checkout_col-thumb {
    padding-right: 0;
    flex-basis: 23%;
    max-width: 23%;
    padding-left: 5px;
    }
    .c-checkout_title {
    font-size: 14px;
    margin-bottom: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    }
    .c-checkout_col-information {
    flex-basis: 100%;
    max-width: 100%;
    margin-top: 10px;
    }
    .c-checkout_col-counter {
    flex-direction: row;
    }
    .c-checkout_row-inner {
    justify-content: flex-end;
    align-items: center;
    }
    .c-checkout_col-information .c-checkout_col {
    flex-basis: unset;
    max-width: unset;
    width: unset;
    margin-left: 7px;
    }
    .c-checkout_col-counter>span {
    margin-left: 5px;
    }
    .c-checkout_price {
    font-size: 14px;
    color: #fb3449;
    padding-right: 5px;
    }
    .c-checkout_col-thumb img {
    max-width: 100%;
    }
    .c-checkout_col-remove {
    border: 1px solid #979797;
    padding: 4px 13px 3px;
    border-radius: 4px;
    text-align: center;
    color: #969696;
    }
    .c-footer_feature {
    display: none;
    }
    .c-cart_page-aside {
    max-width: 100%;
    flex-basis: 100%;
    padding-right: 0;
    }
    .c-checkout_aside {
    margin-top: 10px;
    margin-bottom: 10px;
    z-index: 1000;
    }
    .c-checkout_summary-ul>li:last-child {
    display: none;
    }
    .c-tooltip {
    display: none;
    }
    .btn-submit_content {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 10px 8px;
    background-color: #f9f9f9;
    z-index: 1000;
    }
    .btn-submit {
    padding: 14px !important;
    font-size: 17px !important;
    }
    .btn-submit::after,
    .btn-submit::before {
    content: unset !important;
    }
    .cart-page {
    padding: 50px;
    }
    .c-checkout_page .c-header {
    position: relative;
    }
    .c-checkout_page {
    padding-top: 0;
    }
    .c-checkout_steps {
    width: 100%;
    left: unset;
    transform: unset;
    }
    .c-checkout_steps li {
    width: 100%;
    display: flex;
    justify-content: center;
    }
    .c-checkout_steps li::before {
    width: 100%;
    right: -50%;
    left: unset;
    }
    .c-checkout_steps-item::before {
    font-size: 11px;
    }
    .c-checkout_contact-badge {
    display: none;
    }
    .c-checkout_contact-cotent {
    padding: 13px 8px 8px 2px;
    }
    .c-checkout_contact-item_mobile,
    .c-checkout_contact-item_post-code {
    font-size: 12px;
    }
    .c-checkout_contact-loaction_edit-btn {
    position: relative;
    top: unset;
    left: unset;
    margin-bottom: 10px;
    margin-right: auto;
    display: block;
    margin-left: 10px;
    }
    .c-form_address-col_half {
    flex-basis: 100%;
    max-width: 100%;
    }
    .div1 {
    display: block;
    }
    .c-form_address-col_submit {
    max-width: 100%;
    flex-basis: 100%;
    }
    .c-remodal_checkout .btn-submit {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    }
    .c-form_address-col_return {
    max-width: 100%;
    flex-basis: 100%;
    justify-content: center;
    margin-top: 10px;
    }
    .c-checkout_swiper-product_amount {
    display: flex;
    background-color: #00bfd6;
    color: #fff;
    position: absolute;
    height: 24px;
    width: 24px;
    left: 15px;
    top: 5px;
    z-index: 2;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    padding-top: 3px;
    }
    .c-checkout_product-content .c-swiper_title {
    display: none;
    }
    /*
    .c-checkout_product-content .c-swiper_url {
    padding: 5px;
    border: 1px solid #e9e9e9;
    border-radius: 9px;
    margin-bottom: 15px;
    }
    
    .c-checkout_actions {
    display: none;
    } */
    .c-checkout_paymethod-item_cash::before {
    content: unset;
    }
    .c-checkout_paymethod-item {
    padding: 16px 39px 38px 8px;
    }
    .c-checkout_paymethod-item .c-radio {
    right: 15px;
    top: 20px;
    }
    .c-checkout_paymethod-title {
    font-size: 14px;
    font-weight: 500;
    }
    .c-checkout_paymethod-providers {
    flex-direction: column;
    }
    .c-checkout_order-summary {
    padding: 0;
    }
    .c-checkout_order-summary_header {
    pointer-events: none;
    border: none !important;
    background: transparent;
    }
    .c-checkout_order-summary_content {
    display: block;
    padding: 10px;
    }
    .c-checkout_order-summary_header::before {
    content: unset;
    }
    .c-checkout_order-summary_col:not(:nth-child(1)) {
    display: none;
    }
    .c-checkout_order-summary_content .c-swiper {
    border: none;
    }
    .c-checkout_order-summary_content .c-swiper_slide {
    border: 1px solid #e5e5e5;
    margin-left: 10px;
    height: unset;
    }
    .c-checkout_price-options_continer {
    padding: 5px 5px 26px;
    margin-bottom: 10px;
    }
    .c-checkout_price-options_header>span:first-of-type {
    font-size: 15px;
    }
    .c-checkout_price-options_desc {
    display: none;
    }
    .c-checkout_price-options_fields .selectric-wrapper {
    display: none;
    }
    .c-checkout_price-options_fields {
    width: 100%;
    }
    .c-checkout_price-options_fields .c-input {
    border-radius: 5px;
    width: 95%;
    font-size: 12px;
    }
    .c-checkout_price-options_fields .btn-primary12 {
    font-size: 12px;
    padding: 12px 6px;
    border-radius: 5px;
    border: none;
    }
    .c-checkout_price-options_button {
    width: 100%;
    }
    .footer-pad {
    padding-bottom: 50px;
    }
    .c-remodal_gallery {
    height: 65vh;
    }
    .c-remodal_gallery-main {
    flex-wrap: wrap;
    }
    .c-remodal_gallery-content {
    flex-basis: 100%;
    max-width: 100%;
    }
    .c-remodal_gallery-aside {
    display: none;
    }
    .c-remodal_gallery .c-slider_dots {
    width: 105px !important;
    display: inline-flex;
    }
    .c-remodal_gallery .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background-color: #d8d8d8;
    opacity: 1;
    }
    .c-remodal_gallery .swiper-pagination-bullet-active {
    background-color: gray;
    }
    .c-product {
    flex-wrap: wrap;
    /* background-color: transparent; */
    }
    .c-product_gallery {
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    background-color: #fff;
    }
    .in-desktop {
    display: none;
    }
    .c-product_headline .in-mobile {
    display: inline-flex;
    flex-wrap: wrap;
    padding: 9px 15px;
    }
    .btn-option_stats {
    display: none;
    }
    .c-product_title {
    font-size: 14px;
    color: #2a2a2a;
    line-height: 1.7;
    }
    .c-product_headline span {
    line-height: 1.75;
    color: #707070;
    }
    .c-product_info {
    padding: 0 10px;
    background-color: #fff;
    }
    .c-product_config {
    flex-basis: 100%;
    padding: 12px 0 0 10px;
    }
    .c-product_params,
    .c-product_price-question {
    display: none;
    }
    .btn-add_cart::before,
    .btn-add_cart-text::before,
    .btn-add_cart-text::after {
    content: unset;
    }
    .btn-add_cart {
    padding: 14px 20px;
    border: unset;
    max-width: unset;
    }
    .c-product_price-value {
    font-size: 24px;
    }
    .c-product_price-discount {
    padding: 0 13px;
    height: 27px;
    }
    .c-product_feature-col:nth-child(2) {
    display: none;
    }
    .c-product_feature-body {
    padding: 0;
    }
    .c-product_feature-body .c-product_feature {
    font-size: 10px;
    line-height: 1.8;
    height: unset;
    padding: 10px 0;
    }
    .c-product_feature-col {
    flex-basis: 25%;
    max-width: 25%;
    }
    .c-product_feature-item {
    background-size: auto 40px;
    padding: 45px 5px 0;
    background-position: 50% 0;
    text-align: center;
    }
    .c-box_suppliers-headline>span {
    font-size: 14px;
    }
    .c-box_suppliers-headline {
    padding-right: 42px;
    margin: 12px 0 11px;
    }
    .c-box_suppliers-headline::before {
    font-size: 18px;
    }
    .c-box_suppliers .c-box1 {
    background: transparent;
    }
    .c-table_suppliers-head {
    display: none;
    }
    .c-table_suppliers-row {
    flex-wrap: wrap;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .09);
    }
    .c-table_suppliers-main .c-table_suppliers-row:nth-child(2n) .c-table_suppliers-cell {
    background: #fff;
    }
    .c-table_suppliers-cell {
    flex-basis: 100%;
    max-width: 100%;
    padding: 8px 11px !important;
    border-bottom: 1px solid #ededed;
    }
    .c-table_suppliers-main .c-table_suppliers-cell_title {
    font-size: 14px;
    width: 100%;
    max-width: unset;
    }
    .c-table_suppliers-line {
    display: inline-flex !important;
    font-size: 12px !important;
    margin-right: 10px;
    color: #515151 !important;
    }
    .c-table_suppliers-price {
    color: #fb3459;
    }
    .in-mobile {
    display: block;
    }
    .c-tabs_content {
    padding: 0;
    }
    .c-box_tabs-tab {
    background-color: #f8f8f8;
    border-left: none;
    list-style: none;
    }
    .c-box_tabs-tab a {
    border: 1px solid #dfdfdf;
    }
    .c-params_headline {
    font-size: 15px;
    color: #000;
    line-height: 2;
    padding: 5px 10px;
    }
    .c-params_headline>span {
    font-size: 12px;
    color: #000;
    letter-spacing: normal;
    }
    .c-tabs_content-desc_summary::before {
    content: unset;
    }
    .c-tabs_content-desc_summary {
    padding: 10px;
    margin-right: 0;
    margin-left: 0;
    font-size: 12px;
    line-height: 1.833;
    color: #858585;
    }
    .c-mask_text.is-active {
    padding: 0 0 30px;
    }
    .c-tabs_content-desc_stats {
    flex-wrap: wrap;
    margin: 0;
    }
    .c-tabs_content-desc_stats-aside {
    flex-basis: 100%;
    max-width: 100%;
    }
    .c-tabs_content-desc_rating {
    background-color: #fff;
    }
    .c-tabs_content-desc_rating>li {
    margin-right: 0;
    margin-left: 0;
    }
    .c-tabs_content-desc_rating>li .cell:first-child {
    flex-basis: 50%;
    max-width: 50%;
    font-size: 12px;
    }
    .c-tabs_content-desc_rating>li .cell:last-child {
    flex-basis: 50%;
    max-width: 50%;
    }
    .c-tabs_content-desc_rating>li .cell {
    padding-right: 0;
    padding-left: 0;
    }
    .c-rating[data-rate]::before {
    content: unset;
    }
    .c-tabs_content-desc_stats-evaluation {
    display: block;
    }
    .c-tabs_content-desc_stats-evaluation_positve,
    .c-tabs_content-desc_stats-evaluation_negative {
    padding-right: 20px;
    flex-basis: 100%;
    max-width: 100%;
    }
    .c-tabs_content-desc_stats-evaluation_positve span,
    .c-tabs_content-desc_stats-evaluation_negative span {
    font-size: 13px;
    border-bottom: 1px solid #e5e5ea;
    padding: 3px 0 5px 10px;
    }
    .c-tabs_content-desc_review {
    font-size: 12px;
    line-height: 1.833;
    padding: 15px;
    color: #858585;
    }
    .c-tabs_content-desc_articles {
    margin-top: 7px;
    }
    .c-tabs_content-desc_article {
    padding-right: 33px;
    padding-left: 10px;
    }
    .c-tabs_content-desc_article-button {
    color: #00bfd6;
    background: transparent;
    border-radius: 50%;
    border: 2px solid #00bfd6;
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 8px;
    top: 12px;
    }
    .c-tabs_content-desc_article-button::before {
    font-size: 9px;
    }
    .c-tabs_content-desc_article-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 2;
    }
    .c-tabs_content-desc_article-text {
    font-size: 12px;
    line-height: 1.571;
    color: #858585;
    }
    .c-tabs_content-desc_article-blockquote {
    font-size: 12px;
    padding: 5px 50px 5px 45px;
    margin-bottom: 5px;
    }
    .c-tabs_content-desc_article-blockquote::before {
    background-size: 100%;
    height: 30px;
    width: 30px;
    right: 8px;
    top: 0;
    }
    .c-tabs_content-desc_article-blockquote::after {
    background-size: 100%;
    height: 30px;
    width: 30px;
    left: 8px;
    bottom: 0;
    }
    .c-tabs_content-desc_article-img {
    margin: 10px 0;
    }
    .c-prop_list li {
    flex-wrap: wrap;
    }
    .c-prop_list-name {
    flex-basis: 100%;
    max-width: 100%;
    }
    .c-prop_list-value {
    flex-basis: 100%;
    max-width: 100%;
    }
    .c-prop_list-span {
    background-color: #f1f1f1;
    padding: 5px 9px;
    font-size: 14px;
    color: #2a2a2a;
    }
    .c-prop_list-value .c-prop_list-span {
    background-color: #fff;
    }
    .c-prop_list {
    margin-bottom: 30px;
    }
    .c-tabs_content-comments_summary,
    .c-tabs_content-comments_headline {
    display: none;
    }
    .c-tabs_content-comments_headline-action {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    line-height: 1;
    align-items: center;
    }
    .c-tabs_content-comments_headline-btn {
    background-color: #00bfd6;
    color: #fff;
    padding: 9px 35px 9px 15px;
    border-radius: 5px;
    position: relative;
    line-height: 22px;
    }
    .c-tabs_content-comments_headline-btn::before {
    font-family: mobile-digikala;
    content: "\e050";
    position: absolute;
    right: 12px;
    font-size: 12px;
    }
    .c-tabs_content-comments_filter {
    margin-top: 0;
    }
    .c-faq_filter-title {
    display: none;
    }
    .c-faq_filter-items[data-title]::before {
    display: block;
    font-size: 12px;
    }
    .c-faq_filter-items {
    font-size: 12px;
    margin-right: 3px;
    }
    .c-faq_filter-items li {
    margin-right: 4px;
    }
    .c-faq_filter-items li a {
    padding: 11px 3px;
    }
    .c-comment_list {
    margin-top: 0;
    padding-top: 10px;
    background-color: #f5f5f5;
    }
    .c-comment_list li {
    background-color: #fff;
    border-radius: 9px;
    padding: 0 10px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .09);
    }
    .c-comment_list li section {
    flex-wrap: wrap;
    margin: 0;
    }
    .c-comment_list-aside {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    }
    .c-comment_list-content {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 10px;
    }
    .c-comment_list-header {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding-bottom: 5px;
    }
    .c-comment_list-header>div {
    font-size: 14px;
    color: #2a2a2a;
    padding-top: 10px;
    letter-spacing: -.5px;
    font-weight: 700;
    }
    .c-comment_list-header>div>span {
    font-size: 12px;
    font-weight: 300;
    color: #424242;
    }
    .mobile-c-comment_user-purchased {
    position: relative;
    display: block;
    height: 70px;
    width: 46px;
    /* background-image: url(../svg/purchase1.svg); */
    padding-top: 35px !important;
    font-size: 12px !important;
    text-align: center;
    color: #64d979 !important;
    }
    .mobile-c-comment_user-purchased::before {
    position: absolute;
    content: "";
    /* background-image: url(../svg/purchase2.svg); */
    height: 23px;
    width: 26px;
    top: 12px;
    }
    .c-comment_user-shopping>li {
    display: flex;
    margin: 0;
    }
    .c-comment_list-aside_row {
    margin-right: 10px;
    margin-left: 0;
    color: #2a2a2a;
    display: flex;
    align-items: center;
    }
    .c-comment_list-content p {
    font-size: 12px;
    line-height: 21px;
    color: #858585;
    }
    .c-comment_list-footer {
    position: relative;
    left: unset;
    }
    .c-comments_likes {
    letter-spacing: -.5px;
    color: #2a2a2a;
    }
    .btn-like {
    border: 1px solid #00bfd6;
    color: #00bfd6;
    }
    .btn-like[data-counter]::before {
    color: #00bfd6;
    }
    .btn-dislike {
    border: 1px solid #ef5661;
    color: #ef5661;
    }
    .btn-dislike[data-counter]::before {
    color: #ef5661;
    }
    .c-comment_evaluation {
    flex-wrap: wrap;
    }
    .c-comment_evaluation-positve,
    .c-comment_evaluation-negative {
    flex-basis: 100%;
    max-width: 100%;
    display: block;
    padding-left: 10px;
    padding-right: 20px;
    }
    .c-comment_evaluation-positve span,
    .c-comment_evaluation-negative span {
    font-size: 12px;
    border-bottom: 1px solid #e5e5e5;
    padding: 3px 0 5px 55px;
    margin-bottom: 5px;
    display: block;
    }
    .c-comment_evaluation-positve ul li::before,
    .c-comment_evaluation-negative ul li::before {
    height: 4px;
    width: 4px;
    border-radius: 50%;
    }
    .c-comment_evaluation-positve ul li,
    .c-comment_evaluation-negative ul li {
    font-size: 12px;
    padding-right: 11px;
    }
    .c-faq_tab-headline {
    font-size: 16px;
    color: #000;
    padding: 5px 10px;
    line-height: 2;
    }
    .c-faq_tab-headline span {
    font-size: 14px;
    color: #6f6f6f;
    }
    .c-form_faq-row {
    margin-top: 10px;
    margin-right: 0;
    margin-left: 0;
    flex-direction: row-reverse;
    }
    .c-form_faq-col_agreement {
    flex-basis: 70%;
    max-width: 70%;
    padding-right: 40px;
    font-size: 12px;
    line-height: 21px;
    color: #2a2a2a;
    }
    .c-form_faq-col_agreement .c-checkbox {
    right: 10px;
    }
    .c-form_faq-col_submit {
    flex-basis: 30%;
    max-width: 30%;
    padding-right: 0;
    flex-shrink: 0;
    }
    .btn-primary12::after {
    content: unset;
    }
    .c-form_faq .btn-primary {
    font-size: 12px;
    padding: 7px 10px;
    line-height: 25px;
    letter-spacing: -.5px;
    color: #00bfd6;
    border: 1px solid #00bfd6;
    background-color: transparent;
    }
    .c-form_faq-agreement-policy {
    font-size: 12px;
    line-height: 27px;
    color: #858585;
    margin-top: 10px;
    border-top: 1px solid #e5e5e5;
    padding-top: 8px;
    }
    .c-form_faq-agreement-policy a {
    color: #4a90e2;
    }
    .c-faq_list-content {
    background-color: #f5f5f5;
    padding-top: 10px;
    }
    .c-faq_list {
    margin: 0;
    }
    .c-faq_list>li {
    margin-right: 0;
    padding: 10px;
    min-height: unset;
    border-radius: 0 !important;
    border: none;
    border-top: 1px solid #dbdbdb;
    background: #fff;
    }
    .c-faq_list>li::before,
    .c-faq_list>li::after {
    content: unset;
    }
    .c-faq_header {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
    margin: 0 0 8px;
    font-weight: 700;
    padding: 0 46px 0 0;
    }
    .c-faq_header::before {
    font-family: mobile-digikala;
    left: unset;
    top: 8px;
    }
    .c-faq_header-question::before {
    content: "\e053";
    font-size: 20px;
    transform: rotateY(180deg);
    right: 13px;
    color: #979797;
    }
    .c-faq_header-answer::before {
    content: "\e019";
    font-size: 15px;
    color: #64d979;
    transform: unset;
    right: 8px;
    }
    .c-faq_header::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    border: 1px solid #929292;
    display: block;
    }
    .c-faq_header-answer::after {
    border: 1px solid #64d979;
    }
    .c-faq_header p {
    font-size: 12px;
    color: #424242;
    text-align: right;
    }
    .c-faq_header p span:first-child {
    display: block;
    color: #2a2a2a;
    }
    .c-faq_header p span {
    display: inline-block;
    margin-left: 5px;
    }
    .c-faq_content {
    font-size: 12px;
    line-height: 1.833;
    color: #858585;
    }
    .c-faq_footer {
    position: relative;
    padding: 10px 0;
    bottom: unset;
    display: flex;
    justify-content: flex-end;
    }
    .c-faq_footer a {
    font-size: 12px;
    }
    .c-faq_answer-col_rules {
    display: none;
    }
    .c-faq_answer-col_form {
    padding-right: 0;
    padding-left: 0;
    flex-basis: 100%;
    max-width: 100%;
    }
    .c-faq_answer-col_form>span {
    font-size: 14px;
    margin-bottom: 0;
    color: #2a2a2a;
    letter-spacing: -.5px;
    font-weight: 700;
    }
    .c-faq_form-answer .c-textarea {
    height: 195px;
    }
    .c-faq_answer-btn {
    font-size: 12px;
    padding: 7px 10px;
    line-height: 25px;
    letter-spacing: -.5px;
    color: #00bfd6;
    border: 1px solid #00bfd6;
    background-color: transparent;
    }
    .c-faq_form-answer_col-submit {
    display: flex;
    align-items: center;
    }
    .c-faq_form-answer_col-agreement {
    flex-basis: 71%;
    max-width: 71%;
    font-size: 13px;
    color: #858585;
    font-weight: 400;
    padding-right: 0;
    padding-left: 0;
    }
    .c-comment_product-col_img {
    display: none;
    }
    .c-comment_product-col_info {
    flex-basis: 100%;
    max-width: 100%;
    padding: 10px;
    background: #fff;
    }
    .c-comment_product-title {
    font-size: 14px;
    color: #2a2a2a;
    line-height: 20px;
    }
    .c-comment_product-attributes {
    padding: 5px 10px 0 0 8px;
    }
    .c-comment_product-attributes_row {
    flex-wrap: wrap;
    margin-right: 0;
    margin-left: 0;
    margin-top: 0;
    }
    .c-comment_product-attributes_col {
    flex-basis: 100%;
    max-width: 100%;
    padding-right: 4px;
    padding-left: 0;
    margin-top: 20px;
    }
    .c-comment_product-attributes-title {
    font-size: 12px;
    line-height: 1;
    }
    .c-rating_slider::before {
    margin-right: 10px;
    font-size: 12px;
    }
    .c-comment_add-col_content {
    display: none;
    }
    .c-comment_add {
    border-top: 1px solid #e5e5e5;
    margin-top: 10px;
    }
    .c-comment_add-col_form {
    flex-basis: 100%;
    max-width: 100%;
    padding: 10px;
    }
    .c-form_comment-title {
    font-size: 13px;
    }
    .c-form_comment-row {
    flex-wrap: wrap;
    }
    }
    
    .resss {
    margin-right: 3px !important;
    }
    /*! nouislider - 9.2.0 - 2017-01-11 10:35:35 */
    
    .noUi-target,
    .noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box
    }
    
    .noUi-target {
    position: relative;
    direction: ltr
    }
    
    .noUi-base {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1
    }
    
    .noUi-connect {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0
    }
    
    .noUi-origin {
    position: absolute;
    height: 0;
    width: 0
    }
    
    .noUi-handle {
    position: relative;
    z-index: 1
    }
    
    .noUi-state-tap .noUi-connect,
    .noUi-state-tap .noUi-origin {
    -webkit-transition: top .3s, right .3s, bottom .3s, left .3s;
    transition: top .3s, right .3s, bottom .3s, left .3s
    }
    
    .noUi-state-drag * {
    cursor: inherit!important
    }
    
    .noUi-base,
    .noUi-handle {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
    }
    
    .noUi-horizontal {
    height: 18px
    }
    
    .noUi-horizontal .noUi-handle {
    width: 34px;
    height: 28px;
    left: -17px;
    top: -6px
    }
    
    .noUi-vertical {
    width: 18px
    }
    
    .noUi-vertical .noUi-handle {
    width: 28px;
    height: 34px;
    left: -6px;
    top: -17px
    }
    
    .noUi-target {
    background: #FAFAFA;
    border-radius: 4px;
    border: 1px solid #D3D3D3;
    box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB
    }
    
    .noUi-connect {
    background: #3FB8AF;
    box-shadow: inset 0 0 3px rgba(51, 51, 51, .45);
    -webkit-transition: background 450ms;
    transition: background 450ms
    }
    
    .noUi-draggable {
    cursor: ew-resize
    }
    
    .noUi-vertical .noUi-draggable {
    cursor: ns-resize
    }
    
    .noUi-handle {
    border: 1px solid #D9D9D9;
    border-radius: 3px;
    background: #FFF;
    cursor: default;
    box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB
    }
    
    .noUi-active {
    box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB
    }
    
    .noUi-handle:after,
    .noUi-handle:before {
    content: "";
    display: block;
    position: absolute;
    height: 14px;
    width: 1px;
    background: #E8E7E6;
    left: 14px;
    top: 6px
    }
    
    .noUi-handle:after {
    left: 17px
    }
    
    .noUi-vertical .noUi-handle:after,
    .noUi-vertical .noUi-handle:before {
    width: 14px;
    height: 1px;
    left: 6px;
    top: 14px
    }
    
    .noUi-vertical .noUi-handle:after {
    top: 17px
    }
    
    [disabled] .noUi-connect {
    background: #B8B8B8
    }
    
    [disabled] .noUi-handle,
    [disabled].noUi-handle,
    [disabled].noUi-target {
    cursor: not-allowed
    }
    
    .noUi-pips,
    .noUi-pips * {
    -moz-box-sizing: border-box;
    box-sizing: border-box
    }
    
    .noUi-pips {
    position: absolute;
    color: #999
    }
    
    .noUi-value {
    position: absolute;
    text-align: center
    }
    
    .noUi-value-sub {
    color: #ccc;
    font-size: 10px
    }
    
    .noUi-marker {
    position: absolute;
    background: #CCC
    }
    
    .noUi-marker-large,
    .noUi-marker-sub {
    background: #AAA
    }
    
    .noUi-pips-horizontal {
    padding: 10px 0;
    height: 80px;
    top: 100%;
    left: 0;
    width: 100%
    }
    
    .noUi-value-horizontal {
    -webkit-transform: translate3d(-50%, 50%, 0);
    transform: translate3d(-50%, 50%, 0)
    }
    
    .noUi-marker-horizontal.noUi-marker {
    margin-left: -1px;
    width: 2px;
    height: 5px
    }
    
    .noUi-marker-horizontal.noUi-marker-sub {
    height: 10px
    }
    
    .noUi-marker-horizontal.noUi-marker-large {
    height: 15px
    }
    
    .noUi-pips-vertical {
    padding: 0 10px;
    height: 100%;
    top: 0;
    left: 100%
    }
    
    .noUi-value-vertical {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
    padding-left: 25px
    }
    
    .noUi-marker-vertical.noUi-marker {
    width: 5px;
    height: 2px;
    margin-top: -1px
    }
    
    .noUi-marker-vertical.noUi-marker-sub {
    width: 10px
    }
    
    .noUi-marker-vertical.noUi-marker-large {
    width: 15px
    }
    
    .noUi-tooltip {
    display: block;
    position: absolute;
    border: 1px solid #D9D9D9;
    border-radius: 3px;
    background: #fff;
    color: #000;
    padding: 5px;
    text-align: center
    }
    
    .noUi-horizontal .noUi-tooltip {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 120%
    }
    
    .noUi-vertical .noUi-tooltip {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    right: 120%
    }
    @charset "UTF-8";
    /*$custom-control-indicator-checked-color: $primary;
    $custom-control-indicator-checked-border-color: $gray-300;
    $custom-control-indicator-checked-bg: #ffffff;
    $custom-control-indicator-bg:$primary;*/
    .btn-text-primary {
    color: #43d477 !important; }
    .btn-text-primary:hover {
    color: #ffffff !important;
    background-color: #43d477 !important;
    border-color: #43d477 !important; }
    .btn-text-primary:focus, .btn-text-primary.focus {
    box-shadow: 0 0 0 0 rgba(67, 212, 119, 0.5) !important; }
    .btn-text-primary.disabled, .btn-text-primary:disabled {
    color: #43d477 !important;
    background-color: transparent !important; }
    
    .btn-text-secondary {
    color: #1f3b64 !important; }
    .btn-text-secondary:hover {
    color: #ffffff !important;
    background-color: #1f3b64 !important;
    border-color: #1f3b64 !important; }
    .btn-text-secondary:focus, .btn-text-secondary.focus {
    box-shadow: 0 0 0 0 rgba(31, 59, 100, 0.5) !important; }
    .btn-text-secondary.disabled, .btn-text-secondary:disabled {
    color: #1f3b64 !important;
    background-color: transparent !important; }
    
    .btn-text-success {
    color: #e7f4f0 !important; }
    .btn-text-success:hover {
    color: #ffffff !important;
    background-color: #e7f4f0 !important;
    border-color: #e7f4f0 !important; }
    .btn-text-success:focus, .btn-text-success.focus {
    box-shadow: 0 0 0 0 rgba(231, 244, 240, 0.5) !important; }
    .btn-text-success.disabled, .btn-text-success:disabled {
    color: #e7f4f0 !important;
    background-color: transparent !important; }
    
    .btn-text-info {
    color: #ebf7ff !important; }
    .btn-text-info:hover {
    color: #ffffff !important;
    background-color: #ebf7ff !important;
    border-color: #ebf7ff !important; }
    .btn-text-info:focus, .btn-text-info.focus {
    box-shadow: 0 0 0 0 rgba(235, 247, 255, 0.5) !important; }
    .btn-text-info.disabled, .btn-text-info:disabled {
    color: #ebf7ff !important;
    background-color: transparent !important; }
    
    .btn-text-warning {
    color: #ffab00 !important; }
    .btn-text-warning:hover {
    color: #ffffff !important;
    background-color: #ffab00 !important;
    border-color: #ffab00 !important; }
    .btn-text-warning:focus, .btn-text-warning.focus {
    box-shadow: 0 0 0 0 rgba(255, 171, 0, 0.5) !important; }
    .btn-text-warning.disabled, .btn-text-warning:disabled {
    color: #ffab00 !important;
    background-color: transparent !important; }
    
    .btn-text-danger {
    color: #f63c3c !important; }
    .btn-text-danger:hover {
    color: #ffffff !important;
    background-color: #f63c3c !important;
    border-color: #f63c3c !important; }
    .btn-text-danger:focus, .btn-text-danger.focus {
    box-shadow: 0 0 0 0 rgba(246, 60, 60, 0.5) !important; }
    .btn-text-danger.disabled, .btn-text-danger:disabled {
    color: #f63c3c !important;
    background-color: transparent !important; }
    
    .btn-text-light {
    color: #f8f9fa !important; }
    .btn-text-light:hover {
    color: #ffffff !important;
    background-color: #f8f9fa !important;
    border-color: #f8f9fa !important; }
    .btn-text-light:focus, .btn-text-light.focus {
    box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5) !important; }
    .btn-text-light.disabled, .btn-text-light:disabled {
    color: #f8f9fa !important;
    background-color: transparent !important; }
    
    .btn-text-dark {
    color: #343434 !important; }
    .btn-text-dark:hover {
    color: #ffffff !important;
    background-color: #343434 !important;
    border-color: #343434 !important; }
    .btn-text-dark:focus, .btn-text-dark.focus {
    box-shadow: 0 0 0 0 rgba(52, 52, 52, 0.5) !important; }
    .btn-text-dark.disabled, .btn-text-dark:disabled {
    color: #343434 !important;
    background-color: transparent !important; }
    
    .btn-text-white {
    color: #ffffff !important; }
    .btn-text-white:hover {
    color: #212529 !important;
    background-color: #ffffff !important;
    border-color: #ffffff !important; }
    .btn-text-white:focus, .btn-text-white.focus {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5) !important; }
    .btn-text-white.disabled, .btn-text-white:disabled {
    color: #ffffff !important;
    background-color: transparent !important; }
    
    .btn-text-gray {
    color: #818894 !important; }
    .btn-text-gray:hover {
    color: #ffffff !important;
    background-color: #818894 !important;
    border-color: #818894 !important; }
    .btn-text-gray:focus, .btn-text-gray.focus {
    box-shadow: 0 0 0 0 rgba(129, 136, 148, 0.5) !important; }
    .btn-text-gray.disabled, .btn-text-gray:disabled {
    color: #818894 !important;
    background-color: transparent !important; }
    
    .btn-text-gray300 {
    color: #ececec !important; }
    .btn-text-gray300:hover {
    color: #ffffff !important;
    background-color: #ececec !important;
    border-color: #ececec !important; }
    .btn-text-gray300:focus, .btn-text-gray300.focus {
    box-shadow: 0 0 0 0 rgba(236, 236, 236, 0.5) !important; }
    .btn-text-gray300.disabled, .btn-text-gray300:disabled {
    color: #ececec !important;
    background-color: transparent !important; }
    
    .btn-text-gray200 {
    color: #f1f1f1 !important; }
    .btn-text-gray200:hover {
    color: #ffffff !important;
    background-color: #f1f1f1 !important;
    border-color: #f1f1f1 !important; }
    .btn-text-gray200:focus, .btn-text-gray200.focus {
    box-shadow: 0 0 0 0 rgba(241, 241, 241, 0.5) !important; }
    .btn-text-gray200.disabled, .btn-text-gray200:disabled {
    color: #f1f1f1 !important;
    background-color: transparent !important; }
    
    .btn-block {
    display: inline-flex !important; }
    
    :root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #43d477;
    --secondary: #1f3b64;
    --success: #e7f4f0;
    --info: #ebf7ff;
    --warning: #ffab00;
    --danger: #f63c3c;
    --light: #f8f9fa;
    --dark: #343434;
    --white: #ffffff;
    --gray: #818894;
    --gray300: #ececec;
    --gray200: #f1f1f1;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
    
    *,
    *::before,
    *::after {
    box-sizing: border-box; }
    
    html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(52, 52, 52, 0); }
    
    article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block; }
    
    body {
    margin: 0;
    font-family: "iranSans";
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.3;
    color: #343434;
    text-align: left;
    background-color: #ffffff; }
    
    [tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important; }
    
    hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible; }
    
    h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0; }
    
    p {
    margin-top: 0;
    margin-bottom: 1rem; }
    
    abbr[title],
    abbr[data-original-title] {
    text-decoration: underline;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    text-decoration-skip-ink: none; }
    
    address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit; }
    
    ol,
    ul,
    dl {
    margin-top: 0;
    margin-bottom: 1rem; }
    
    ol ol,
    ul ul,
    ol ul,
    ul ol {
    margin-bottom: 0; }
    
    dt {
    font-weight: 700; }
    
    dd {
    margin-bottom: .5rem;
    margin-left: 0; }
    
    blockquote {
    margin: 0 0 1rem; }
    
    b,
    strong {
    font-weight: bolder; }
    
    small {
    font-size: 80%; }
    
    sub,
    sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline; }
    
    sub {
    bottom: -.25em; }
    
    sup {
    top: -.5em; }
    
    a {
    color: #343434;
    text-decoration: none;
    background-color: transparent; }
    a:hover {
    color: #6d55a1;
    text-decoration: underline; }
    
    a:not([href]):not([class]) {
    color: inherit;
    text-decoration: none; }
    a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none; }
    
    pre,
    code,
    kbd,
    samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em; }
    
    pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar; }
    
    figure {
    margin: 0 0 1rem; }
    
    img {
    vertical-align: middle;
    border-style: none;
    padding: 4px;
    border-radius: 10px;
} 
    
    svg {
    overflow: hidden;
    vertical-align: middle; }
    
    table {
    border-collapse: collapse; }
    
    caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom; }
    
    th {
    text-align: inherit;
    text-align: -webkit-match-parent; }
    
    label {
    display: inline-block;
    margin-bottom: 0.5rem; }
    
    button {
    border-radius: 0; }
    
    button:focus:not(:focus-visible) {
    outline: 0; }
    
    input,
    button,
    select,
    optgroup,
    textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit; }
    
    button,
    input {
    overflow: visible; }
    
    button,
    select {
    text-transform: none; }
    
    [role="button"] {
    cursor: pointer; }
    
    select {
    word-wrap: normal; }
    
    button,
    [type="button"],
    [type="reset"],
    [type="submit"] {
    -webkit-appearance: button; }
    
    button:not(:disabled),
    [type="button"]:not(:disabled),
    [type="reset"]:not(:disabled),
    [type="submit"]:not(:disabled) {
    cursor: pointer; }
    
    button::-moz-focus-inner,
    [type="button"]::-moz-focus-inner,
    [type="reset"]::-moz-focus-inner,
    [type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none; }
    
    input[type="radio"],
    input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0; }
    
    textarea {
    overflow: auto;
    resize: vertical; }
    
    fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0; }
    
    legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal; }
    
    progress {
    vertical-align: baseline; }
    
    [type="number"]::-webkit-inner-spin-button,
    [type="number"]::-webkit-outer-spin-button {
    height: auto; }
    
    [type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none; }
    
    [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }
    
    ::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button; }
    
    output {
    display: inline-block; }
    
    summary {
    display: list-item;
    cursor: pointer; }
    
    template {
    display: none; }
    
    [hidden] {
    display: none !important; }
    
    .container,
    .container-fluid,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto; }
    
    @media (min-width: 576px) {
    .container, .container-sm {
    max-width: 100%; } }
    
    @media (min-width: 768px) {
    .container, .container-sm, .container-md {
    max-width: 769px; } }
    
    @media (min-width: 992px) {
    .container, .container-sm, .container-md, .container-lg {
    max-width: 960px; } }
    
    @media (min-width: 1200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px; } }
    
    .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px; }
    
    .no-gutters {
    margin-right: 0;
    margin-left: 0; }
    .no-gutters > .col,
    .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }
    
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
    .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
    .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
    .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
    .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
    .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px; }
    
    .col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
    
    .row-cols-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
    
    .row-cols-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
    
    .row-cols-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
    
    .row-cols-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
    
    .row-cols-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
    
    .row-cols-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
    
    .col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
    
    .col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
    
    .col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
    
    .col-3 {
    flex: 0 0 25%;
    max-width: 25%; }
    
    .col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
    
    .col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
    
    .col-6 {
    flex: 0 0 50%;
    max-width: 50%; }
    
    .col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
    
    .col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
    
    .col-9 {
    flex: 0 0 75%;
    max-width: 75%; }
    
    .col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
    
    .col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
    
    .col-12 {
    flex: 0 0 100%;
    max-width: 100%; }
    
    .order-first {
    order: -1; }
    
    .order-last {
    order: 13; }
    
    .order-0 {
    order: 0; }
    
    .order-1 {
    order: 1; }
    
    .order-2 {
    order: 2; }
    
    .order-3 {
    order: 3; }
    
    .order-4 {
    order: 4; }
    
    .order-5 {
    order: 5; }
    
    .order-6 {
    order: 6; }
    
    .order-7 {
    order: 7; }
    
    .order-8 {
    order: 8; }
    
    .order-9 {
    order: 9; }
    
    .order-10 {
    order: 10; }
    
    .order-11 {
    order: 11; }
    
    .order-12 {
    order: 12; }
    
    .offset-1 {
    margin-left: 8.33333%; }
    
    .offset-2 {
    margin-left: 16.66667%; }
    
    .offset-3 {
    margin-left: 25%; }
    
    .offset-4 {
    margin-left: 33.33333%; }
    
    .offset-5 {
    margin-left: 41.66667%; }
    
    .offset-6 {
    margin-left: 50%; }
    
    .offset-7 {
    margin-left: 58.33333%; }
    
    .offset-8 {
    margin-left: 66.66667%; }
    
    .offset-9 {
    margin-left: 75%; }
    
    .offset-10 {
    margin-left: 83.33333%; }
    
    .offset-11 {
    margin-left: 91.66667%; }
    
    @media (min-width: 576px) {
    .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
    .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
    .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
    .row-cols-sm-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
    .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
    .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
    .row-cols-sm-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
    .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
    .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
    .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
    .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%; }
    .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
    .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
    .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%; }
    .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
    .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
    .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%; }
    .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
    .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
    .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%; }
    .order-sm-first {
    order: -1; }
    .order-sm-last {
    order: 13; }
    .order-sm-0 {
    order: 0; }
    .order-sm-1 {
    order: 1; }
    .order-sm-2 {
    order: 2; }
    .order-sm-3 {
    order: 3; }
    .order-sm-4 {
    order: 4; }
    .order-sm-5 {
    order: 5; }
    .order-sm-6 {
    order: 6; }
    .order-sm-7 {
    order: 7; }
    .order-sm-8 {
    order: 8; }
    .order-sm-9 {
    order: 9; }
    .order-sm-10 {
    order: 10; }
    .order-sm-11 {
    order: 11; }
    .order-sm-12 {
    order: 12; }
    .offset-sm-0 {
    margin-left: 0; }
    .offset-sm-1 {
    margin-left: 8.33333%; }
    .offset-sm-2 {
    margin-left: 16.66667%; }
    .offset-sm-3 {
    margin-left: 25%; }
    .offset-sm-4 {
    margin-left: 33.33333%; }
    .offset-sm-5 {
    margin-left: 41.66667%; }
    .offset-sm-6 {
    margin-left: 50%; }
    .offset-sm-7 {
    margin-left: 58.33333%; }
    .offset-sm-8 {
    margin-left: 66.66667%; }
    .offset-sm-9 {
    margin-left: 75%; }
    .offset-sm-10 {
    margin-left: 83.33333%; }
    .offset-sm-11 {
    margin-left: 91.66667%; } }
    
    @media (min-width: 768px) {
    .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
    .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
    .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
    .row-cols-md-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
    .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
    .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
    .row-cols-md-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
    .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
    .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
    .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
    .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }
    .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
    .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
    .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }
    .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
    .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
    .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%; }
    .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
    .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
    .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%; }
    .order-md-first {
    order: -1; }
    .order-md-last {
    order: 13; }
    .order-md-0 {
    order: 0; }
    .order-md-1 {
    order: 1; }
    .order-md-2 {
    order: 2; }
    .order-md-3 {
    order: 3; }
    .order-md-4 {
    order: 4; }
    .order-md-5 {
    order: 5; }
    .order-md-6 {
    order: 6; }
    .order-md-7 {
    order: 7; }
    .order-md-8 {
    order: 8; }
    .order-md-9 {
    order: 9; }
    .order-md-10 {
    order: 10; }
    .order-md-11 {
    order: 11; }
    .order-md-12 {
    order: 12; }
    .offset-md-0 {
    margin-left: 0; }
    .offset-md-1 {
    margin-left: 8.33333%; }
    .offset-md-2 {
    margin-left: 16.66667%; }
    .offset-md-3 {
    margin-left: 25%; }
    .offset-md-4 {
    margin-left: 33.33333%; }
    .offset-md-5 {
    margin-left: 41.66667%; }
    .offset-md-6 {
    margin-left: 50%; }
    .offset-md-7 {
    margin-left: 58.33333%; }
    .offset-md-8 {
    margin-left: 66.66667%; }
    .offset-md-9 {
    margin-left: 75%; }
    .offset-md-10 {
    margin-left: 83.33333%; }
    .offset-md-11 {
    margin-left: 91.66667%; } }
    
    @media (min-width: 992px) {
    .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
    .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
    .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
    .row-cols-lg-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
    .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
    .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
    .row-cols-lg-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
    .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
    .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
    .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
    .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%; }
    .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
    .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
    .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%; }
    .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
    .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
    .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%; }
    .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
    .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
    .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%; }
    .order-lg-first {
    order: -1; }
    .order-lg-last {
    order: 13; }
    .order-lg-0 {
    order: 0; }
    .order-lg-1 {
    order: 1; }
    .order-lg-2 {
    order: 2; }
    .order-lg-3 {
    order: 3; }
    .order-lg-4 {
    order: 4; }
    .order-lg-5 {
    order: 5; }
    .order-lg-6 {
    order: 6; }
    .order-lg-7 {
    order: 7; }
    .order-lg-8 {
    order: 8; }
    .order-lg-9 {
    order: 9; }
    .order-lg-10 {
    order: 10; }
    .order-lg-11 {
    order: 11; }
    .order-lg-12 {
    order: 12; }
    .offset-lg-0 {
    margin-left: 0; }
    .offset-lg-1 {
    margin-left: 8.33333%; }
    .offset-lg-2 {
    margin-left: 16.66667%; }
    .offset-lg-3 {
    margin-left: 25%; }
    .offset-lg-4 {
    margin-left: 33.33333%; }
    .offset-lg-5 {
    margin-left: 41.66667%; }
    .offset-lg-6 {
    margin-left: 50%; }
    .offset-lg-7 {
    margin-left: 58.33333%; }
    .offset-lg-8 {
    margin-left: 66.66667%; }
    .offset-lg-9 {
    margin-left: 75%; }
    .offset-lg-10 {
    margin-left: 83.33333%; }
    .offset-lg-11 {
    margin-left: 91.66667%; } }
    
    @media (min-width: 1200px) {
    .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
    .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
    .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
    .row-cols-xl-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
    .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
    .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
    .row-cols-xl-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
    .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
    .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
    .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
    .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%; }
    .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
    .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
    .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%; }
    .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
    .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
    .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%; }
    .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
    .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
    .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%; }
    .order-xl-first {
    order: -1; }
    .order-xl-last {
    order: 13; }
    .order-xl-0 {
    order: 0; }
    .order-xl-1 {
    order: 1; }
    .order-xl-2 {
    order: 2; }
    .order-xl-3 {
    order: 3; }
    .order-xl-4 {
    order: 4; }
    .order-xl-5 {
    order: 5; }
    .order-xl-6 {
    order: 6; }
    .order-xl-7 {
    order: 7; }
    .order-xl-8 {
    order: 8; }
    .order-xl-9 {
    order: 9; }
    .order-xl-10 {
    order: 10; }
    .order-xl-11 {
    order: 11; }
    .order-xl-12 {
    order: 12; }
    .offset-xl-0 {
    margin-left: 0; }
    .offset-xl-1 {
    margin-left: 8.33333%; }
    .offset-xl-2 {
    margin-left: 16.66667%; }
    .offset-xl-3 {
    margin-left: 25%; }
    .offset-xl-4 {
    margin-left: 33.33333%; }
    .offset-xl-5 {
    margin-left: 41.66667%; }
    .offset-xl-6 {
    margin-left: 50%; }
    .offset-xl-7 {
    margin-left: 58.33333%; }
    .offset-xl-8 {
    margin-left: 66.66667%; }
    .offset-xl-9 {
    margin-left: 75%; }
    .offset-xl-10 {
    margin-left: 83.33333%; }
    .offset-xl-11 {
    margin-left: 91.66667%; } }
    
    h1, h2, h3, h4, h5, h6,
    .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0;
    font-weight: bold;
    line-height: 1.3; }
    
    h1, .h1 {
    font-size: 1.6rem; }
    
    h2, .h2 {
    font-size: 0.7rem; }
    
    h3, .h3 {
    font-size: 1.2rem; }
    
    h4, .h4 {
    font-size: 1rem; }
    
    h5, .h5 {
    font-size: 0.9rem; }
    
    h6, .h6 {
    font-size: 1rem; }
    
    .lead {
    font-size: 1.25rem;
    font-weight: 300; }
    
    .display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.3; }
    
    .display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.3; }
    
    .display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.3; }
    
    .display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.3; }
    
    hr {
    margin-top: 16px;
    margin-bottom: 16px;
    border: 0;
    border-top: 1px solid #f1f1f1; }
    
    small,
    .small {
    font-size: 80%;
    font-weight: 400; }
    
    mark,
    .mark {
    padding: 0.2em;
    background-color: #fcf8e3; }
    
    .list-unstyled {
    padding-left: 0;
    list-style: none; }
    
    .list-inline {
    padding-left: 0;
    list-style: none; }
    
    .list-inline-item {
    display: inline-block; }
    .list-inline-item:not(:last-child) {
    margin-right: 0.5rem; }
    
    .initialism {
    font-size: 90%;
    text-transform: uppercase; }
    
    .blockquote {
    margin-bottom: 20px;
    font-size: 1.25rem; }
    
    .blockquote-footer {
    display: block;
    font-size: 80%;
    color: #6c757d; }
    .blockquote-footer::before {
    content: "\2014\00A0"; }
    
    .list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 0.3125rem; }
    
    .list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit; }
    .list-group-item-action:hover, .list-group-item-action:focus {
    z-index: 1;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa; }
    .list-group-item-action:active {
    color: #343434;
    background-color: #f1f1f1; }
    
    .list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    background-color: #ffffff;
    border: 1px solid rgba(52, 52, 52, 0.125); }
    .list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit; }
    .list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit; }
    .list-group-item.disabled, .list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #ffffff; }
    .list-group-item.active {
    z-index: 2;
    color: #ffffff;
    background-color: #43d477;
    border-color: #43d477; }
    .list-group-item + .list-group-item {
    border-top-width: 0; }
    .list-group-item + .list-group-item.active {
    margin-top: -1px;
    border-top-width: 1px; }
    
    .list-group-horizontal {
    flex-direction: row; }
    .list-group-horizontal > .list-group-item:first-child {
    border-bottom-left-radius: 0.3125rem;
    border-top-right-radius: 0; }
    .list-group-horizontal > .list-group-item:last-child {
    border-top-right-radius: 0.3125rem;
    border-bottom-left-radius: 0; }
    .list-group-horizontal > .list-group-item.active {
    margin-top: 0; }
    .list-group-horizontal > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0; }
    .list-group-horizontal > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px; }
    
    @media (min-width: 576px) {
    .list-group-horizontal-sm {
    flex-direction: row; }
    .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.3125rem;
    border-top-right-radius: 0; }
    .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.3125rem;
    border-bottom-left-radius: 0; }
    .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0; }
    .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0; }
    .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px; } }
    
    @media (min-width: 768px) {
    .list-group-horizontal-md {
    flex-direction: row; }
    .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.3125rem;
    border-top-right-radius: 0; }
    .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.3125rem;
    border-bottom-left-radius: 0; }
    .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0; }
    .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0; }
    .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px; } }
    
    @media (min-width: 992px) {
    .list-group-horizontal-lg {
    flex-direction: row; }
    .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.3125rem;
    border-top-right-radius: 0; }
    .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.3125rem;
    border-bottom-left-radius: 0; }
    .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0; }
    .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0; }
    .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px; } }
    
    @media (min-width: 1200px) {
    .list-group-horizontal-xl {
    flex-direction: row; }
    .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.3125rem;
    border-top-right-radius: 0; }
    .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.3125rem;
    border-bottom-left-radius: 0; }
    .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0; }
    .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0; }
    .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px; } }
    
    .list-group-flush {
    border-radius: 0; }
    .list-group-flush > .list-group-item {
    border-width: 0 0 1px; }
    .list-group-flush > .list-group-item:last-child {
    border-bottom-width: 0; }
    
    .list-group-item-primary {
    color: #3c8757;
    background-color: #caf3d9; }
    .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
    color: #3c8757;
    background-color: #b5eeca; }
    .list-group-item-primary.list-group-item-action.active {
    color: #ffffff;
    background-color: #3c8757;
    border-color: #3c8757; }
    
    .list-group-item-secondary {
    color: #29384d;
    background-color: #c0c8d4; }
    .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
    color: #29384d;
    background-color: #b1bbca; }
    .list-group-item-secondary.list-group-item-action.active {
    color: #ffffff;
    background-color: #29384d;
    border-color: #29384d; }
    
    .list-group-item-success {
    color: #919896;
    background-color: #f8fcfb; }
    .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
    color: #919896;
    background-color: #e6f4f1; }
    .list-group-item-success.list-group-item-action.active {
    color: #ffffff;
    background-color: #919896;
    border-color: #919896; }
    
    .list-group-item-info {
    color: #93999e;
    background-color: #f9fdff; }
    .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
    color: #93999e;
    background-color: #e0f5ff; }
    .list-group-item-info.list-group-item-action.active {
    color: #ffffff;
    background-color: #93999e;
    border-color: #93999e; }
    
    .list-group-item-warning {
    color: #9e7219;
    background-color: #ffe7b8; }
    .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
    color: #9e7219;
    background-color: #ffde9f; }
    .list-group-item-warning.list-group-item-action.active {
    color: #ffffff;
    background-color: #9e7219;
    border-color: #9e7219; }
    
    .list-group-item-danger {
    color: #993838;
    background-color: #fcc8c8; }
    .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
    color: #993838;
    background-color: #fbb0b0; }
    .list-group-item-danger.list-group-item-action.active {
    color: #ffffff;
    background-color: #993838;
    border-color: #993838; }
    
    .list-group-item-light {
    color: #9a9a9b;
    background-color: #fdfdfe; }
    .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
    color: #9a9a9b;
    background-color: #ececf6; }
    .list-group-item-light.list-group-item-action.active {
    color: #ffffff;
    background-color: #9a9a9b;
    border-color: #9a9a9b; }
    
    .list-group-item-dark {
    color: #343434;
    background-color: #c6c6c6; }
    .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
    color: #343434;
    background-color: #b9b9b9; }
    .list-group-item-dark.list-group-item-action.active {
    color: #ffffff;
    background-color: #343434;
    border-color: #343434; }
    
    .list-group-item-white {
    color: #9e9e9e;
    background-color: white; }
    .list-group-item-white.list-group-item-action:hover, .list-group-item-white.list-group-item-action:focus {
    color: #9e9e9e;
    background-color: #f2f2f2; }
    .list-group-item-white.list-group-item-action.active {
    color: #ffffff;
    background-color: #9e9e9e;
    border-color: #9e9e9e; }
    
    .list-group-item-gray {
    color: #5c6066;
    background-color: #dcdee1; }
    .list-group-item-gray.list-group-item-action:hover, .list-group-item-gray.list-group-item-action:focus {
    color: #5c6066;
    background-color: #ced1d5; }
    .list-group-item-gray.list-group-item-action.active {
    color: #ffffff;
    background-color: #5c6066;
    border-color: #5c6066; }
    
    .list-group-item-gray300 {
    color: #949494;
    background-color: #fafafa; }
    .list-group-item-gray300.list-group-item-action:hover, .list-group-item-gray300.list-group-item-action:focus {
    color: #949494;
    background-color: #ededed; }
    .list-group-item-gray300.list-group-item-action.active {
    color: #ffffff;
    background-color: #949494;
    border-color: #949494; }
    
    .list-group-item-gray200 {
    color: #969696;
    background-color: #fbfbfb; }
    .list-group-item-gray200.list-group-item-action:hover, .list-group-item-gray200.list-group-item-action:focus {
    color: #969696;
    background-color: #eeeeee; }
    .list-group-item-gray200.list-group-item-action.active {
    color: #ffffff;
    background-color: #969696;
    border-color: #969696; }
    
    .media {
    display: flex;
    align-items: flex-start; }
    
    .media-body {
    flex: 1; }
    
    .badge {
    display: inline-block;
    padding: 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.3125rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
    .badge {
    transition: none; } }
    a.badge:hover, a.badge:focus {
    text-decoration: none; }
    .badge:empty {
    display: none; }
    
    .btn .badge {
    position: relative;
    top: -1px; }
    
    .badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem; }
    
    .badge-primary {
    color: #ffffff;
    background-color: #43d477; }
    a.badge-primary:hover, a.badge-primary:focus {
    color: #ffffff;
    background-color: #2aba5e; }
    a.badge-primary:focus, a.badge-primary.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(67, 212, 119, 0.5); }
    
    .badge-secondary {
    color: #ffffff;
    background-color: #1f3b64; }
    a.badge-secondary:hover, a.badge-secondary:focus {
    color: #ffffff;
    background-color: #13243d; }
    a.badge-secondary:focus, a.badge-secondary.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(31, 59, 100, 0.5); }
    
    .badge-success {
    color: #ffffff;
    background-color: #e7f4f0; }
    a.badge-success:hover, a.badge-success:focus {
    color: #ffffff;
    background-color: #c4e4da; }
    a.badge-success:focus, a.badge-success.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(231, 244, 240, 0.5); }
    
    .badge-info {
    color: #ffffff;
    background-color: #ebf7ff; }
    a.badge-info:hover, a.badge-info:focus {
    color: #ffffff;
    background-color: #b8e3ff; }
    a.badge-info:focus, a.badge-info.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(235, 247, 255, 0.5); }
    
    .badge-warning {
    color: #ffffff;
    background-color: #ffab00; }
    a.badge-warning:hover, a.badge-warning:focus {
    color: #ffffff;
    background-color: #cc8900; }
    a.badge-warning:focus, a.badge-warning.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255, 171, 0, 0.5); }
    
    .badge-danger {
    color: #ffffff;
    background-color: #f63c3c; }
    a.badge-danger:hover, a.badge-danger:focus {
    color: #ffffff;
    background-color: #f40b0b; }
    a.badge-danger:focus, a.badge-danger.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(246, 60, 60, 0.5); }
    
    .badge-light {
    color: #ffffff;
    background-color: #f8f9fa; }
    a.badge-light:hover, a.badge-light:focus {
    color: #ffffff;
    background-color: #dae0e5; }
    a.badge-light:focus, a.badge-light.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
    
    .badge-dark {
    color: #ffffff;
    background-color: #343434; }
    a.badge-dark:hover, a.badge-dark:focus {
    color: #ffffff;
    background-color: #1b1b1b; }
    a.badge-dark:focus, a.badge-dark.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(52, 52, 52, 0.5); }
    
    .badge-white {
    color: #212529;
    background-color: #ffffff; }
    a.badge-white:hover, a.badge-white:focus {
    color: #212529;
    background-color: #e6e6e6; }
    a.badge-white:focus, a.badge-white.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
    
    .badge-gray {
    color: #ffffff;
    background-color: #818894; }
    a.badge-gray:hover, a.badge-gray:focus {
    color: #ffffff;
    background-color: #686f7a; }
    a.badge-gray:focus, a.badge-gray.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(129, 136, 148, 0.5); }
    
    .badge-gray300 {
    color: #ffffff;
    background-color: #ececec; }
    a.badge-gray300:hover, a.badge-gray300:focus {
    color: #ffffff;
    background-color: lightgray; }
    a.badge-gray300:focus, a.badge-gray300.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(236, 236, 236, 0.5); }
    
    .badge-gray200 {
    color: #ffffff;
    background-color: #f1f1f1; }
    a.badge-gray200:hover, a.badge-gray200:focus {
    color: #ffffff;
    background-color: #d8d8d8; }
    a.badge-gray200:focus, a.badge-gray200.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(241, 241, 241, 0.5); }
    
    .nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none; }
    
    .nav-link {
    display: block;
    padding: 0.5rem 1rem; }
    .nav-link:hover, .nav-link:focus {
    text-decoration: none; }
    .nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default; }
    
    .nav-tabs {
    border-bottom: 1px solid #ececec; }
    .nav-tabs .nav-link {
    margin-bottom: -1px;
    border: 1px solid transparent;
    border-top-left-radius: 0.3125rem;
    border-top-right-radius: 0.3125rem; }
    .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
    border-color: #f1f1f1 #f1f1f1 #ececec; }
    .nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent; }
    .nav-tabs .nav-link.active,
    .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #ffffff;
    border-color: #ececec #ececec #ffffff; }
    .nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
    
    .nav-pills .nav-link {
    border-radius: 0.3125rem; }
    
    .nav-pills .nav-link.active,
    .nav-pills .show > .nav-link {
    color: #ffffff;
    background-color: #43d477; }
    
    .nav-fill > .nav-link,
    .nav-fill .nav-item {
    flex: 1 1 auto;
    text-align: center; }
    
    .nav-justified > .nav-link,
    .nav-justified .nav-item {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center; }
    
    .tab-content > .tab-pane {
    display: none; }
    
    .tab-content > .active {
    display: block; }
    
    .navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px; }
    .navbar .container,
    .navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    
    .navbar-brand {
    display: inline-block;
    padding-top: 0.3375rem;
    padding-bottom: 0.3375rem;
    margin-right: 20px;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap; }
    .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }
    
    .navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none; }
    .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0; }
    .navbar-nav .dropdown-menu {
    position: static;
    float: none; }
    
    .navbar-text {
    display: inline-block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem; }
    
    .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center; }
    
    .navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.3125rem; }
    .navbar-toggler:hover, .navbar-toggler:focus {
    text-decoration: none; }
    
    .navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: 50% / 100% 100% no-repeat; }
    
    .navbar-nav-scroll {
    max-height: 75vh;
    overflow-y: auto; }
    
    @media (max-width: 575.98px) {
    .navbar-expand-sm > .container,
    .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0; } }
    
    @media (min-width: 576px) {
    .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-sm .navbar-nav {
    flex-direction: row; }
    .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute; }
    .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.625rem;
    padding-left: 0.625rem; }
    .navbar-expand-sm > .container,
    .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    flex-wrap: nowrap; }
    .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible; }
    .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto; }
    .navbar-expand-sm .navbar-toggler {
    display: none; } }
    
    @media (max-width: 767.98px) {
    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0; } }
    
    @media (min-width: 768px) {
    .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-md .navbar-nav {
    flex-direction: row; }
    .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute; }
    .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.625rem;
    padding-left: 0.625rem; }
    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
    flex-wrap: nowrap; }
    .navbar-expand-md .navbar-nav-scroll {
    overflow: visible; }
    .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto; }
    .navbar-expand-md .navbar-toggler {
    display: none; } }
    
    @media (max-width: 991.98px) {
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0; } }
    
    @media (min-width: 992px) {
    .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-lg .navbar-nav {
    flex-direction: row; }
    .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute; }
    .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.625rem;
    padding-left: 0.625rem; }
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
    flex-wrap: nowrap; }
    .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible; }
    .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto; }
    .navbar-expand-lg .navbar-toggler {
    display: none; } }
    
    @media (max-width: 1199.98px) {
    .navbar-expand-xl > .container,
    .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0; } }
    
    @media (min-width: 1200px) {
    .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-xl .navbar-nav {
    flex-direction: row; }
    .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute; }
    .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.625rem;
    padding-left: 0.625rem; }
    .navbar-expand-xl > .container,
    .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
    flex-wrap: nowrap; }
    .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible; }
    .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto; }
    .navbar-expand-xl .navbar-toggler {
    display: none; } }
    
    .navbar-expand {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand > .container,
    .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
    padding-right: 0;
    padding-left: 0; }
    .navbar-expand .navbar-nav {
    flex-direction: row; }
    .navbar-expand .navbar-nav .dropdown-menu {
    position: absolute; }
    .navbar-expand .navbar-nav .nav-link {
    padding-right: 0.625rem;
    padding-left: 0.625rem; }
    .navbar-expand > .container,
    .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
    flex-wrap: nowrap; }
    .navbar-expand .navbar-nav-scroll {
    overflow: visible; }
    .navbar-expand .navbar-collapse {
    display: flex !important;
    flex-basis: auto; }
    .navbar-expand .navbar-toggler {
    display: none; }
    
    .navbar-light .navbar-brand {
    color: rgba(52, 52, 52, 0.9); }
    .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
    color: rgba(52, 52, 52, 0.9); }
    
    .navbar-light .navbar-nav .nav-link {
    color: rgba(52, 52, 52, 0.5); }
    .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: rgba(52, 52, 52, 0.7); }
    .navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(52, 52, 52, 0.3); }
    
    .navbar-light .navbar-nav .show > .nav-link,
    .navbar-light .navbar-nav .active > .nav-link,
    .navbar-light .navbar-nav .nav-link.show,
    .navbar-light .navbar-nav .nav-link.active {
    color: rgba(52, 52, 52, 0.9); }
    
    .navbar-light .navbar-toggler {
    color: rgba(52, 52, 52, 0.5);
    border-color: rgba(52, 52, 52, 0.1); }
    
    .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2852, 52, 52, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
    
    .navbar-light .navbar-text {
    color: rgba(52, 52, 52, 0.5); }
    .navbar-light .navbar-text a {
    color: rgba(52, 52, 52, 0.9); }
    .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
    color: rgba(52, 52, 52, 0.9); }
    
    .navbar-dark .navbar-brand {
    color: #ffffff; }
    .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
    color: #ffffff; }
    
    .navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5); }
    .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75); }
    .navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25); }
    
    .navbar-dark .navbar-nav .show > .nav-link,
    .navbar-dark .navbar-nav .active > .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff; }
    
    .navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.1); }
    
    .navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
    
    .navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.5); }
    .navbar-dark .navbar-text a {
    color: #ffffff; }
    .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
    color: #ffffff; }
    
    .table {
    width: 100%;
    margin-bottom: 20px;
    color: #171347; }
    .table th,
    .table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #ececec; }
    .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #ececec; }
    .table tbody + tbody {
    border-top: 2px solid #ececec; }
    
    .table-sm th,
    .table-sm td {
    padding: 0.3rem; }
    
    .table-bordered {
    border: 1px solid #ececec; }
    .table-bordered th,
    .table-bordered td {
    border: 1px solid #ececec; }
    .table-bordered thead th,
    .table-bordered thead td {
    border-bottom-width: 2px; }
    
    .table-borderless th,
    .table-borderless td,
    .table-borderless thead th,
    .table-borderless tbody + tbody {
    border: 0; }
    
    .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(52, 52, 52, 0.05); }
    
    .table-hover tbody tr:hover {
    color: #171347;
    background-color: rgba(52, 52, 52, 0.075); }
    
    .table-primary,
    .table-primary > th,
    .table-primary > td {
    background-color: #caf3d9; }
    
    .table-primary th,
    .table-primary td,
    .table-primary thead th,
    .table-primary tbody + tbody {
    border-color: #9de9b8; }
    
    .table-hover .table-primary:hover {
    background-color: #b5eeca; }
    .table-hover .table-primary:hover > td,
    .table-hover .table-primary:hover > th {
    background-color: #b5eeca; }
    
    .table-secondary,
    .table-secondary > th,
    .table-secondary > td {
    background-color: #c0c8d4; }
    
    .table-secondary th,
    .table-secondary td,
    .table-secondary thead th,
    .table-secondary tbody + tbody {
    border-color: #8b99ae; }
    
    .table-hover .table-secondary:hover {
    background-color: #b1bbca; }
    .table-hover .table-secondary:hover > td,
    .table-hover .table-secondary:hover > th {
    background-color: #b1bbca; }
    
    .table-success,
    .table-success > th,
    .table-success > td {
    background-color: #f8fcfb; }
    
    .table-success th,
    .table-success td,
    .table-success thead th,
    .table-success tbody + tbody {
    border-color: #f3f9f7; }
    
    .table-hover .table-success:hover {
    background-color: #e6f4f1; }
    .table-hover .table-success:hover > td,
    .table-hover .table-success:hover > th {
    background-color: #e6f4f1; }
    
    .table-info,
    .table-info > th,
    .table-info > td {
    background-color: #f9fdff; }
    
    .table-info th,
    .table-info td,
    .table-info thead th,
    .table-info tbody + tbody {
    border-color: #f5fbff; }
    
    .table-hover .table-info:hover {
    background-color: #e0f5ff; }
    .table-hover .table-info:hover > td,
    .table-hover .table-info:hover > th {
    background-color: #e0f5ff; }
    
    .table-warning,
    .table-warning > th,
    .table-warning > td {
    background-color: #ffe7b8; }
    
    .table-warning th,
    .table-warning td,
    .table-warning thead th,
    .table-warning tbody + tbody {
    border-color: #ffd37a; }
    
    .table-hover .table-warning:hover {
    background-color: #ffde9f; }
    .table-hover .table-warning:hover > td,
    .table-hover .table-warning:hover > th {
    background-color: #ffde9f; }
    
    .table-danger,
    .table-danger > th,
    .table-danger > td {
    background-color: #fcc8c8; }
    
    .table-danger th,
    .table-danger td,
    .table-danger thead th,
    .table-danger tbody + tbody {
    border-color: #fa9a9a; }
    
    .table-hover .table-danger:hover {
    background-color: #fbb0b0; }
    .table-hover .table-danger:hover > td,
    .table-hover .table-danger:hover > th {
    background-color: #fbb0b0; }
    
    .table-light,
    .table-light > th,
    .table-light > td {
    background-color: #fdfdfe; }
    
    .table-light th,
    .table-light td,
    .table-light thead th,
    .table-light tbody + tbody {
    border-color: #fbfcfc; }
    
    .table-hover .table-light:hover {
    background-color: #ececf6; }
    .table-hover .table-light:hover > td,
    .table-hover .table-light:hover > th {
    background-color: #ececf6; }
    
    .table-dark,
    .table-dark > th,
    .table-dark > td {
    background-color: #c6c6c6; }
    
    .table-dark th,
    .table-dark td,
    .table-dark thead th,
    .table-dark tbody + tbody {
    border-color: #959595; }
    
    .table-hover .table-dark:hover {
    background-color: #b9b9b9; }
    .table-hover .table-dark:hover > td,
    .table-hover .table-dark:hover > th {
    background-color: #b9b9b9; }
    
    .table-white,
    .table-white > th,
    .table-white > td {
    background-color: white; }
    
    .table-white th,
    .table-white td,
    .table-white thead th,
    .table-white tbody + tbody {
    border-color: white; }
    
    .table-hover .table-white:hover {
    background-color: #f2f2f2; }
    .table-hover .table-white:hover > td,
    .table-hover .table-white:hover > th {
    background-color: #f2f2f2; }
    
    .table-gray,
    .table-gray > th,
    .table-gray > td {
    background-color: #dcdee1; }
    
    .table-gray th,
    .table-gray td,
    .table-gray thead th,
    .table-gray tbody + tbody {
    border-color: #bdc1c7; }
    
    .table-hover .table-gray:hover {
    background-color: #ced1d5; }
    .table-hover .table-gray:hover > td,
    .table-hover .table-gray:hover > th {
    background-color: #ced1d5; }
    
    .table-gray300,
    .table-gray300 > th,
    .table-gray300 > td {
    background-color: #fafafa; }
    
    .table-gray300 th,
    .table-gray300 td,
    .table-gray300 thead th,
    .table-gray300 tbody + tbody {
    border-color: whitesmoke; }
    
    .table-hover .table-gray300:hover {
    background-color: #ededed; }
    .table-hover .table-gray300:hover > td,
    .table-hover .table-gray300:hover > th {
    background-color: #ededed; }
    
    .table-gray200,
    .table-gray200 > th,
    .table-gray200 > td {
    background-color: #fbfbfb; }
    
    .table-gray200 th,
    .table-gray200 td,
    .table-gray200 thead th,
    .table-gray200 tbody + tbody {
    border-color: #f8f8f8; }
    
    .table-hover .table-gray200:hover {
    background-color: #eeeeee; }
    .table-hover .table-gray200:hover > td,
    .table-hover .table-gray200:hover > th {
    background-color: #eeeeee; }
    
    .table-active,
    .table-active > th,
    .table-active > td {
    background-color: rgba(52, 52, 52, 0.075); }
    
    .table-hover .table-active:hover {
    background-color: rgba(39, 39, 39, 0.075); }
    .table-hover .table-active:hover > td,
    .table-hover .table-active:hover > th {
    background-color: rgba(39, 39, 39, 0.075); }
    
    .table .thead-dark th {
    color: #ffffff;
    background-color: #343a40;
    border-color: #454d55; }
    
    .table .thead-light th {
    color: #495057;
    background-color: #f1f1f1;
    border-color: #ececec; }
    
    .table-dark {
    color: #ffffff;
    background-color: #343a40; }
    .table-dark th,
    .table-dark td,
    .table-dark thead th {
    border-color: #454d55; }
    .table-dark.table-bordered {
    border: 0; }
    .table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05); }
    .table-dark.table-hover tbody tr:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.075); }
    
    @media (max-width: 575.98px) {
    .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
    .table-responsive-sm > .table-bordered {
    border: 0; } }
    
    @media (max-width: 767.98px) {
    .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
    .table-responsive-md > .table-bordered {
    border: 0; } }
    
    @media (max-width: 991.98px) {
    .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
    .table-responsive-lg > .table-bordered {
    border: 0; } }
    
    @media (max-width: 1199.98px) {
    .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
    .table-responsive-xl > .table-bordered {
    border: 0; } }
    
    .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
    .table-responsive > .table-bordered {
    border: 0; }
    
    .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #ffffff;
    background-clip: border-box;
    border: 1px solid rgba(52, 52, 52, 0.125);
    border-radius: 0.3125rem; }
    .card > hr {
    margin-right: 0;
    margin-left: 0; }
    .card > .list-group {
    border-top: inherit;
    border-bottom: inherit; }
    .card > .list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: calc(0.3125rem - 1px);
    border-top-right-radius: calc(0.3125rem - 1px); }
    .card > .list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: calc(0.3125rem - 1px);
    border-bottom-left-radius: calc(0.3125rem - 1px); }
    .card > .card-header + .list-group,
    .card > .list-group + .card-footer {
    border-top: 0; }
    
    .card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem; }
    
    .card-title {
    margin-bottom: 0.75rem; }
    
    .card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0; }
    
    .card-text:last-child {
    margin-bottom: 0; }
    
    .card-link:hover {
    text-decoration: none; }
    
    .card-link + .card-link {
    margin-left: 1.25rem; }
    
    .card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(52, 52, 52, 0.03);
    border-bottom: 1px solid rgba(52, 52, 52, 0.125); }
    .card-header:first-child {
    border-radius: calc(0.3125rem - 1px) calc(0.3125rem - 1px) 0 0; }
    
    .card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(52, 52, 52, 0.03);
    border-top: 1px solid rgba(52, 52, 52, 0.125); }
    .card-footer:last-child {
    border-radius: 0 0 calc(0.3125rem - 1px) calc(0.3125rem - 1px); }
    
    .card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0; }
    
    .card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem; }
    
    .card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
    border-radius: calc(0.3125rem - 1px); }
    
    .card-img,
    .card-img-top,
    .card-img-bottom {
    flex-shrink: 0;
    width: 100%; }
    
    .card-img,
    .card-img-top {
    border-top-left-radius: calc(0.3125rem - 1px);
    border-top-right-radius: calc(0.3125rem - 1px); }
    
    .card-img,
    .card-img-bottom {
    border-bottom-right-radius: calc(0.3125rem - 1px);
    border-bottom-left-radius: calc(0.3125rem - 1px); }
    
    .card-deck .card {
    margin-bottom: 15px; }
    
    @media (min-width: 576px) {
    .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px; }
    .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px; } }
    
    .card-group > .card {
    margin-bottom: 15px; }
    
    @media (min-width: 576px) {
    .card-group {
    display: flex;
    flex-flow: row wrap; }
    .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0; }
    .card-group > .card + .card {
    margin-left: 0;
    border-left: 0; }
    .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
    .card-group > .card:not(:last-child) .card-img-top,
    .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0; }
    .card-group > .card:not(:last-child) .card-img-bottom,
    .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0; }
    .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
    .card-group > .card:not(:first-child) .card-img-top,
    .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0; }
    .card-group > .card:not(:first-child) .card-img-bottom,
    .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0; } }
    
    .card-columns .card {
    margin-bottom: 0.75rem; }
    
    @media (min-width: 576px) {
    .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1; }
    .card-columns .card {
    display: inline-block;
    width: 100%; } }
    
    .accordion {
    overflow-anchor: none; }
    .accordion > .card {
    overflow: hidden; }
    .accordion > .card:not(:last-of-type) {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
    .accordion > .card:not(:first-of-type) {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
    .accordion > .card > .card-header {
    border-radius: 0;
    margin-bottom: -1px; }
    
    .form-control {
    display: block;
    width: 100%;
    height: 2.5rem;
    padding: 0.5rem 1rem;
    font-family: "iranSans";
    font-size: 0.75rem;
    font-weight: normal;
    line-height: 1.25;
    color: #343434;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #ececec;
    border-radius: 0.5rem;
    box-shadow: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
    .form-control {
    transition: none; } }
    .form-control::-ms-expand {
    background-color: transparent;
    border: 0; }
    .form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #343434; }
    .form-control:focus {
    color: #343434;
    background-color: #ffffff;
    border-color: #43d477;
    outline: 0;
    box-shadow: 1.5rem; }
    .form-control::placeholder {
    color: #818894;
    opacity: 1; }
    .form-control:disabled, .form-control[readonly] {
    background-color: #f1f1f1;
    opacity: 1; }
    
    input[type="date"].form-control,
    input[type="time"].form-control,
    input[type="datetime-local"].form-control,
    input[type="month"].form-control {
    appearance: none; }
    
    select.form-control:focus::-ms-value {
    color: #343434;
    background-color: #ffffff; }
    
    .form-control-file,
    .form-control-range {
    display: block;
    width: 100%; }
    
    .col-form-label {
    padding-top: calc(0.5rem + 1px);
    padding-bottom: calc(0.5rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.25; }
    
    .col-form-label-lg {
    padding-top: calc(0.5rem + 1px);
    padding-bottom: calc(0.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5; }
    
    .col-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: 1rem;
    line-height: 1.5; }
    
    .form-control-plaintext {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    margin-bottom: 0;
    font-size: 0.75rem;
    line-height: 1.25;
    color: #343434;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0; }
    .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
    padding-right: 0;
    padding-left: 0; }
    
    .form-control-sm {
    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.625rem; }
    
    .form-control-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    border-radius: 0.9375rem; }
    
    select.form-control[size], select.form-control[multiple] {
    height: auto; }
    
    textarea.form-control {
    height: auto; }
    
    .form-group {
    margin-bottom: 1rem; }
    
    .form-text {
    display: block;
    margin-top: 0.25rem; }
    
    .form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px; }
    .form-row > .col,
    .form-row > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px; }
    
    .form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem; }
    
    .form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem; }
    .form-check-input[disabled] ~ .form-check-label,
    .form-check-input:disabled ~ .form-check-label {
    color: #6c757d; }
    
    .form-check-label {
    margin-bottom: 0; }
    
    .form-check-inline {
    display: inline-flex;
    align-items: center;
    padding-left: 0;
    margin-right: 0.75rem; }
    .form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: 0.3125rem;
    margin-left: 0; }
    
    .valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #43d477; }
    
    .valid-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: .1rem;
    font-size: 0.75rem;
    line-height: 1.3;
    color: #ffffff;
    background-color: rgba(67, 212, 119, 0.9);
    border-radius: 5px; }
    .form-row > .col > .valid-tooltip,
    .form-row > [class*="col-"] > .valid-tooltip {
    left: 5px; }
    
    .was-validated :valid ~ .valid-feedback,
    .was-validated :valid ~ .valid-tooltip,
    .is-valid ~ .valid-feedback,
    .is-valid ~ .valid-tooltip {
    display: block; }
    
    .was-validated .form-control:valid, .form-control.is-valid {
    border-color: #43d477;
    padding-right: calc(1.25em + 1rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2343d477' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.3125em + 0.25rem) center;
    background-size: calc(0.625em + 0.5rem) calc(0.625em + 0.5rem); }
    .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
    border-color: #43d477;
    box-shadow: 0 0 0 0.2rem rgba(67, 212, 119, 0.25); }
    
    .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
    padding-right: calc(1.25em + 1rem);
    background-position: top calc(0.3125em + 0.25rem) right calc(0.3125em + 0.25rem); }
    
    .was-validated .custom-select:valid, .custom-select.is-valid {
    border-color: #43d477;
    padding-right: calc(0.75em + 2.75rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1rem center/8px 10px no-repeat, #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2343d477' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 2rem/calc(0.625em + 0.5rem) calc(0.625em + 0.5rem) no-repeat; }
    .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
    border-color: #43d477;
    box-shadow: 0 0 0 0.2rem rgba(67, 212, 119, 0.25); }
    
    .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
    color: #43d477; }
    
    .was-validated .form-check-input:valid ~ .valid-feedback,
    .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
    .form-check-input.is-valid ~ .valid-tooltip {
    display: block; }
    
    .was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
    color: #43d477; }
    .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
    border-color: #43d477; }
    
    .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
    border-color: #6ddd95;
    background-color: #6ddd95; }
    
    .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(67, 212, 119, 0.25); }
    
    .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #43d477; }
    
    .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
    border-color: #43d477; }
    
    .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
    border-color: #43d477;
    box-shadow: 0 0 0 0.2rem rgba(67, 212, 119, 0.25); }
    
    .invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #f63c3c; }
    
    .invalid-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: .1rem;
    font-size: 0.75rem;
    line-height: 1.3;
    color: #ffffff;
    background-color: rgba(246, 60, 60, 0.9);
    border-radius: 5px; }
    .form-row > .col > .invalid-tooltip,
    .form-row > [class*="col-"] > .invalid-tooltip {
    left: 5px; }
    
    .was-validated :invalid ~ .invalid-feedback,
    .was-validated :invalid ~ .invalid-tooltip,
    .is-invalid ~ .invalid-feedback,
    .is-invalid ~ .invalid-tooltip {
    display: block; }
    
    .was-validated .form-control:invalid, .form-control.is-invalid {
    border-color: #f63c3c;
    padding-right: calc(1.25em + 1rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f63c3c' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f63c3c' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.3125em + 0.25rem) center;
    background-size: calc(0.625em + 0.5rem) calc(0.625em + 0.5rem); }
    .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
    border-color: #f63c3c;
    box-shadow: 0 0 0 0.2rem rgba(246, 60, 60, 0.25); }
    
    .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
    padding-right: calc(1.25em + 1rem);
    background-position: top calc(0.3125em + 0.25rem) right calc(0.3125em + 0.25rem); }
    
    .was-validated .custom-select:invalid, .custom-select.is-invalid {
    border-color: #f63c3c;
    padding-right: calc(0.75em + 2.75rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1rem center/8px 10px no-repeat, #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f63c3c' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f63c3c' stroke='none'/%3e%3c/svg%3e") center right 2rem/calc(0.625em + 0.5rem) calc(0.625em + 0.5rem) no-repeat; }
    .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
    border-color: #f63c3c;
    box-shadow: 0 0 0 0.2rem rgba(246, 60, 60, 0.25); }
    
    .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
    color: #f63c3c; }
    
    .was-validated .form-check-input:invalid ~ .invalid-feedback,
    .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
    .form-check-input.is-invalid ~ .invalid-tooltip {
    display: block; }
    
    .was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
    color: #f63c3c; }
    .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
    border-color: #f63c3c; }
    
    .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
    border-color: #f86d6d;
    background-color: #f86d6d; }
    
    .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(246, 60, 60, 0.25); }
    
    .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #f63c3c; }
    
    .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
    border-color: #f63c3c; }
    
    .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
    border-color: #f63c3c;
    box-shadow: 0 0 0 0.2rem rgba(246, 60, 60, 0.25); }
    
    .form-inline {
    display: flex;
    flex-flow: row wrap;
    align-items: center; }
    .form-inline .form-check {
    width: 100%; }
    @media (min-width: 576px) {
    .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0; }
    .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0; }
    .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
    .form-inline .form-control-plaintext {
    display: inline-block; }
    .form-inline .input-group,
    .form-inline .custom-select {
    width: auto; }
    .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0; }
    .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0; }
    .form-inline .custom-control {
    align-items: center;
    justify-content: center; }
    .form-inline .custom-control-label {
    margin-bottom: 0; } }
    
    .input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%; }
    .input-group > .form-control,
    .input-group > .form-control-plaintext,
    .input-group > .custom-select,
    .input-group > .custom-file {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0; }
    .input-group > .form-control + .form-control,
    .input-group > .form-control + .custom-select,
    .input-group > .form-control + .custom-file,
    .input-group > .form-control-plaintext + .form-control,
    .input-group > .form-control-plaintext + .custom-select,
    .input-group > .form-control-plaintext + .custom-file,
    .input-group > .custom-select + .form-control,
    .input-group > .custom-select + .custom-select,
    .input-group > .custom-select + .custom-file,
    .input-group > .custom-file + .form-control,
    .input-group > .custom-file + .custom-select,
    .input-group > .custom-file + .custom-file {
    margin-left: -1px; }
    .input-group > .form-control:focus,
    .input-group > .custom-select:focus,
    .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
    z-index: 3; }
    .input-group > .custom-file .custom-file-input:focus {
    z-index: 4; }
    .input-group > .form-control:not(:first-child),
    .input-group > .custom-select:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
    .input-group > .custom-file {
    display: flex;
    align-items: center; }
    .input-group > .custom-file:not(:last-child) .custom-file-label,
    .input-group > .custom-file:not(:first-child) .custom-file-label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
    .input-group:not(.has-validation) > .form-control:not(:last-child),
    .input-group:not(.has-validation) > .custom-select:not(:last-child),
    .input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
    .input-group.has-validation > .form-control:nth-last-child(n + 3),
    .input-group.has-validation > .custom-select:nth-last-child(n + 3),
    .input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
    
    .input-group-prepend,
    .input-group-append {
    display: flex; }
    .input-group-prepend .btn,
    .input-group-append .btn {
    position: relative;
    z-index: 2; }
    .input-group-prepend .btn:focus,
    .input-group-append .btn:focus {
    z-index: 3; }
    .input-group-prepend .btn + .btn,
    .input-group-prepend .btn + .input-group-text,
    .input-group-prepend .input-group-text + .input-group-text,
    .input-group-prepend .input-group-text + .btn,
    .input-group-append .btn + .btn,
    .input-group-append .btn + .input-group-text,
    .input-group-append .input-group-text + .input-group-text,
    .input-group-append .input-group-text + .btn {
    margin-left: -1px; }
    
    .input-group-prepend {
    margin-right: -1px; }
    
    .input-group-append {
    margin-left: -1px; }
    
    .input-group-text {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.25;
    color: #343434;
    text-align: center;
    white-space: nowrap;
    background-color: #1f3b64;
    border: 1px solid #ececec;
    border-radius: 0.5rem; }
    .input-group-text input[type="radio"],
    .input-group-text input[type="checkbox"] {
    margin-top: 0; }
    
    .input-group-lg > .form-control:not(textarea),
    .input-group-lg > .custom-select {
    height: calc(1.5em + 1rem + 2px); }
    
    .input-group-lg > .form-control,
    .input-group-lg > .custom-select,
    .input-group-lg > .input-group-prepend > .input-group-text,
    .input-group-lg > .input-group-append > .input-group-text,
    .input-group-lg > .input-group-prepend > .btn,
    .input-group-lg > .input-group-append > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.9375rem; }
    
    .input-group-sm > .form-control:not(textarea),
    .input-group-sm > .custom-select {
    height: calc(1.5em + 0.5rem + 2px); }
    
    .input-group-sm > .form-control,
    .input-group-sm > .custom-select,
    .input-group-sm > .input-group-prepend > .input-group-text,
    .input-group-sm > .input-group-append > .input-group-text,
    .input-group-sm > .input-group-prepend > .btn,
    .input-group-sm > .input-group-append > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.625rem; }
    
    .input-group-lg > .custom-select,
    .input-group-sm > .custom-select {
    padding-right: 2rem; }
    
    .input-group > .input-group-prepend > .btn,
    .input-group > .input-group-prepend > .input-group-text,
    .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
    .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
    .input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .btn,
    .input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .input-group-text,
    .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
    .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
    
    .input-group > .input-group-append > .btn,
    .input-group > .input-group-append > .input-group-text,
    .input-group > .input-group-prepend:not(:first-child) > .btn,
    .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
    .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
    .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
    
    .custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.3rem;
    padding-left: 2rem;
    color-adjust: exact; }
    
    .custom-control-inline {
    display: inline-flex;
    margin-right: 1rem; }
    
    .custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1.5rem;
    height: 1.4rem;
    opacity: 0; }
    .custom-control-input:checked ~ .custom-control-label::before {
    color: #ffffff;
    border-color: #43d477;
    background-color: #43d477;
    box-shadow:; }
    .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none, 1.5rem; }
    .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #43d477; }
    .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    color: #ffffff;
    background-color: #43d477;
    border-color: #43d477;
    box-shadow:; }
    .custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
    color: #6c757d; }
    .custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
    background-color: #f1f1f1; }
    
    .custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top; }
    .custom-control-label::before {
    position: absolute;
    top: -0.1rem;
    left: -2rem;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    pointer-events: none;
    content: "";
    background-color: #ffffff;
    border: #adb5bd solid 2px;
    box-shadow: none; }
    .custom-control-label::after {
    position: absolute;
    top: -0.1rem;
    left: -2rem;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    content: "";
    background: 50% / 50% 50% no-repeat; }
    
    .custom-checkbox .custom-control-label::before {
    border-radius: 0.25rem; }
    
    .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e"); }
    
    .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    }
    
    .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23ffffff' d='M0 2h4'/%3e%3c/svg%3e"); }
    
    .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(67, 212, 119, 0.5); }
    
    .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
    background-color: rgba(67, 212, 119, 0.5); }
    
    .custom-radio .custom-control-label::before {
    border-radius: 50%; }
    
    .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e"); }
    
    .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(67, 212, 119, 0.5); }
    
    .custom-switch {
    padding-left: 3.125rem; }
    .custom-switch .custom-control-label::before {
    left: -3.125rem;
    width: 2.625rem;
    pointer-events: all;
    border-radius: 0.75rem; }
    .custom-switch .custom-control-label::after {
    top: calc(-0.1rem + 4px);
    left: calc(-3.125rem + 4px);
    width: calc(1.5rem - 8px);
    height: calc(1.5rem - 8px);
    background-color: #adb5bd;
    border-radius: 0.75rem;
    transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
    .custom-switch .custom-control-label::after {
    transition: none; } }
    .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #ffffff;
    transform: translateX(1.125rem); }
    .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(67, 212, 119, 0.5); }
    
    .custom-select {
    display: inline-block;
    width: 100%;
    height: 2.5rem;
    padding: 0.5rem 2rem 0.5rem 1rem;
    font-family: "iranSans";
    font-size: 0.75rem;
    font-weight: normal;
    line-height: 1.25;
    color: #343434;
    vertical-align: middle;
    background: #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 1rem center/8px 10px no-repeat;
    border: 1px solid #ececec;
    border-radius: 0.3125rem;
    box-shadow: inset 0 1px 2px rgba(52, 52, 52, 0.075);
    appearance: none; }
    .custom-select:focus {
    border-color: #43d477;
    outline: 0;
    box-shadow: inset 0 1px 2px rgba(52, 52, 52, 0.075), 0 0 0 0.2rem rgba(67, 212, 119, 0.25); }
    .custom-select:focus::-ms-value {
    color: #343434;
    background-color: #ffffff; }
    .custom-select[multiple], .custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 1rem;
    background-image: none; }
    .custom-select:disabled {
    color: #6c757d;
    background-color: #f1f1f1; }
    .custom-select::-ms-expand {
    display: none; }
    .custom-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #343434; }
    
    .custom-select-sm {
    height: calc(1.5em + 0.5rem + 2px);
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    font-size: 1rem; }
    
    .custom-select-lg {
    height: calc(1.5em + 1rem + 2px);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.25rem; }
    
    .custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 2.5rem;
    margin-bottom: 0; }
    
    .custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 2.5rem;
    margin: 0;
    overflow: hidden;
    opacity: 0; }
    .custom-file-input:focus ~ .custom-file-label {
    border-color: #43d477;
    box-shadow: 1.5rem; }
    .custom-file-input[disabled] ~ .custom-file-label,
    .custom-file-input:disabled ~ .custom-file-label {
    background-color: #f1f1f1; }
    .custom-file-input:lang(en) ~ .custom-file-label::after {
    content: "Browse"; }
    .custom-file-input ~ .custom-file-label[data-browse]::after {
    content: attr(data-browse); }
    
    .custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 2.5rem;
    padding: 0.5rem 1rem;
    overflow: hidden;
    font-family: "iranSans";
    font-weight: normal;
    line-height: 1.25;
    color: #343434;
    background-color: #ffffff;
    border: 1px solid #ececec;
    border-radius: 0.5rem;
    box-shadow: none; }
    .custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.25em + 1rem);
    padding: 0.5rem 1rem;
    line-height: 1.25;
    color: #343434;
    content: "Browse";
    background-color: #1f3b64;
    border-left: inherit;
    border-radius: 0 0.5rem 0.5rem 0; }
    
    .custom-range {
    width: 100%;
    height: 1.4rem;
    padding: 0;
    background-color: transparent;
    appearance: none; }
    .custom-range:focus {
    outline: 0; }
    .custom-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #ffffff, 1.5rem; }
    .custom-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #ffffff, 1.5rem; }
    .custom-range:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #ffffff, 1.5rem; }
    .custom-range::-moz-focus-outer {
    border: 0; }
    .custom-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #43d477;
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 0.1rem 0.25rem rgba(52, 52, 52, 0.1);
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none; }
    @media (prefers-reduced-motion: reduce) {
    .custom-range::-webkit-slider-thumb {
    transition: none; } }
    .custom-range::-webkit-slider-thumb:active {
    background-color: #d4f5e0; }
    .custom-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #ececec;
    border-color: transparent;
    border-radius: 1rem;
    box-shadow: inset 0 0.25rem 0.25rem rgba(52, 52, 52, 0.1); }
    .custom-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #43d477;
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 0.1rem 0.25rem rgba(52, 52, 52, 0.1);
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none; }
    @media (prefers-reduced-motion: reduce) {
    .custom-range::-moz-range-thumb {
    transition: none; } }
    .custom-range::-moz-range-thumb:active {
    background-color: #d4f5e0; }
    .custom-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #ececec;
    border-color: transparent;
    border-radius: 1rem;
    box-shadow: inset 0 0.25rem 0.25rem rgba(52, 52, 52, 0.1); }
    .custom-range::-ms-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: 0.2rem;
    margin-left: 0.2rem;
    background-color: #43d477;
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 0.1rem 0.25rem rgba(52, 52, 52, 0.1);
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none; }
    @media (prefers-reduced-motion: reduce) {
    .custom-range::-ms-thumb {
    transition: none; } }
    .custom-range::-ms-thumb:active {
    background-color: #d4f5e0; }
    .custom-range::-ms-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    border-width: 0.5rem;
    box-shadow: inset 0 0.25rem 0.25rem rgba(52, 52, 52, 0.1); }
    .custom-range::-ms-fill-lower {
    background-color: #ececec;
    border-radius: 1rem; }
    .custom-range::-ms-fill-upper {
    margin-right: 15px;
    background-color: #ececec;
    border-radius: 1rem; }
    .custom-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd; }
    .custom-range:disabled::-webkit-slider-runnable-track {
    cursor: default; }
    .custom-range:disabled::-moz-range-thumb {
    background-color: #adb5bd; }
    .custom-range:disabled::-moz-range-track {
    cursor: default; }
    .custom-range:disabled::-ms-thumb {
    background-color: #adb5bd; }
    
    .custom-control-label::before,
    .custom-file-label,
    .custom-select {
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
    .custom-control-label::before,
    .custom-file-label,
    .custom-select {
    transition: none; } }
    
    .btn {
    display: inline-block;
    font-weight: 400;
    color: #343434;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding-right: 32px;
    padding-left: 32px;
    height: 48px;
    font-size: 0.875rem;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
    .btn {
    transition: none; } }
    .btn:hover {
    color: #343434;
    text-decoration: none; }
    .btn:focus, .btn.focus {
    outline: 0;
    box-shadow: none; }
    .btn.disabled, .btn:disabled {
    opacity: 0.65;
    box-shadow: none; }
    .btn:not(:disabled):not(.disabled) {
    cursor: pointer; }
    .btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
    box-shadow: none; }
    
    a.btn.disabled,
    fieldset:disabled a.btn {
    pointer-events: none; }
    
    .btn-primary {
    color: #ffffff;
    background-color: #085ca5;
    border-color: #085ca5;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075); }
    .btn-primary:hover {
    color: #ffffff;
    background-color: #ff1800;
    border-color: #ff1800; }
    .btn-primary:focus, .btn-primary.focus {
    color: #ffffff;
    background-color: #2dc463;
    border-color: #2aba5e;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075), 0 0 0 0 rgba(95, 218, 139, 0.5); }
    .btn-primary.disabled, .btn-primary:disabled {
    color: #ffffff;
    background-color: #43d477;
    border-color: #43d477; }
    .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
    .show > .btn-primary.dropdown-toggle {
    color: #ffffff;
    background-color: #2aba5e;
    border-color: #28af59; }
    .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
    .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(95, 218, 139, 0.5); }
    
    .btn-secondary {
    color: #ffffff;
    background-color: #1f3b64;
    border-color: #1f3b64;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075); }
    .btn-secondary:hover {
    color: #ffffff;
    background-color: #162a47;
    border-color: #13243d; }
    .btn-secondary:focus, .btn-secondary.focus {
    color: #ffffff;
    background-color: #162a47;
    border-color: #13243d;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075), 0 0 0 0 rgba(65, 88, 123, 0.5); }
    .btn-secondary.disabled, .btn-secondary:disabled {
    color: #ffffff;
    background-color: #1f3b64;
    border-color: #1f3b64; }
    .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
    .show > .btn-secondary.dropdown-toggle {
    color: #ffffff;
    background-color: #13243d;
    border-color: #101e33; }
    .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
    .show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(65, 88, 123, 0.5); }
    
    .btn-success {
    color: #ffffff;
    background-color: #e7f4f0;
    border-color: #e7f4f0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075); }
    .btn-success:hover {
    color: #ffffff;
    background-color: #cde8e0;
    border-color: #c4e4da; }
    .btn-success:focus, .btn-success.focus {
    color: #ffffff;
    background-color: #cde8e0;
    border-color: #c4e4da;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075), 0 0 0 0 rgba(235, 246, 242, 0.5); }
    .btn-success.disabled, .btn-success:disabled {
    color: #ffffff;
    background-color: #e7f4f0;
    border-color: #e7f4f0; }
    .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
    .show > .btn-success.dropdown-toggle {
    color: #ffffff;
    background-color: #c4e4da;
    border-color: #bbe0d5; }
    .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
    .show > .btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(235, 246, 242, 0.5); }
    
    .btn-info {
    color: #ffffff;
    background-color: #ebf7ff;
    border-color: #ebf7ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075); }
    .btn-info:hover {
    color: #ffffff;
    background-color: #c5e8ff;
    border-color: #b8e3ff; }
    .btn-info:focus, .btn-info.focus {
    color: #ffffff;
    background-color: #c5e8ff;
    border-color: #b8e3ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075), 0 0 0 0 rgba(238, 248, 255, 0.5); }
    .btn-info.disabled, .btn-info:disabled {
    color: #ffffff;
    background-color: #ebf7ff;
    border-color: #ebf7ff; }
    .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
    .show > .btn-info.dropdown-toggle {
    color: #ffffff;
    background-color: #b8e3ff;
    border-color: #abdeff; }
    .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
    .show > .btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(238, 248, 255, 0.5); }
    
    .btn-warning {
    color: #ffffff;
    background-color: #ffab00;
    border-color: #ffab00;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075); }
    .btn-warning:hover {
    color: #ffffff;
    background-color: #d99100;
    border-color: #cc8900; }
    .btn-warning:focus, .btn-warning.focus {
    color: #ffffff;
    background-color: #d99100;
    border-color: #cc8900;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075), 0 0 0 0 rgba(255, 184, 38, 0.5); }
    .btn-warning.disabled, .btn-warning:disabled {
    color: #ffffff;
    background-color: #ffab00;
    border-color: #ffab00; }
    .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
    .show > .btn-warning.dropdown-toggle {
    color: #ffffff;
    background-color: #cc8900;
    border-color: #bf8000; }
    .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
    .show > .btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(255, 184, 38, 0.5); }
    
    .btn-danger {
    color: #ffffff;
    background-color: #f63c3c;
    border-color: #f63c3c;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075); }
    .btn-danger:hover {
    color: #ffffff;
    background-color: #f41717;
    border-color: #f40b0b; }
    .btn-danger:focus, .btn-danger.focus {
    color: #ffffff;
    background-color: #f41717;
    border-color: #f40b0b;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075), 0 0 0 0 rgba(247, 89, 89, 0.5); }
    .btn-danger.disabled, .btn-danger:disabled {
    color: #ffffff;
    background-color: #f63c3c;
    border-color: #f63c3c; }
    .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
    .show > .btn-danger.dropdown-toggle {
    color: #ffffff;
    background-color: #f40b0b;
    border-color: #e80b0b; }
    .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
    .show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(247, 89, 89, 0.5); }
    
    .btn-light {
    color: #ffffff;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075); }
    .btn-light:hover {
    color: #ffffff;
    background-color: #e2e6ea;
    border-color: #dae0e5; }
    .btn-light:focus, .btn-light.focus {
    color: #ffffff;
    background-color: #e2e6ea;
    border-color: #dae0e5;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075), 0 0 0 0 rgba(249, 250, 251, 0.5); }
    .btn-light.disabled, .btn-light:disabled {
    color: #ffffff;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
    .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
    .show > .btn-light.dropdown-toggle {
    color: #ffffff;
    background-color: #dae0e5;
    border-color: #d3d9df; }
    .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
    .show > .btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(249, 250, 251, 0.5); }
    
    .btn-dark {
    color: #ffffff;
    background-color: #343434;
    border-color: #343434;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075); }
    .btn-dark:hover {
    color: #ffffff;
    background-color: #212121;
    border-color: #1b1b1b; }
    .btn-dark:focus, .btn-dark.focus {
    color: #ffffff;
    background-color: #212121;
    border-color: #1b1b1b;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075), 0 0 0 0 rgba(82, 82, 82, 0.5); }
    .btn-dark.disabled, .btn-dark:disabled {
    color: #ffffff;
    background-color: #343434;
    border-color: #343434; }
    .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
    .show > .btn-dark.dropdown-toggle {
    color: #ffffff;
    background-color: #1b1b1b;
    border-color: #141414; }
    .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
    .show > .btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(82, 82, 82, 0.5); }
    
    .btn-white {
    color: #212529;
    background-color: #ffffff;
    border-color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075); }
    .btn-white:hover {
    color: #ffffff;
    background-color: #ececec;
    border-color: #e6e6e6; }
    .btn-white:focus, .btn-white.focus {
    color: #ffffff;
    background-color: #ececec;
    border-color: #e6e6e6;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075), 0 0 0 0 rgba(222, 222, 223, 0.5); }
    .btn-white.disabled, .btn-white:disabled {
    color: #212529;
    background-color: #ffffff;
    border-color: #ffffff; }
    .btn-white:not(:disabled):not(.disabled):active, .btn-white:not(:disabled):not(.disabled).active,
    .show > .btn-white.dropdown-toggle {
    color: #ffffff;
    background-color: #e6e6e6;
    border-color: #dfdfdf; }
    .btn-white:not(:disabled):not(.disabled):active:focus, .btn-white:not(:disabled):not(.disabled).active:focus,
    .show > .btn-white.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(222, 222, 223, 0.5); }
    
    .btn-gray {
    color: #ffffff;
    background-color: #818894;
    border-color: #818894;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075); }
    .btn-gray:hover {
    color: #ffffff;
    background-color: #6e7581;
    border-color: #686f7a; }
    .btn-gray:focus, .btn-gray.focus {
    color: #ffffff;
    background-color: #6e7581;
    border-color: #686f7a;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075), 0 0 0 0 rgba(148, 154, 164, 0.5); }
    .btn-gray.disabled, .btn-gray:disabled {
    color: #ffffff;
    background-color: #818894;
    border-color: #818894; }
    .btn-gray:not(:disabled):not(.disabled):active, .btn-gray:not(:disabled):not(.disabled).active,
    .show > .btn-gray.dropdown-toggle {
    color: #ffffff;
    background-color: #686f7a;
    border-color: #626873; }
    .btn-gray:not(:disabled):not(.disabled):active:focus, .btn-gray:not(:disabled):not(.disabled).active:focus,
    .show > .btn-gray.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(148, 154, 164, 0.5); }
    
    .btn-gray300 {
    color: #ffffff;
    background-color: #ececec;
    border-color: #ececec;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075); }
    .btn-gray300:hover {
    color: #ffffff;
    background-color: #d9d9d9;
    border-color: lightgray; }
    .btn-gray300:focus, .btn-gray300.focus {
    color: #ffffff;
    background-color: #d9d9d9;
    border-color: lightgray;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075), 0 0 0 0 rgba(239, 239, 239, 0.5); }
    .btn-gray300.disabled, .btn-gray300:disabled {
    color: #ffffff;
    background-color: #ececec;
    border-color: #ececec; }
    .btn-gray300:not(:disabled):not(.disabled):active, .btn-gray300:not(:disabled):not(.disabled).active,
    .show > .btn-gray300.dropdown-toggle {
    color: #ffffff;
    background-color: lightgray;
    border-color: #cccccc; }
    .btn-gray300:not(:disabled):not(.disabled):active:focus, .btn-gray300:not(:disabled):not(.disabled).active:focus,
    .show > .btn-gray300.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(239, 239, 239, 0.5); }
    
    .btn-gray200 {
    color: #ffffff;
    background-color: #f1f1f1;
    border-color: #f1f1f1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075); }
    .btn-gray200:hover {
    color: #ffffff;
    background-color: #dedede;
    border-color: #d8d8d8; }
    .btn-gray200:focus, .btn-gray200.focus {
    color: #ffffff;
    background-color: #dedede;
    border-color: #d8d8d8;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(52, 52, 52, 0.075), 0 0 0 0 rgba(243, 243, 243, 0.5); }
    .btn-gray200.disabled, .btn-gray200:disabled {
    color: #ffffff;
    background-color: #f1f1f1;
    border-color: #f1f1f1; }
    .btn-gray200:not(:disabled):not(.disabled):active, .btn-gray200:not(:disabled):not(.disabled).active,
    .show > .btn-gray200.dropdown-toggle {
    color: #ffffff;
    background-color: #d8d8d8;
    border-color: #d1d1d1; }
    .btn-gray200:not(:disabled):not(.disabled):active:focus, .btn-gray200:not(:disabled):not(.disabled).active:focus,
    .show > .btn-gray200.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(243, 243, 243, 0.5); }
    
    .btn-outline-primary {
    color: #43d477;
    border-color: #43d477; }
    .btn-outline-primary:hover {
    color: #ffffff;
    background-color: #43d477;
    border-color: #43d477; }
    .btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0 rgba(67, 212, 119, 0.5); }
    .btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #43d477;
    background-color: transparent; }
    .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
    .show > .btn-outline-primary.dropdown-toggle {
    color: #ffffff;
    background-color: #43d477;
    border-color: #43d477; }
    .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(67, 212, 119, 0.5); }
    
    .btn-outline-secondary {
    color: #1f3b64;
    border-color: #1f3b64; }
    .btn-outline-secondary:hover {
    color: #ffffff;
    background-color: #1f3b64;
    border-color: #1f3b64; }
    .btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow: 0 0 0 0 rgba(31, 59, 100, 0.5); }
    .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #1f3b64;
    background-color: transparent; }
    .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
    .show > .btn-outline-secondary.dropdown-toggle {
    color: #ffffff;
    background-color: #1f3b64;
    border-color: #1f3b64; }
    .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(31, 59, 100, 0.5); }
    
    .btn-outline-success {
    color: #e7f4f0;
    border-color: #e7f4f0; }
    .btn-outline-success:hover {
    color: #ffffff;
    background-color: #e7f4f0;
    border-color: #e7f4f0; }
    .btn-outline-success:focus, .btn-outline-success.focus {
    box-shadow: 0 0 0 0 rgba(231, 244, 240, 0.5); }
    .btn-outline-success.disabled, .btn-outline-success:disabled {
    color: #e7f4f0;
    background-color: transparent; }
    .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
    .show > .btn-outline-success.dropdown-toggle {
    color: #ffffff;
    background-color: #e7f4f0;
    border-color: #e7f4f0; }
    .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(231, 244, 240, 0.5); }
    
    .btn-outline-info {
    color: #ebf7ff;
    border-color: #ebf7ff; }
    .btn-outline-info:hover {
    color: #ffffff;
    background-color: #ebf7ff;
    border-color: #ebf7ff; }
    .btn-outline-info:focus, .btn-outline-info.focus {
    box-shadow: 0 0 0 0 rgba(235, 247, 255, 0.5); }
    .btn-outline-info.disabled, .btn-outline-info:disabled {
    color: #ebf7ff;
    background-color: transparent; }
    .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
    .show > .btn-outline-info.dropdown-toggle {
    color: #ffffff;
    background-color: #ebf7ff;
    border-color: #ebf7ff; }
    .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(235, 247, 255, 0.5); }
    
    .btn-outline-warning {
    color: #ffab00;
    border-color: #ffab00; }
    .btn-outline-warning:hover {
    color: #ffffff;
    background-color: #ffab00;
    border-color: #ffab00; }
    .btn-outline-warning:focus, .btn-outline-warning.focus {
    box-shadow: 0 0 0 0 rgba(255, 171, 0, 0.5); }
    .btn-outline-warning.disabled, .btn-outline-warning:disabled {
    color: #ffab00;
    background-color: transparent; }
    .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
    .show > .btn-outline-warning.dropdown-toggle {
    color: #ffffff;
    background-color: #ffab00;
    border-color: #ffab00; }
    .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(255, 171, 0, 0.5); }
    
    .btn-outline-danger {
    color: #f63c3c;
    border-color: #f63c3c; }
    .btn-outline-danger:hover {
    color: #ffffff;
    background-color: #f63c3c;
    border-color: #f63c3c; }
    .btn-outline-danger:focus, .btn-outline-danger.focus {
    box-shadow: 0 0 0 0 rgba(246, 60, 60, 0.5); }
    .btn-outline-danger.disabled, .btn-outline-danger:disabled {
    color: #f63c3c;
    background-color: transparent; }
    .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
    .show > .btn-outline-danger.dropdown-toggle {
    color: #ffffff;
    background-color: #f63c3c;
    border-color: #f63c3c; }
    .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(246, 60, 60, 0.5); }
    
    .btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa; }
    .btn-outline-light:hover {
    color: #ffffff;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
    .btn-outline-light:focus, .btn-outline-light.focus {
    box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5); }
    .btn-outline-light.disabled, .btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent; }
    .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
    .show > .btn-outline-light.dropdown-toggle {
    color: #ffffff;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
    .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5); }
    
    .btn-outline-dark {
    color: #343434;
    border-color: #343434; }
    .btn-outline-dark:hover {
    color: #ffffff;
    background-color: #343434;
    border-color: #343434; }
    .btn-outline-dark:focus, .btn-outline-dark.focus {
    box-shadow: 0 0 0 0 rgba(52, 52, 52, 0.5); }
    .btn-outline-dark.disabled, .btn-outline-dark:disabled {
    color: #343434;
    background-color: transparent; }
    .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
    .show > .btn-outline-dark.dropdown-toggle {
    color: #ffffff;
    background-color: #343434;
    border-color: #343434; }
    .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(52, 52, 52, 0.5); }
    
    .btn-outline-white {
    color: #ffffff;
    border-color: #ffffff; }
    .btn-outline-white:hover {
    color: #212529;
    background-color: #ffffff;
    border-color: #ffffff; }
    .btn-outline-white:focus, .btn-outline-white.focus {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
    .btn-outline-white.disabled, .btn-outline-white:disabled {
    color: #ffffff;
    background-color: transparent; }
    .btn-outline-white:not(:disabled):not(.disabled):active, .btn-outline-white:not(:disabled):not(.disabled).active,
    .show > .btn-outline-white.dropdown-toggle {
    color: #212529;
    background-color: #ffffff;
    border-color: #ffffff; }
    .btn-outline-white:not(:disabled):not(.disabled):active:focus, .btn-outline-white:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-white.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
    
    .btn-outline-gray {
    color: #818894;
    border-color: #818894; }
    .btn-outline-gray:hover {
    color: #ffffff;
    background-color: #818894;
    border-color: #818894; }
    .btn-outline-gray:focus, .btn-outline-gray.focus {
    box-shadow: 0 0 0 0 rgba(129, 136, 148, 0.5); }
    .btn-outline-gray.disabled, .btn-outline-gray:disabled {
    color: #818894;
    background-color: transparent; }
    .btn-outline-gray:not(:disabled):not(.disabled):active, .btn-outline-gray:not(:disabled):not(.disabled).active,
    .show > .btn-outline-gray.dropdown-toggle {
    color: #ffffff;
    background-color: #818894;
    border-color: #818894; }
    .btn-outline-gray:not(:disabled):not(.disabled):active:focus, .btn-outline-gray:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-gray.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(129, 136, 148, 0.5); }
    
    .btn-outline-gray300 {
    color: #ececec;
    border-color: #ececec; }
    .btn-outline-gray300:hover {
    color: #ffffff;
    background-color: #ececec;
    border-color: #ececec; }
    .btn-outline-gray300:focus, .btn-outline-gray300.focus {
    box-shadow: 0 0 0 0 rgba(236, 236, 236, 0.5); }
    .btn-outline-gray300.disabled, .btn-outline-gray300:disabled {
    color: #ececec;
    background-color: transparent; }
    .btn-outline-gray300:not(:disabled):not(.disabled):active, .btn-outline-gray300:not(:disabled):not(.disabled).active,
    .show > .btn-outline-gray300.dropdown-toggle {
    color: #ffffff;
    background-color: #ececec;
    border-color: #ececec; }
    .btn-outline-gray300:not(:disabled):not(.disabled):active:focus, .btn-outline-gray300:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-gray300.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(236, 236, 236, 0.5); }
    
    .btn-outline-gray200 {
    color: #f1f1f1;
    border-color: #f1f1f1; }
    .btn-outline-gray200:hover {
    color: #ffffff;
    background-color: #f1f1f1;
    border-color: #f1f1f1; }
    .btn-outline-gray200:focus, .btn-outline-gray200.focus {
    box-shadow: 0 0 0 0 rgba(241, 241, 241, 0.5); }
    .btn-outline-gray200.disabled, .btn-outline-gray200:disabled {
    color: #f1f1f1;
    background-color: transparent; }
    .btn-outline-gray200:not(:disabled):not(.disabled):active, .btn-outline-gray200:not(:disabled):not(.disabled).active,
    .show > .btn-outline-gray200.dropdown-toggle {
    color: #ffffff;
    background-color: #f1f1f1;
    border-color: #f1f1f1; }
    .btn-outline-gray200:not(:disabled):not(.disabled):active:focus, .btn-outline-gray200:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-gray200.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(241, 241, 241, 0.5); }
    
    .btn-link {
    font-weight: 400;
    color: #343434;
    text-decoration: none; }
    .btn-link:hover {
    color: #343434;
    text-decoration: underline; }
    .btn-link:focus, .btn-link.focus {
    text-decoration: underline; }
    .btn-link:disabled, .btn-link.disabled {
    color: #6c757d;
    pointer-events: none; }
    
    .btn-lg, .btn-group-lg > .btn {
    padding-right: 32px;
    padding-left: 32px;
    height: 48px;
    font-size: 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
    
    .btn-sm, .btn-group-sm > .btn {
    padding-right: 16px;
    padding-left: 16px;
    height: 36px;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
    
    .btn-block {
    display: block;
    width: 100%; }
    .btn-block + .btn-block {
    margin-top: 0.5rem; }
    
    input[type="submit"].btn-block,
    input[type="reset"].btn-block,
    input[type="button"].btn-block {
    width: 100%; }
    
    .btn-group,
    .btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle; }
    .btn-group > .btn,
    .btn-group-vertical > .btn {
    position: relative;
    flex: 1 1 auto; }
    .btn-group > .btn:hover,
    .btn-group-vertical > .btn:hover {
    z-index: 1; }
    .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
    .btn-group-vertical > .btn:focus,
    .btn-group-vertical > .btn:active,
    .btn-group-vertical > .btn.active {
    z-index: 1; }
    
    .btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; }
    .btn-toolbar .input-group {
    width: auto; }
    
    .btn-group > .btn:not(:first-child),
    .btn-group > .btn-group:not(:first-child) {
    margin-left: -1px; }
    
    .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
    .btn-group > .btn-group:not(:last-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
    
    .btn-group > .btn:not(:first-child),
    .btn-group > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
    
    .dropdown-toggle-split {
    padding-right: 24px;
    padding-left: 24px; }
    .dropdown-toggle-split::after,
    .dropup .dropdown-toggle-split::after,
    .dropright .dropdown-toggle-split::after {
    margin-left: 0; }
    .dropleft .dropdown-toggle-split::before {
    margin-right: 0; }
    
    .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
    padding-right: 12px;
    padding-left: 12px; }
    
    .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
    padding-right: 24px;
    padding-left: 24px; }
    
    .btn-group.show .dropdown-toggle {
    box-shadow: none; }
    .btn-group.show .dropdown-toggle.btn-link {
    box-shadow: none; }
    
    .btn-group-vertical {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center; }
    .btn-group-vertical > .btn,
    .btn-group-vertical > .btn-group {
    width: 100%; }
    .btn-group-vertical > .btn:not(:first-child),
    .btn-group-vertical > .btn-group:not(:first-child) {
    margin-top: -1px; }
    .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
    .btn-group-vertical > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
    .btn-group-vertical > .btn:not(:first-child),
    .btn-group-vertical > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
    
    .btn-group-toggle > .btn,
    .btn-group-toggle > .btn-group > .btn {
    margin-bottom: 0; }
    .btn-group-toggle > .btn input[type="radio"],
    .btn-group-toggle > .btn input[type="checkbox"],
    .btn-group-toggle > .btn-group > .btn input[type="radio"],
    .btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none; }
    
    .img-fluid {
    max-width: 100%;
    height: auto; }
    
    .img-thumbnail {
    padding: 0.25rem;
    background-color: #ffffff;
    border: 1px solid #ececec;
    border-radius: 0.3125rem;
    box-shadow: 0 1px 2px rgba(52, 52, 52, 0.075);
    max-width: 100%;
    height: auto; }
    
    .figure {
    display: inline-block; }
    
    .figure-img {
    margin-bottom: 10px;
    line-height: 1; }
    
    .figure-caption {
    font-size: 90%;
    color: #6c757d; }
    
    .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #f1f1f1;
    border-radius: 0.3125rem; }
    
    .breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem; }
    .breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #6c757d;
    content: "/"; }
    
    .breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: underline; }
    
    .breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: none; }
    
    .breadcrumb-item.active {
    color: #6c757d; }
    
    .pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.3125rem; }
    
    .page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #343434;
    background-color: #ffffff;
    border: 1px solid #ececec; }
    .page-link:hover {
    z-index: 2;
    color: #343434;
    text-decoration: none;
    background-color: #f1f1f1;
    border-color: #ececec; }
    .page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 1.5rem; }
    
    .page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.3125rem;
    border-bottom-left-radius: 0.3125rem; }
    
    .page-item:last-child .page-link {
    border-top-right-radius: 0.3125rem;
    border-bottom-right-radius: 0.3125rem; }
    
    .page-item.active .page-link {
    z-index: 3;
    color: #ffffff;
    background-color: #43d477;
    border-color: #43d477; }
    
    .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #ffffff;
    border-color: #ececec; }
    
    .pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5; }
    
    .pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: 0.9375rem;
    border-bottom-left-radius: 0.9375rem; }
    
    .pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: 0.9375rem;
    border-bottom-right-radius: 0.9375rem; }
    
    .pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    line-height: 1.5; }
    
    .pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: 0.625rem;
    border-bottom-left-radius: 0.625rem; }
    
    .pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: 0.625rem;
    border-bottom-right-radius: 0.625rem; }
    
    .fade {
    transition: opacity 0.15s linear; }
    @media (prefers-reduced-motion: reduce) {
    .fade {
    transition: none; } }
    .fade:not(.show) {
    opacity: 0; }
    
    .collapse:not(.show) {
    display: none; }
    
    .collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease; }
    @media (prefers-reduced-motion: reduce) {
    .collapsing {
    transition: none; } }
    
    .dropup,
    .dropright,
    .dropdown,
    .dropleft {
    position: relative; }
    
    .dropdown-toggle {
    white-space: nowrap; }
    .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent; }
    .dropdown-toggle:empty::after {
    margin-left: 0; }
    
    .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #343434;
    text-align: left;
    list-style: none;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid rgba(52, 52, 52, 0.15);
    border-radius: 15px;
    box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.16); }
    
    .dropdown-menu-left {
    right: auto;
    left: 0; }
    
    .dropdown-menu-right {
    right: 0;
    left: auto; }
    
    @media (min-width: 576px) {
    .dropdown-menu-sm-left {
    right: auto;
    left: 0; }
    .dropdown-menu-sm-right {
    right: 0;
    left: auto; } }
    
    @media (min-width: 768px) {
    .dropdown-menu-md-left {
    right: auto;
    left: 0; }
    .dropdown-menu-md-right {
    right: 0;
    left: auto; } }
    
    @media (min-width: 992px) {
    .dropdown-menu-lg-left {
    right: auto;
    left: 0; }
    .dropdown-menu-lg-right {
    right: 0;
    left: auto; } }
    
    @media (min-width: 1200px) {
    .dropdown-menu-xl-left {
    right: auto;
    left: 0; }
    .dropdown-menu-xl-right {
    right: 0;
    left: auto; } }
    
    .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem; }
    
    .dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent; }
    
    .dropup .dropdown-toggle:empty::after {
    margin-left: 0; }
    
    .dropright .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: 0.125rem; }
    
    .dropright .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid; }
    
    .dropright .dropdown-toggle:empty::after {
    margin-left: 0; }
    
    .dropright .dropdown-toggle::after {
    vertical-align: 0; }
    
    .dropleft .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: 0.125rem; }
    
    .dropleft .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: ""; }
    
    .dropleft .dropdown-toggle::after {
    display: none; }
    
    .dropleft .dropdown-toggle::before {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0.3em solid;
    border-bottom: 0.3em solid transparent; }
    
    .dropleft .dropdown-toggle:empty::after {
    margin-left: 0; }
    
    .dropleft .dropdown-toggle::before {
    vertical-align: 0; }
    
    .dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
    right: auto;
    bottom: auto; }
    
    .dropdown-divider {
    height: 0;
    margin: 10px 0;
    overflow: hidden;
    border-top: 1px solid #f1f1f1; }
    
    .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0; }
    .dropdown-item:hover, .dropdown-item:focus {
    color: #16181b;
    text-decoration: none;
    background-color: #f1f1f1; }
    .dropdown-item.active, .dropdown-item:active {
    color: #ffffff;
    text-decoration: none;
    background-color: #43d477; }
    .dropdown-item.disabled, .dropdown-item:disabled {
    color: #adb5bd;
    pointer-events: none;
    background-color: transparent; }
    
    .dropdown-menu.show {
    display: block; }
    
    .dropdown-header {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: #6c757d;
    white-space: nowrap; }
    
    .dropdown-item-text {
    display: block;
    padding: 0.25rem 1.5rem;
    color: #212529; }
    
    .alert {
    position: relative;
    padding: 0.8rem 0.8rem;
    margin-bottom: 0;
    border: 1px solid transparent;
    border-radius: 0.5rem; }
    
    .alert-heading {
    color: inherit; }
    
    .alert-link {
    font-weight: 700; }
    
    .alert-dismissible {
    padding-right: 5.5rem; }
    .alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 2rem 2rem;
    color: inherit; }
    
    .alert-primary {
    color: #343434;
    background-color: #43d477;
    border-color: #43d477; }
    .alert-primary hr {
    border-top-color: #2fce68; }
    .alert-primary .alert-link {
    color: #1b1b1b; }
    
    .alert-secondary {
    color: #343434;
    background-color: #1f3b64;
    border-color: #1f3b64; }
    .alert-secondary hr {
    border-top-color: #193051; }
    .alert-secondary .alert-link {
    color: #1b1b1b; }
    
    .alert-success {
    color: #343434;
    background-color: #e7f4f0;
    border-color: #e7f4f0; }
    .alert-success hr {
    border-top-color: #d6ece5; }
    .alert-success .alert-link {
    color: #1b1b1b; }
    
    .alert-info {
    color: #343434;
    background-color: #ebf7ff;
    border-color: #ebf7ff; }
    .alert-info hr {
    border-top-color: #d2edff; }
    .alert-info .alert-link {
    color: #1b1b1b; }
    
    .alert-warning {
    color: #343434;
    background-color: #ffab00;
    border-color: #ffab00; }
    .alert-warning hr {
    border-top-color: #e69a00; }
    .alert-warning .alert-link {
    color: #1b1b1b; }
    
    .alert-danger {
    color: #343434;
    background-color: #e7f4f0;
    border-color: #e7f4f0; }
    .alert-danger hr {
    border-top-color: #f52424; }
    .alert-danger .alert-link {
    color: #1b1b1b; }
    
    .alert-light {
    color: #343434;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
    .alert-light hr {
    border-top-color: #e9ecef; }
    .alert-light .alert-link {
    color: #1b1b1b; }
    
    .alert-dark {
    color: #343434;
    background-color: #343434;
    border-color: #343434; }
    .alert-dark hr {
    border-top-color: #272727; }
    .alert-dark .alert-link {
    color: #1b1b1b; }
    
    .alert-white {
    color: #343434;
    background-color: white;
    border-color: white; }
    .alert-white hr {
    border-top-color: #f2f2f2; }
    .alert-white .alert-link {
    color: #1b1b1b; }
    
    .alert-gray {
    color: #343434;
    background-color: #818894;
    border-color: #818894; }
    .alert-gray hr {
    border-top-color: #737b88; }
    .alert-gray .alert-link {
    color: #1b1b1b; }
    
    .alert-gray300 {
    color: #343434;
    background-color: #ececec;
    border-color: #ececec; }
    .alert-gray300 hr {
    border-top-color: #dfdfdf; }
    .alert-gray300 .alert-link {
    color: #1b1b1b; }
    
    .alert-gray200 {
    color: #343434;
    background-color: #f1f1f1;
    border-color: #f1f1f1; }
    .alert-gray200 hr {
    
    border-top-color: #e4e4e4; }
    .alert-gray200 .alert-link {
    color: #1b1b1b; }
    
    @keyframes progress-bar-stripes {
    from {
    background-position: 1rem 0; }
    to {
    background-position: 0 0; } }
    
    .progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    line-height: 0;
    font-size: 0.75rem;
    background-color: #f1f1f1;
    border-radius: 0.3125rem;
    box-shadow: inset 0 0.1rem 0.1rem rgba(52, 52, 52, 0.1); }
    
    .progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    background-color: #43d477;
    transition: width 0.6s ease; }
    @media (prefers-reduced-motion: reduce) {
    .progress-bar {
    transition: none; } }
    
    .progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem; }
    
    .progress-bar-animated {
    animation: 1s linear infinite progress-bar-stripes; }
    @media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
    animation: none; } }
    
    .close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #343434;
    text-shadow: 0 1px 0 #ffffff;
    opacity: .5; }
    .close:hover {
    color: #343434;
    text-decoration: none; }
    .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
    opacity: .75; }
    
    button.close {
    padding: 0;
    background-color: transparent;
    border: 0; }
    
    a.close.disabled {
    pointer-events: none; }
    
    .toast {
    flex-basis: 350px;
    max-width: 350px;
    font-size: 0.875rem;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.25rem 0.75rem rgba(52, 52, 52, 0.1);
    opacity: 0;
    border-radius: 0.25rem; }
    .toast:not(:last-child) {
    margin-bottom: 0.75rem; }
    .toast.showing {
    opacity: 1; }
    .toast.show {
    display: block;
    opacity: 1; }
    .toast.hide {
    display: none; }
    
    .toast-header {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    color: #6c757d;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px); }
    
    .toast-body {
    padding: 0.75rem; }
    
    .modal-open {
    overflow: hidden; }
    .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto; }
    
    .modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0; }
    
    .modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none; }
    .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px); }
    @media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
    transition: none; } }
    .modal.show .modal-dialog {
    transform: none; }
    .modal.modal-static .modal-dialog {
    transform: scale(1.02); }
    
    .modal-dialog-scrollable {
    display: flex;
    max-height: calc(100% - 1rem); }
    .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden; }
    .modal-dialog-scrollable .modal-header,
    .modal-dialog-scrollable .modal-footer {
    flex-shrink: 0; }
    .modal-dialog-scrollable .modal-body {
    overflow-y: auto; }
    
    .modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem); }
    .modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    height: min-content;
    content: ""; }
    .modal-dialog-centered.modal-dialog-scrollable {
    flex-direction: column;
    justify-content: center;
    height: 100%; }
    .modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none; }
    .modal-dialog-centered.modal-dialog-scrollable::before {
    content: none; }
    
    .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid rgba(52, 52, 52, 0.2);
    border-radius: 0.9375rem;
    box-shadow: 0 0.25rem 0.5rem rgba(52, 52, 52, 0.5);
    outline: 0; }
    
    .modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #343434; }
    .modal-backdrop.fade {
    opacity: 0; }
    .modal-backdrop.show {
    opacity: 0.5; }
    
    .modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #ececec;
    border-top-left-radius: calc(0.9375rem - 1px);
    border-top-right-radius: calc(0.9375rem - 1px); }
    .modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto; }
    
    .modal-title {
    margin-bottom: 0;
    line-height: 1.3; }
    
    .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem; }
    
    .modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #ececec;
    border-bottom-right-radius: calc(0.9375rem - 1px);
    border-bottom-left-radius: calc(0.9375rem - 1px); }
    .modal-footer > * {
    margin: 0.25rem; }
    
    .modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll; }
    
    @media (min-width: 576px) {
    .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto; }
    .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem); }
    .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem); }
    .modal-dialog-centered {
    min-height: calc(100% - 3.5rem); }
    .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: min-content; }
    .modal-content {
    box-shadow: 0 0.5rem 1rem rgba(52, 52, 52, 0.5); }
    .modal-sm {
    max-width: 300px; } }
    
    @media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
    max-width: 800px; } }
    
    @media (min-width: 1200px) {
    .modal-xl {
    max-width: 1140px; } }
    
    .tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: "iranSans";
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.75rem;
    word-wrap: break-word;
    opacity: 0; }
    .tooltip.show {
    opacity: 0.9; }
    .tooltip .arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem; }
    .tooltip .arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid; }
    
    .bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
    padding: 0.4rem 0; }
    .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
    bottom: 0; }
    .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
    top: 0;
    border-width: 0.4rem 0.4rem 0;
    border-top-color: #818894; }
    
    .bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
    padding: 0 0.4rem; }
    .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem; }
    .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
    right: 0;
    border-width: 0.4rem 0.4rem 0.4rem 0;
    border-right-color: #818894; }
    
    .bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
    padding: 0.4rem 0; }
    .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
    top: 0; }
    .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    bottom: 0;
    border-width: 0 0.4rem 0.4rem;
    border-bottom-color: #818894; }
    
    .bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
    padding: 0 0.4rem; }
    .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem; }
    .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
    left: 0;
    border-width: 0.4rem 0 0.4rem 0.4rem;
    border-left-color: #818894; }
    
    .tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #ffffff;
    text-align: center;
    background-color: #818894;
    border-radius: 5px; }
    
    .popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block;
    max-width: 276px;
    font-family: "iranSans";
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 1rem;
    word-wrap: break-word;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid rgba(52, 52, 52, 0.2);
    border-radius: 0.9375rem;
    box-shadow: 0 0.25rem 0.5rem rgba(52, 52, 52, 0.2); }
    .popover .arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem;
    margin: 0 0.9375rem; }
    .popover .arrow::before, .popover .arrow::after {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid; }
    
    .bs-popover-top, .bs-popover-auto[x-placement^="top"] {
    margin-bottom: 0.5rem; }
    .bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
    bottom: calc(-0.5rem - 1px); }
    .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
    bottom: 0;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: rgba(52, 52, 52, 0.25); }
    .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
    bottom: 1px;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: #ffffff; }
    
    .bs-popover-right, .bs-popover-auto[x-placement^="right"] {
    margin-left: 0.5rem; }
    .bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
    left: calc(-0.5rem - 1px);
    width: 0.5rem;
    height: 1rem;
    margin: 0.9375rem 0; }
    .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
    left: 0;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: rgba(52, 52, 52, 0.25); }
    .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
    left: 1px;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: #ffffff; }
    
    .bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
    margin-top: 0.5rem; }
    .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
    top: calc(-0.5rem - 1px); }
    .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
    top: 0;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-bottom-color: rgba(52, 52, 52, 0.25); }
    .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
    top: 1px;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-bottom-color: #ffffff; }
    .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -0.5rem;
    content: "";
    border-bottom: 1px solid #f7f7f7; }
    
    .bs-popover-left, .bs-popover-auto[x-placement^="left"] {
    margin-right: 0.5rem; }
    .bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
    right: calc(-0.5rem - 1px);
    width: 0.5rem;
    height: 1rem;
    margin: 0.9375rem 0; }
    .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
    right: 0;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: rgba(52, 52, 52, 0.25); }
    .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
    right: 1px;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: #ffffff; }
    
    .popover-header {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(0.9375rem - 1px);
    border-top-right-radius: calc(0.9375rem - 1px); }
    .popover-header:empty {
    display: none; }
    
    .popover-body {
    padding: 0.5rem 0.75rem;
    color: #343434; }
    
    .carousel {
    position: relative; }
    
    .carousel.pointer-event {
    touch-action: pan-y; }
    
    .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden; }
    .carousel-inner::after {
    display: block;
    clear: both;
    content: ""; }
    
    .carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
    .carousel-item {
    transition: none; } }
    
    .carousel-item.active,
    .carousel-item-next,
    .carousel-item-prev {
    display: block; }
    
    .carousel-item-next:not(.carousel-item-left),
    .active.carousel-item-right {
    transform: translateX(100%); }
    
    .carousel-item-prev:not(.carousel-item-right),
    .active.carousel-item-left {
    transform: translateX(-100%); }
    
    .carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none; }
    
    .carousel-fade .carousel-item.active,
    .carousel-fade .carousel-item-next.carousel-item-left,
    .carousel-fade .carousel-item-prev.carousel-item-right {
    z-index: 1;
    opacity: 1; }
    
    .carousel-fade .active.carousel-item-left,
    .carousel-fade .active.carousel-item-right {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.6s; }
    @media (prefers-reduced-motion: reduce) {
    .carousel-fade .active.carousel-item-left,
    .carousel-fade .active.carousel-item-right {
    transition: none; } }
    
    .carousel-control-prev,
    .carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    color: #ffffff;
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.15s ease; }
    @media (prefers-reduced-motion: reduce) {
    .carousel-control-prev,
    .carousel-control-next {
    transition: none; } }
    .carousel-control-prev:hover, .carousel-control-prev:focus,
    .carousel-control-next:hover,
    .carousel-control-next:focus {
    color: #ffffff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9; }
    
    .carousel-control-prev {
    left: 0; }
    
    .carousel-control-next {
    right: 0; }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: 50% / 100% 100% no-repeat; }
    
    .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e"); }
    
    .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e"); }
    
    .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none; }
    .carousel-indicators li {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #ffffff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity 0.6s ease; }
    @media (prefers-reduced-motion: reduce) {
    .carousel-indicators li {
    transition: none; } }
    .carousel-indicators .active {
    opacity: 1; }
    
    .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #ffffff;
    text-align: center; }
    
    @keyframes spinner-border {
    to {
    transform: rotate(360deg); } }
    
    .spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: .75s linear infinite spinner-border; }
    
    .spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em; }
    
    @keyframes spinner-grow {
    0% {
    transform: scale(0); }
    50% {
    opacity: 1;
    transform: none; } }
    
    .spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: .75s linear infinite spinner-grow; }
    
    .spinner-grow-sm {
    width: 1rem;
    height: 1rem; }
    
    @media (prefers-reduced-motion: reduce) {
    .spinner-border,
    .spinner-grow {
    animation-duration: 1.5s; } }
    
    .align-baseline {
    vertical-align: baseline !important; }
    
    .align-top {
    vertical-align: top !important; }
    
    .align-middle {
    vertical-align: middle !important; }
    
    .align-bottom {
    vertical-align: bottom !important; }
    
    .align-text-bottom {
    vertical-align: text-bottom !important; }
    
    .align-text-top {
    vertical-align: text-top !important; }
    
    .bg-primary {
    background-color: #43d477 !important; }
    
    a.bg-primary:hover, a.bg-primary:focus,
    button.bg-primary:hover,
    button.bg-primary:focus {
    background-color: #2aba5e !important; }
    
    .bg-secondary {
    background-color: #1f3b64 !important; }
    
    a.bg-secondary:hover, a.bg-secondary:focus,
    button.bg-secondary:hover,
    button.bg-secondary:focus {
    background-color: #13243d !important; }
    
    .bg-success {
    background-color: #e7f4f0 !important; }
    
    a.bg-success:hover, a.bg-success:focus,
    button.bg-success:hover,
    button.bg-success:focus {
    background-color: #c4e4da !important; }
    
    .bg-info {
    background-color: #ebf7ff !important; }
    
    a.bg-info:hover, a.bg-info:focus,
    button.bg-info:hover,
    button.bg-info:focus {
    background-color: #b8e3ff !important; }
    
    .bg-warning {
    background-color: #ffab00 !important; }
    
    a.bg-warning:hover, a.bg-warning:focus,
    button.bg-warning:hover,
    button.bg-warning:focus {
    background-color: #cc8900 !important; }
    
    .bg-danger {
    background-color: #f63c3c !important; }
    
    a.bg-danger:hover, a.bg-danger:focus,
    button.bg-danger:hover,
    button.bg-danger:focus {
    background-color: #f40b0b !important; }
    
    .bg-light {
    background-color: #f8f9fa !important; }
    
    a.bg-light:hover, a.bg-light:focus,
    button.bg-light:hover,
    button.bg-light:focus {
    background-color: #dae0e5 !important; }
    
    .bg-dark {
    background-color: #343434 !important; }
    
    a.bg-dark:hover, a.bg-dark:focus,
    button.bg-dark:hover,
    button.bg-dark:focus {
    background-color: #1b1b1b !important; }
    
    .bg-white {
    background-color: #ffffff !important; }
    
    a.bg-white:hover, a.bg-white:focus,
    button.bg-white:hover,
    button.bg-white:focus {
    background-color: #e6e6e6 !important; }
    
    .bg-gray {
    background-color: #818894 !important; }
    
    a.bg-gray:hover, a.bg-gray:focus,
    button.bg-gray:hover,
    button.bg-gray:focus {
    background-color: #686f7a !important; }
    
    .bg-gray300 {
    background-color: #ececec !important; }
    
    a.bg-gray300:hover, a.bg-gray300:focus,
    button.bg-gray300:hover,
    button.bg-gray300:focus {
    background-color: lightgray !important; }
    
    .bg-gray200 {
    background-color: #f1f1f1 !important; }
    
    a.bg-gray200:hover, a.bg-gray200:focus,
    button.bg-gray200:hover,
    button.bg-gray200:focus {
    background-color: #d8d8d8 !important; }
    
    .bg-white {
    background-color: #ffffff !important; }
    
    .bg-transparent {
    background-color: transparent !important; }
    
    .border {
    border: 1px solid #ececec !important; }
    
    .border-top {
    border-top: 1px solid #ececec !important; }
    
    .border-right {
    border-right: 1px solid #ececec !important; }
    
    .border-bottom {
    border-bottom: 1px solid #ececec !important; }
    
    .border-left {
    border-left: 1px solid #ececec !important; }
    
    .border-0 {
    border: 0 !important; }
    
    .border-top-0 {
    border-top: 0 !important; }
    
    .border-right-0 {
    border-right: 0 !important; }
    
    .border-bottom-0 {
    border-bottom: 0 !important; }
    
    .border-left-0 {
    border-left: 0 !important; }
    
    .border-primary {
    border-color: #43d477 !important; }
    
    .border-secondary {
    border-color: #1f3b64 !important; }
    
    .border-success {
    border-color: #e7f4f0 !important; }
    
    .border-info {
    border-color: #ebf7ff !important; }
    
    .border-warning {
    border-color: #ffab00 !important; }
    
    .border-danger {
    border-color: #f63c3c !important; }
    
    .border-light {
    border-color: #f8f9fa !important; }
    
    .border-dark {
    border-color: #343434 !important; }
    
    .border-white {
    border-color: #ffffff !important; }
    
    .border-gray {
    border-color: #818894 !important; }
    
    .border-gray300 {
    border-color: #ececec !important; }
    
    .border-gray200 {
    border-color: #f1f1f1 !important; }
    
    .border-white {
    border-color: #ffffff !important; }
    
    .rounded-sm {
    border-radius: 0.625rem !important; }
    
    .rounded {
    border-radius: 0.3125rem !important; }
    
    .rounded-top {
    border-top-left-radius: 0.3125rem !important;
    border-top-right-radius: 0.3125rem !important; }
    
    .rounded-right {
    border-top-right-radius: 0.3125rem !important;
    border-bottom-right-radius: 0.3125rem !important; }
    
    .rounded-bottom {
    border-bottom-right-radius: 0.3125rem !important;
    border-bottom-left-radius: 0.3125rem !important; }
    
    .rounded-left {
    border-top-left-radius: 0.3125rem !important;
    border-bottom-left-radius: 0.3125rem !important; }
    
    .rounded-lg {
    border-radius: 0.9375rem !important; }
    
    .rounded-circle {
    border-radius: 50% !important; }
    
    .rounded-pill {
    border-radius: 50rem !important; }
    
    .rounded-0 {
    border-radius: 0 !important; }
    
    .clearfix::after {
    display: block;
    clear: both;
    content: ""; }
    
    .d-none {
    display: none !important; }
    
    .d-inline {
    display: inline !important; }
    
    .d-inline-block {
    display: inline-block !important; }
    
    .d-block {
    display: block !important; }
    
    .d-table {
    display: table !important; }
    
    .d-table-row {
    display: table-row !important; }
    
    .d-table-cell {
    display: table-cell !important; }
    
    .d-flex {
    display: flex !important; }
    
    .d-inline-flex {
    display: inline-flex !important; }
    
    @media (min-width: 576px) {
    .d-sm-none {
    display: none !important; }
    .d-sm-inline {
    display: inline !important; }
    .d-sm-inline-block {
    display: inline-block !important; }
    .d-sm-block {
    display: block !important; }
    .d-sm-table {
    display: table !important; }
    .d-sm-table-row {
    display: table-row !important; }
    .d-sm-table-cell {
    display: table-cell !important; }
    .d-sm-flex {
    display: flex !important; }
    .d-sm-inline-flex {
    display: inline-flex !important; } }
    
    @media (min-width: 768px) {
    .d-md-none {
    display: none !important; }
    .d-md-inline {
    display: inline !important; }
    .d-md-inline-block {
    display: inline-block !important; }
    .d-md-block {
    display: block !important; }
    .d-md-table {
    display: table !important; }
    .d-md-table-row {
    display: table-row !important; }
    .d-md-table-cell {
    display: table-cell !important; }
    .d-md-flex {
    display: flex !important; }
    .d-md-inline-flex {
    display: inline-flex !important; } }
    
    @media (min-width: 992px) {
    .d-lg-none {
    display: none !important; }
    .d-lg-inline {
    display: inline !important; }
    .d-lg-inline-block {
    display: inline-block !important; }
    .d-lg-block {
    display: block !important; }
    .d-lg-table {
    display: table !important; }
    .d-lg-table-row {
    display: table-row !important; }
    .d-lg-table-cell {
    display: table-cell !important; }
    .d-lg-flex {
    display: flex !important; }
    .d-lg-inline-flex {
    display: inline-flex !important; } }
    
    @media (min-width: 1200px) {
    .d-xl-none {
    display: none !important; }
    .d-xl-inline {
    display: inline !important; }
    .d-xl-inline-block {
    display: inline-block !important; }
    .d-xl-block {
    display: block !important; }
    .d-xl-table {
    display: table !important; }
    .d-xl-table-row {
    display: table-row !important; }
    .d-xl-table-cell {
    display: table-cell !important; }
    .d-xl-flex {
    display: flex !important; }
    .d-xl-inline-flex {
    display: inline-flex !important; } }
    
    @media print {
    .d-print-none {
    display: none !important; }
    .d-print-inline {
    display: inline !important; }
    .d-print-inline-block {
    display: inline-block !important; }
    .d-print-block {
    display: block !important; }
    .d-print-table {
    display: table !important; }
    .d-print-table-row {
    display: table-row !important; }
    .d-print-table-cell {
    display: table-cell !important; }
    .d-print-flex {
    display: flex !important; }
    .d-print-inline-flex {
    display: inline-flex !important; } }
    
    .embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden; }
    .embed-responsive::before {
    display: block;
    content: ""; }
    .embed-responsive .embed-responsive-item,
    .embed-responsive iframe,
    .embed-responsive embed,
    .embed-responsive object,
    .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }
    
    .embed-responsive-21by9::before {
    padding-top: 42.85714%; }
    
    .embed-responsive-16by9::before {
    padding-top: 56.25%; }
    
    .embed-responsive-4by3::before {
    padding-top: 75%; }
    
    .embed-responsive-1by1::before {
    padding-top: 100%; }
    
    .flex-row {
    flex-direction: row !important; }
    
    .flex-column {
    flex-direction: column !important; }
    
    .flex-row-reverse {
    flex-direction: row-reverse !important; }
    
    .flex-column-reverse {
    flex-direction: column-reverse !important; }
    
    .flex-wrap {
    flex-wrap: wrap !important; }
    
    .flex-nowrap {
    flex-wrap: nowrap !important; }
    
    .flex-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
    
    .flex-fill {
    flex: 1 1 auto !important; }
    
    .flex-grow-0 {
    flex-grow: 0 !important; }
    
    .flex-grow-1 {
    flex-grow: 1 !important; }
    
    .flex-shrink-0 {
    flex-shrink: 0 !important; }
    
    .flex-shrink-1 {
    flex-shrink: 1 !important; }
    
    .justify-content-start {
    justify-content: flex-start !important; }
    
    .justify-content-end {
    justify-content: flex-end !important; }
    
    .justify-content-center {
    justify-content: center !important; }
    
    .justify-content-between {
    justify-content: space-between !important; }
    
    .justify-content-around {
    justify-content: space-around !important; }
    
    .align-items-start {
    align-items: flex-start !important; }
    
    .align-items-end {
    align-items: flex-end !important; }
    
    .align-items-center {
    align-items: center !important; }
    
    .align-items-baseline {
    align-items: baseline !important; }
    
    .align-items-stretch {
    align-items: stretch !important; }
    
    .align-content-start {
    align-content: flex-start !important; }
    
    .align-content-end {
    align-content: flex-end !important; }
    
    .align-content-center {
    align-content: center !important; }
    
    .align-content-between {
    align-content: space-between !important; }
    
    .align-content-around {
    align-content: space-around !important; }
    
    .align-content-stretch {
    align-content: stretch !important; }
    
    .align-self-auto {
    align-self: auto !important; }
    
    .align-self-start {
    align-self: flex-start !important; }
    
    .align-self-end {
    align-self: flex-end !important; }
    
    .align-self-center {
    align-self: center !important; }
    
    .align-self-baseline {
    align-self: baseline !important; }
    
    .align-self-stretch {
    align-self: stretch !important; }
    
    @media (min-width: 576px) {
    .flex-sm-row {
    flex-direction: row !important; }
    .flex-sm-column {
    flex-direction: column !important; }
    .flex-sm-row-reverse {
    flex-direction: row-reverse !important; }
    .flex-sm-column-reverse {
    flex-direction: column-reverse !important; }
    .flex-sm-wrap {
    flex-wrap: wrap !important; }
    .flex-sm-nowrap {
    flex-wrap: nowrap !important; }
    .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
    .flex-sm-fill {
    flex: 1 1 auto !important; }
    .flex-sm-grow-0 {
    flex-grow: 0 !important; }
    .flex-sm-grow-1 {
    flex-grow: 1 !important; }
    .flex-sm-shrink-0 {
    flex-shrink: 0 !important; }
    .flex-sm-shrink-1 {
    flex-shrink: 1 !important; }
    .justify-content-sm-start {
    justify-content: flex-start !important; }
    .justify-content-sm-end {
    justify-content: flex-end !important; }
    .justify-content-sm-center {
    justify-content: center !important; }
    .justify-content-sm-between {
    justify-content: space-between !important; }
    .justify-content-sm-around {
    justify-content: space-around !important; }
    .align-items-sm-start {
    align-items: flex-start !important; }
    .align-items-sm-end {
    align-items: flex-end !important; }
    .align-items-sm-center {
    align-items: center !important; }
    .align-items-sm-baseline {
    align-items: baseline !important; }
    .align-items-sm-stretch {
    align-items: stretch !important; }
    .align-content-sm-start {
    align-content: flex-start !important; }
    .align-content-sm-end {
    align-content: flex-end !important; }
    .align-content-sm-center {
    align-content: center !important; }
    .align-content-sm-between {
    align-content: space-between !important; }
    .align-content-sm-around {
    align-content: space-around !important; }
    .align-content-sm-stretch {
    align-content: stretch !important; }
    .align-self-sm-auto {
    align-self: auto !important; }
    .align-self-sm-start {
    align-self: flex-start !important; }
    .align-self-sm-end {
    align-self: flex-end !important; }
    .align-self-sm-center {
    align-self: center !important; }
    .align-self-sm-baseline {
    align-self: baseline !important; }
    .align-self-sm-stretch {
    align-self: stretch !important; } }
    
    @media (min-width: 768px) {
    .flex-md-row {
    flex-direction: row !important; }
    .flex-md-column {
    flex-direction: column !important; }
    .flex-md-row-reverse {
    flex-direction: row-reverse !important; }
    .flex-md-column-reverse {
    flex-direction: column-reverse !important; }
    .flex-md-wrap {
    flex-wrap: wrap !important; }
    .flex-md-nowrap {
    flex-wrap: nowrap !important; }
    .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
    .flex-md-fill {
    flex: 1 1 auto !important; }
    .flex-md-grow-0 {
    flex-grow: 0 !important; }
    .flex-md-grow-1 {
    flex-grow: 1 !important; }
    .flex-md-shrink-0 {
    flex-shrink: 0 !important; }
    .flex-md-shrink-1 {
    flex-shrink: 1 !important; }
    .justify-content-md-start {
    justify-content: flex-start !important; }
    .justify-content-md-end {
    justify-content: flex-end !important; }
    .justify-content-md-center {
    justify-content: center !important; }
    .justify-content-md-between {
    justify-content: space-between !important; }
    .justify-content-md-around {
    justify-content: space-around !important; }
    .align-items-md-start {
    align-items: flex-start !important; }
    .align-items-md-end {
    align-items: flex-end !important; }
    .align-items-md-center {
    align-items: center !important; }
    .align-items-md-baseline {
    align-items: baseline !important; }
    .align-items-md-stretch {
    align-items: stretch !important; }
    .align-content-md-start {
    align-content: flex-start !important; }
    .align-content-md-end {
    align-content: flex-end !important; }
    .align-content-md-center {
    align-content: center !important; }
    .align-content-md-between {
    align-content: space-between !important; }
    .align-content-md-around {
    align-content: space-around !important; }
    .align-content-md-stretch {
    align-content: stretch !important; }
    .align-self-md-auto {
    align-self: auto !important; }
    .align-self-md-start {
    align-self: flex-start !important; }
    .align-self-md-end {
    align-self: flex-end !important; }
    .align-self-md-center {
    align-self: center !important; }
    .align-self-md-baseline {
    align-self: baseline !important; }
    .align-self-md-stretch {
    align-self: stretch !important; } }
    
    @media (min-width: 992px) {
    .flex-lg-row {
    flex-direction: row !important; }
    .flex-lg-column {
    flex-direction: column !important; }
    .flex-lg-row-reverse {
    flex-direction: row-reverse !important; }
    .flex-lg-column-reverse {
    flex-direction: column-reverse !important; }
    .flex-lg-wrap {
    flex-wrap: wrap !important; }
    .flex-lg-nowrap {
    flex-wrap: nowrap !important; }
    .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
    .flex-lg-fill {
    flex: 1 1 auto !important; }
    .flex-lg-grow-0 {
    flex-grow: 0 !important; }
    .flex-lg-grow-1 {
    flex-grow: 1 !important; }
    .flex-lg-shrink-0 {
    flex-shrink: 0 !important; }
    .flex-lg-shrink-1 {
    flex-shrink: 1 !important; }
    .justify-content-lg-start {
    justify-content: flex-start !important; }
    .justify-content-lg-end {
    justify-content: flex-end !important; }
    .justify-content-lg-center {
    justify-content: center !important; }
    .justify-content-lg-between {
    justify-content: space-between !important; }
    .justify-content-lg-around {
    justify-content: space-around !important; }
    .align-items-lg-start {
    align-items: flex-start !important; }
    .align-items-lg-end {
    align-items: flex-end !important; }
    .align-items-lg-center {
    align-items: center !important; }
    .align-items-lg-baseline {
    align-items: baseline !important; }
    .align-items-lg-stretch {
    align-items: stretch !important; }
    .align-content-lg-start {
    align-content: flex-start !important; }
    .align-content-lg-end {
    align-content: flex-end !important; }
    .align-content-lg-center {
    align-content: center !important; }
    .align-content-lg-between {
    align-content: space-between !important; }
    .align-content-lg-around {
    align-content: space-around !important; }
    .align-content-lg-stretch {
    align-content: stretch !important; }
    .align-self-lg-auto {
    align-self: auto !important; }
    .align-self-lg-start {
    align-self: flex-start !important; }
    .align-self-lg-end {
    align-self: flex-end !important; }
    .align-self-lg-center {
    align-self: center !important; }
    .align-self-lg-baseline {
    align-self: baseline !important; }
    .align-self-lg-stretch {
    align-self: stretch !important; } }
    
    @media (min-width: 1200px) {
    .flex-xl-row {
    flex-direction: row !important; }
    .flex-xl-column {
    flex-direction: column !important; }
    .flex-xl-row-reverse {
    flex-direction: row-reverse !important; }
    .flex-xl-column-reverse {
    flex-direction: column-reverse !important; }
    .flex-xl-wrap {
    flex-wrap: wrap !important; }
    .flex-xl-nowrap {
    flex-wrap: nowrap !important; }
    .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
    .flex-xl-fill {
    flex: 1 1 auto !important; }
    .flex-xl-grow-0 {
    flex-grow: 0 !important; }
    .flex-xl-grow-1 {
    flex-grow: 1 !important; }
    .flex-xl-shrink-0 {
    flex-shrink: 0 !important; }
    .flex-xl-shrink-1 {
    flex-shrink: 1 !important; }
    .justify-content-xl-start {
    justify-content: flex-start !important; }
    .justify-content-xl-end {
    justify-content: flex-end !important; }
    .justify-content-xl-center {
    justify-content: center !important; }
    .justify-content-xl-between {
    justify-content: space-between !important; }
    .justify-content-xl-around {
    justify-content: space-around !important; }
    .align-items-xl-start {
    align-items: flex-start !important; }
    .align-items-xl-end {
    align-items: flex-end !important; }
    .align-items-xl-center {
    align-items: center !important; }
    .align-items-xl-baseline {
    align-items: baseline !important; }
    .align-items-xl-stretch {
    align-items: stretch !important; }
    .align-content-xl-start {
    align-content: flex-start !important; }
    .align-content-xl-end {
    align-content: flex-end !important; }
    .align-content-xl-center {
    align-content: center !important; }
    .align-content-xl-between {
    align-content: space-between !important; }
    .align-content-xl-around {
    align-content: space-around !important; }
    .align-content-xl-stretch {
    align-content: stretch !important; }
    .align-self-xl-auto {
    align-self: auto !important; }
    .align-self-xl-start {
    align-self: flex-start !important; }
    .align-self-xl-end {
    align-self: flex-end !important; }
    .align-self-xl-center {
    align-self: center !important; }
    .align-self-xl-baseline {
    align-self: baseline !important; }
    .align-self-xl-stretch {
    align-self: stretch !important; } }
    
    .float-left {
    float: left !important; }
    
    .float-right {
    float: right !important; }
    
    .float-none {
    float: none !important; }
    
    @media (min-width: 576px) {
    .float-sm-left {
    float: left !important; }
    .float-sm-right {
    float: right !important; }
    .float-sm-none {
    float: none !important; } }
    
    @media (min-width: 768px) {
    .float-md-left {
    float: left !important; }
    .float-md-right {
    float: right !important; }
    .float-md-none {
    float: none !important; } }
    
    @media (min-width: 992px) {
    .float-lg-left {
    float: left !important; }
    .float-lg-right {
    float: right !important; }
    .float-lg-none {
    float: none !important; } }
    
    @media (min-width: 1200px) {
    .float-xl-left {
    float: left !important; }
    .float-xl-right {
    float: right !important; }
    .float-xl-none {
    float: none !important; } }
    
    .user-select-all {
    user-select: all !important; }
    
    .user-select-auto {
    user-select: auto !important; }
    
    .user-select-none {
    user-select: none !important; }
    
    .overflow-auto {
    overflow: auto !important; }
    
    .overflow-hidden {
    overflow: hidden !important; }
    
    .position-static {
    position: static !important; }
    
    .position-relative {
    position: relative !important; }
    
    .position-absolute {
    position: absolute !important; }
    
    .position-fixed {
    position: fixed !important; }
    
    .position-sticky {
    position: sticky !important; }
    
    .fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030; }
    
    .fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030; }
    
    @supports (position: sticky) {
    .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }
    
    .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0; }
    
    .sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal; }
    
    .shadow-sm {
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.1) !important; }
    
    .shadow {
    box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1) !important; }
    
    .shadow-lg {
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05) !important; }
    
    .shadow-none {
    box-shadow: none !important; }
    
    .w-25 {
    width: 25% !important; }
    
    .w-50 {
    width: 50% !important; }
    
    .w-75 {
    width: 75% !important; }
    
    .w-100 {
    width: 100% !important; }
    
    .w-auto {
    width: auto !important; }
    
    .h-25 {
    height: 25% !important; }
    
    .h-50 {
    height: 50% !important; }
    
    .h-75 {
    height: 75% !important; }
    
    .h-100 {
    height: 100% !important; }
    
    .h-auto {
    height: auto !important; }
    
    .mw-100 {
    max-width: 100% !important; }
    
    .mh-100 {
    max-height: 100% !important; }
    
    .min-vw-100 {
    min-width: 100vw !important; }
    
    .min-vh-100 {
    min-height: 100vh !important; }
    
    .vw-100 {
    width: 100vw !important; }
    
    .vh-100 {
    height: 100vh !important; }
    
    .m-0 {
    margin: 0 !important; }
    
    .mt-0,
    .my-0 {
    margin-top: 0 !important; }
    
    .mr-0,
    .mx-0 {
    margin-right: 0 !important; }
    
    .mb-0,
    .my-0 {
    margin-bottom: 0 !important; }
    
    .ml-0,
    .mx-0 {
    margin-left: 0 !important; }
    
    .m-1 {
    margin: 5px !important; }
    
    .mt-1,
    .my-1 {
    margin-top: 5px !important; }
    
    .mr-1,
    .mx-1 {
    margin-right: 5px !important; }
    
    .mb-1,
    .my-1 {
    margin-bottom: 5px !important; }
    
    .ml-1,
    .mx-1 {
    margin-left: 5px !important; }
    
    .m-2 {
    margin: 10px !important; }
    
    .mt-2,
    .my-2 {
    margin-top: 10px !important; }
    
    .mr-2,
    .mx-2 {
    margin-right: 10px !important; }
    
    .mb-2,
    .my-2 {
    margin-bottom: 10px !important; }
    
    .ml-2,
    .mx-2 {
    margin-left: 10px !important; }
    
    .m-3 {
    margin: 20px !important; }
    
    .mt-3,
    .my-3 {
    margin-top: 20px !important; }
    
    .mr-3,
    .mx-3 {
    margin-right: 20px !important; }
    
    .mb-3,
    .my-3 {
    margin-bottom: 20px !important; }
    
    .ml-3,
    .mx-3 {
    margin-left: 20px !important; }
    
    .m-4 {
    margin: 30px !important; }
    
    .mt-4,
    .my-4 {
    margin-top: 15px !important; }
    
    .mr-4,
    .mx-4 {
    margin-right: 30px !important; }
    
    .mb-4,
    .my-4 {
    margin-bottom: 30px !important; }
    
    .ml-4,
    .mx-4 {
    margin-left: 30px !important; }
    
    .m-5 {
    margin: 5px !important; }
    
    .mt-5,
    .my-5 {
    margin-top: 5px !important; }
    
    .mr-5,
    .mx-5 {
    margin-right: 5px !important; }
    
    .mb-5,
    .my-5 {
    margin-bottom: 5px !important; }
    
    .ml-5,
    .mx-5 {
    margin-left: 5px !important; }
    
    .m-10 {
    margin: 10px !important; }
    
    .mt-10,
    .my-10 {
    margin-top: 10px !important; }
    
    .mr-10,
    .mx-10 {
    margin-right: 10px !important; }
    
    .mb-10,
    .my-10 {
    margin-bottom: 10px !important; }
    
    .ml-10,
    .mx-10 {
    margin-left: 10px !important; }
    
    .m-15 {
    margin: 15px !important; }
    
    .mt-15,
    .my-15 {
    margin-top: 15px !important; }
    
    .mr-15,
    .mx-15 {
    margin-right: 15px !important; }
    
    .mb-15,
    .my-15 {
    margin-bottom: 15px !important; }
    
    .ml-15,
    .mx-15 {
    margin-left: 15px !important; }
    
    .m-20 {
    margin: 20px !important; }
    
    .mt-20,
    .my-20 {
    margin-top: 20px !important; }
    
    .mr-20,
    .mx-20 {
    margin-right: 20px !important; }
    
    .mb-20,
    .my-20 {
    margin-bottom: 20px !important; }
    
    .ml-20,
    .mx-20 {
    margin-left: 20px !important; }
    
    .m-25 {
    margin: 25px !important; }
    
    .mt-25,
    .my-25 {
    margin-top: 25px !important; }
    
    .mr-25,
    .mx-25 {
    margin-right: 25px !important; }
    
    .mb-25,
    .my-25 {
    margin-bottom: 25px !important; }
    
    .ml-25,
    .mx-25 {
    margin-left: 25px !important; }
    
    .m-30 {
    margin: 30px !important; }
    
    .mt-30,
    .my-30 {
    margin-top: 30px !important; }
    
    .mr-30,
    .mx-30 {
    margin-right: 30px !important; }
    
    .mb-30,
    .my-30 {
    margin-bottom: 30px !important; }
    
    .ml-30,
    .mx-30 {
    margin-left: 30px !important; }
    
    .m-35 {
    margin: 35px !important; }
    
    .mt-35,
    .my-35 {
    margin-top: 35px !important; }
    
    .mr-35,
    .mx-35 {
    margin-right: 35px !important; }
    
    .mb-35,
    .my-35 {
    margin-bottom: 35px !important; }
    
    .ml-35,
    .mx-35 {
    margin-left: 35px !important; }
    
    .m-40 {
    margin: 40px !important; }
    
    .mt-40,
    .my-40 {
    margin-top: 40px !important; }
    
    .mr-40,
    .mx-40 {
    margin-right: 40px !important; }
    
    .mb-40,
    .my-40 {
    margin-bottom: 40px !important; }
    
    .ml-40,
    .mx-40 {
    margin-left: 40px !important; }
    
    .m-45 {
    margin: 45px !important; }
    
    .mt-45,
    .my-45 {
    margin-top: 45px !important; }
    
    .mr-45,
    .mx-45 {
    margin-right: 45px !important; }
    
    .mb-45,
    .my-45 {
    margin-bottom: 45px !important; }
    
    .ml-45,
    .mx-45 {
    margin-left: 45px !important; }
    
    .m-50 {
    margin: 50px !important; }
    
    .mt-50,
    .my-50 {
    margin-top: 50px !important; }
    
    .mr-50,
    .mx-50 {
    margin-right: 50px !important; }
    
    .mb-50,
    .my-50 {
    margin-bottom: 50px !important; }
    
    .ml-50,
    .mx-50 {
    margin-left: 50px !important; }
    
    .p-0 {
    padding: 0 !important; }
    
    .pt-0,
    .py-0 {
    padding-top: 0 !important; }
    
    .pr-0,
    .px-0 {
    padding-right: 0 !important; }
    
    .pb-0,
    .py-0 {
    padding-bottom: 0 !important; }
    
    .pl-0,
    .px-0 {
    padding-left: 0 !important; }
    
    .p-1 {
    padding: 5px !important; }
    
    .pt-1,
    .py-1 {
    padding-top: 5px !important; }
    
    .pr-1,
    .px-1 {
    padding-right: 5px !important; }
    
    .pb-1,
    .py-1 {
    padding-bottom: 5px !important; }
    
    .pl-1,
    .px-1 {
    padding-left: 5px !important; }
    
    .p-2 {
    padding: 10px !important; }
    
    .pt-2,
    .py-2 {
    padding-top: 10px !important; }
    
    .pr-2,
    .px-2 {
    padding-right: 10px !important; }
    
    .pb-2,
    .py-2 {
    padding-bottom: 10px !important; }
    
    .pl-2,
    .px-2 {
    padding-left: 10px !important; }
    
    .p-3 {
    padding: 20px !important; }
    
    .pt-3,
    .py-3 {
    padding-top: 20px !important; }
    
    .pr-3,
    .px-3 {
    padding-right: 20px !important; }
    
    .pb-3,
    .py-3 {
    padding-bottom: 20px !important; }
    
    .pl-3,
    .px-3 {
    padding-left: 20px !important; }
    
    .p-4 {
    padding: 30px !important; }
    
    .pt-4,
    .py-4 {
    padding-top: 30px !important; }
    
    .pr-4,
    .px-4 {
    padding-right: 30px !important; }
    
    .pb-4,
    .py-4 {
    padding-bottom: 30px !important; }
    
    .pl-4,
    .px-4 {
    padding-left: 30px !important; }
    
    .p-5 {
    padding: 5px !important; }
    
    .pt-5,
    .py-5 {
    padding-top: 5px !important; }
    
    .pr-5,
    .px-5 {
    padding-right: 5px !important; }
    
    .pb-5,
    .py-5 {
    padding-bottom: 5px !important; }
    
    .pl-5,
    .px-5 {
    padding-left: 5px !important; }
    
    .p-10 {
    padding: 10px !important; }
    
    .pt-10,
    .py-10 {
    padding-top: 10px !important; }
    
    .pr-10,
    .px-10 {
    padding-right: 10px !important; }
    
    .pb-10,
    .py-10 {
    padding-bottom: 10px !important; }
    
    .pl-10,
    .px-10 {
    padding-left: 10px !important; }
    
    .p-15 {
    padding: 15px !important; }
    
    .pt-15,
    .py-15 {
    padding-top: 15px !important; }
    
    .pr-15,
    .px-15 {
    padding-right: 15px !important; }
    
    .pb-15,
    .py-15 {
    padding-bottom: 15px !important; }
    
    .pl-15,
    .px-15 {
    padding-left: 15px !important; }
    
    .p-20 {
    padding: 20px !important; }
    
    .pt-20,
    .py-20 {
    padding-top: 20px !important; }
    
    .pr-20,
    .px-20 {
    padding-right: 20px !important; }
    
    .pb-20,
    .py-20 {
    padding-bottom: 20px !important; }
    
    .pl-20,
    .px-20 {
    padding-left: 20px !important; }
    
    .p-25 {
    padding: 25px !important; }
    
    .pt-25,
    .py-25 {
    padding-top: 25px !important; }
    
    .pr-25,
    .px-25 {
    padding-right: 25px !important; }
    
    .pb-25,
    .py-25 {
    padding-bottom: 25px !important; }
    
    .pl-25,
    .px-25 {
    padding-left: 25px !important; }
    
    .p-30 {
    padding: 30px !important; }
    
    .pt-30,
    .py-30 {
    padding-top: 30px !important; }
    
    .pr-30,
    .px-30 {
    padding-right: 30px !important; }
    
    .pb-30,
    .py-30 {
    padding-bottom: 30px !important; }
    
    .pl-30,
    .px-30 {
    padding-left: 30px !important; }
    
    .p-35 {
    padding: 35px !important; }
    
    .pt-35,
    .py-35 {
    padding-top: 35px !important; }
    
    .pr-35,
    .px-35 {
    padding-right: 35px !important; }
    
    .pb-35,
    .py-35 {
    padding-bottom: 35px !important; }
    
    .pl-35,
    .px-35 {
    padding-left: 35px !important; }
    
    .p-40 {
    padding: 40px !important; }
    
    .pt-40,
    .py-40 {
    padding-top: 40px !important; }
    
    .pr-40,
    .px-40 {
    padding-right: 40px !important; }
    
    .pb-40,
    .py-40 {
    padding-bottom: 40px !important; }
    
    .pl-40,
    .px-40 {
    padding-left: 40px !important; }
    
    .p-45 {
    padding: 45px !important; }
    
    .pt-45,
    .py-45 {
    padding-top: 45px !important; }
    
    .pr-45,
    .px-45 {
    padding-right: 45px !important; }
    
    .pb-45,
    .py-45 {
    padding-bottom: 45px !important; }
    
    .pl-45,
    .px-45 {
    padding-left: 45px !important; }
    
    .p-50 {
    padding: 50px !important; }
    
    .pt-50,
    .py-50 {
    padding-top: 50px !important; }
    
    .pr-50,
    .px-50 {
    padding-right: 50px !important; }
    
    .pb-50,
    .py-50 {
    padding-bottom: 50px !important; }
    
    .pl-50,
    .px-50 {
    padding-left: 50px !important; }
    
    .m-n1 {
    margin: -5px !important; }
    
    .mt-n1,
    .my-n1 {
    margin-top: -5px !important; }
    
    .mr-n1,
    .mx-n1 {
    margin-right: -5px !important; }
    
    .mb-n1,
    .my-n1 {
    margin-bottom: -5px !important; }
    
    .ml-n1,
    .mx-n1 {
    margin-left: -5px !important; }
    
    .m-n2 {
    margin: -10px !important; }
    
    .mt-n2,
    .my-n2 {
    margin-top: -10px !important; }
    
    .mr-n2,
    .mx-n2 {
    margin-right: -10px !important; }
    
    .mb-n2,
    .my-n2 {
    margin-bottom: -10px !important; }
    
    .ml-n2,
    .mx-n2 {
    margin-left: -10px !important; }
    
    .m-n3 {
    margin: -20px !important; }
    
    .mt-n3,
    .my-n3 {
    margin-top: -20px !important; }
    
    .mr-n3,
    .mx-n3 {
    margin-right: -20px !important; }
    
    .mb-n3,
    .my-n3 {
    margin-bottom: -20px !important; }
    
    .ml-n3,
    .mx-n3 {
    margin-left: -20px !important; }
    
    .m-n4 {
    margin: -30px !important; }
    
    .mt-n4,
    .my-n4 {
    margin-top: -30px !important; }
    
    .mr-n4,
    .mx-n4 {
    margin-right: -30px !important; }
    
    .mb-n4,
    .my-n4 {
    margin-bottom: -30px !important; }
    
    .ml-n4,
    .mx-n4 {
    margin-left: -30px !important; }
    
    .m-n5 {
    margin: -5px !important; }
    
    .mt-n5,
    .my-n5 {
    margin-top: -5px !important; }
    
    .mr-n5,
    .mx-n5 {
    margin-right: -5px !important; }
    
    .mb-n5,
    .my-n5 {
    margin-bottom: -5px !important; }
    
    .ml-n5,
    .mx-n5 {
    margin-left: -5px !important; }
    
    .m-n10 {
    margin: -10px !important; }
    
    .mt-n10,
    .my-n10 {
    margin-top: -10px !important; }
    
    .mr-n10,
    .mx-n10 {
    margin-right: -10px !important; }
    
    .mb-n10,
    .my-n10 {
    margin-bottom: -10px !important; }
    
    .ml-n10,
    .mx-n10 {
    margin-left: -10px !important; }
    
    .m-n15 {
    margin: -15px !important; }
    
    .mt-n15,
    .my-n15 {
    margin-top: -15px !important; }
    
    .mr-n15,
    .mx-n15 {
    margin-right: -15px !important; }
    
    .mb-n15,
    .my-n15 {
    margin-bottom: -15px !important; }
    
    .ml-n15,
    .mx-n15 {
    margin-left: -15px !important; }
    
    .m-n20 {
    margin: -20px !important; }
    
    .mt-n20,
    .my-n20 {
    margin-top: -20px !important; }
    
    .mr-n20,
    .mx-n20 {
    margin-right: -20px !important; }
    
    .mb-n20,
    .my-n20 {
    margin-bottom: -20px !important; }
    
    .ml-n20,
    .mx-n20 {
    margin-left: -20px !important; }
    
    .m-n25 {
    margin: -25px !important; }
    
    .mt-n25,
    .my-n25 {
    margin-top: -25px !important; }
    
    .mr-n25,
    .mx-n25 {
    margin-right: -25px !important; }
    
    .mb-n25,
    .my-n25 {
    margin-bottom: -25px !important; }
    
    .ml-n25,
    .mx-n25 {
    margin-left: -25px !important; }
    
    .m-n30 {
    margin: -30px !important; }
    
    .mt-n30,
    .my-n30 {
    margin-top: -30px !important; }
    
    .mr-n30,
    .mx-n30 {
    margin-right: -30px !important; }
    
    .mb-n30,
    .my-n30 {
    margin-bottom: -30px !important; }
    
    .ml-n30,
    .mx-n30 {
    margin-left: -30px !important; }
    
    .m-n35 {
    margin: -35px !important; }
    
    .mt-n35,
    .my-n35 {
    margin-top: -35px !important; }
    
    .mr-n35,
    .mx-n35 {
    margin-right: -35px !important; }
    
    .mb-n35,
    .my-n35 {
    margin-bottom: -35px !important; }
    
    .ml-n35,
    .mx-n35 {
    margin-left: -35px !important; }
    
    .m-n40 {
    margin: -40px !important; }
    
    .mt-n40,
    .my-n40 {
    margin-top: -40px !important; }
    
    .mr-n40,
    .mx-n40 {
    margin-right: -40px !important; }
    
    .mb-n40,
    .my-n40 {
    margin-bottom: -40px !important; }
    
    .ml-n40,
    .mx-n40 {
    margin-left: -40px !important; }
    
    .m-n45 {
    margin: -45px !important; }
    
    .mt-n45,
    .my-n45 {
    margin-top: -45px !important; }
    
    .mr-n45,
    .mx-n45 {
    margin-right: -45px !important; }
    
    .mb-n45,
    .my-n45 {
    margin-bottom: -45px !important; }
    
    .ml-n45,
    .mx-n45 {
    margin-left: -45px !important; }
    
    .m-n50 {
    margin: -50px !important; }
    
    .mt-n50,
    .my-n50 {
    margin-top: -50px !important; }
    
    .mr-n50,
    .mx-n50 {
    margin-right: -50px !important; }
    
    .mb-n50,
    .my-n50 {
    margin-bottom: -50px !important; }
    
    .ml-n50,
    .mx-n50 {
    margin-left: -50px !important; }
    
    .m-auto {
    margin: auto !important; }
    
    .mt-auto,
    .my-auto {
    margin-top: auto !important; }
    
    .mr-auto,
    .mx-auto {
    margin-right: auto !important; }
    
    .mb-auto,
    .my-auto {
    margin-bottom: auto !important; }
    
    .ml-auto,
    .mx-auto {
    margin-left: auto !important; }
    
    @media (min-width: 576px) {
    .m-sm-0 {
    margin: 0 !important; }
    .mt-sm-0,
    .my-sm-0 {
    margin-top: 0 !important; }
    .mr-sm-0,
    .mx-sm-0 {
    margin-right: 0 !important; }
    .mb-sm-0,
    .my-sm-0 {
    margin-bottom: 0 !important; }
    .ml-sm-0,
    .mx-sm-0 {
    margin-left: 0 !important; }
    .m-sm-1 {
    margin: 5px !important; }
    .mt-sm-1,
    .my-sm-1 {
    margin-top: 5px !important; }
    .mr-sm-1,
    .mx-sm-1 {
    margin-right: 5px !important; }
    .mb-sm-1,
    .my-sm-1 {
    margin-bottom: 5px !important; }
    .ml-sm-1,
    .mx-sm-1 {
    margin-left: 5px !important; }
    .m-sm-2 {
    margin: 10px !important; }
    .mt-sm-2,
    .my-sm-2 {
    margin-top: 10px !important; }
    .mr-sm-2,
    .mx-sm-2 {
    margin-right: 10px !important; }
    .mb-sm-2,
    .my-sm-2 {
    margin-bottom: 10px !important; }
    .ml-sm-2,
    .mx-sm-2 {
    margin-left: 10px !important; }
    .m-sm-3 {
    margin: 20px !important; }
    .mt-sm-3,
    .my-sm-3 {
    margin-top: 20px !important; }
    .mr-sm-3,
    .mx-sm-3 {
    margin-right: 20px !important; }
    .mb-sm-3,
    .my-sm-3 {
    margin-bottom: 20px !important; }
    .ml-sm-3,
    .mx-sm-3 {
    margin-left: 20px !important; }
    .m-sm-4 {
    margin: 30px !important; }
    .mt-sm-4,
    .my-sm-4 {
    margin-top: 30px !important; }
    .mr-sm-4,
    .mx-sm-4 {
    margin-right: 30px !important; }
    .mb-sm-4,
    .my-sm-4 {
    margin-bottom: 30px !important; }
    .ml-sm-4,
    .mx-sm-4 {
    margin-left: 30px !important; }
    .m-sm-5 {
    margin: 5px !important; }
    .mt-sm-5,
    .my-sm-5 {
    margin-top: 5px !important; }
    .mr-sm-5,
    .mx-sm-5 {
    margin-right: 5px !important; }
    .mb-sm-5,
    .my-sm-5 {
    margin-bottom: 5px !important; }
    .ml-sm-5,
    .mx-sm-5 {
    margin-left: 5px !important; }
    .m-sm-10 {
    margin: 10px !important; }
    .mt-sm-10,
    .my-sm-10 {
    margin-top: 10px !important; }
    .mr-sm-10,
    .mx-sm-10 {
    margin-right: 10px !important; }
    .mb-sm-10,
    .my-sm-10 {
    margin-bottom: 10px !important; }
    .ml-sm-10,
    .mx-sm-10 {
    margin-left: 10px !important; }
    .m-sm-15 {
    margin: 15px !important; }
    .mt-sm-15,
    .my-sm-15 {
    margin-top: 15px !important; }
    .mr-sm-15,
    .mx-sm-15 {
    margin-right: 15px !important; }
    .mb-sm-15,
    .my-sm-15 {
    margin-bottom: 15px !important; }
    .ml-sm-15,
    .mx-sm-15 {
    margin-left: 15px !important; }
    .m-sm-20 {
    margin: 20px !important; }
    .mt-sm-20,
    .my-sm-20 {
    margin-top: 20px !important; }
    .mr-sm-20,
    .mx-sm-20 {
    margin-right: 20px !important; }
    .mb-sm-20,
    .my-sm-20 {
    margin-bottom: 20px !important; }
    .ml-sm-20,
    .mx-sm-20 {
    margin-left: 20px !important; }
    .m-sm-25 {
    margin: 25px !important; }
    .mt-sm-25,
    .my-sm-25 {
    margin-top: 25px !important; }
    .mr-sm-25,
    .mx-sm-25 {
    margin-right: 25px !important; }
    .mb-sm-25,
    .my-sm-25 {
    margin-bottom: 25px !important; }
    .ml-sm-25,
    .mx-sm-25 {
    margin-left: 25px !important; }
    .m-sm-30 {
    margin: 30px !important; }
    .mt-sm-30,
    .my-sm-30 {
    margin-top: 30px !important; }
    .mr-sm-30,
    .mx-sm-30 {
    margin-right: 30px !important; }
    .mb-sm-30,
    .my-sm-30 {
    margin-bottom: 30px !important; }
    .ml-sm-30,
    .mx-sm-30 {
    margin-left: 30px !important; }
    .m-sm-35 {
    margin: 35px !important; }
    .mt-sm-35,
    .my-sm-35 {
    margin-top: 35px !important; }
    .mr-sm-35,
    .mx-sm-35 {
    margin-right: 35px !important; }
    .mb-sm-35,
    .my-sm-35 {
    margin-bottom: 35px !important; }
    .ml-sm-35,
    .mx-sm-35 {
    margin-left: 35px !important; }
    .m-sm-40 {
    margin: 40px !important; }
    .mt-sm-40,
    .my-sm-40 {
    margin-top: 40px !important; }
    .mr-sm-40,
    .mx-sm-40 {
    margin-right: 40px !important; }
    .mb-sm-40,
    .my-sm-40 {
    margin-bottom: 40px !important; }
    .ml-sm-40,
    .mx-sm-40 {
    margin-left: 40px !important; }
    .m-sm-45 {
    margin: 45px !important; }
    .mt-sm-45,
    .my-sm-45 {
    margin-top: 45px !important; }
    .mr-sm-45,
    .mx-sm-45 {
    margin-right: 45px !important; }
    .mb-sm-45,
    .my-sm-45 {
    margin-bottom: 45px !important; }
    .ml-sm-45,
    .mx-sm-45 {
    margin-left: 45px !important; }
    .m-sm-50 {
    margin: 50px !important; }
    .mt-sm-50,
    .my-sm-50 {
    margin-top: 50px !important; }
    .mr-sm-50,
    .mx-sm-50 {
    margin-right: 50px !important; }
    .mb-sm-50,
    .my-sm-50 {
    margin-bottom: 50px !important; }
    .ml-sm-50,
    .mx-sm-50 {
    margin-left: 50px !important; }
    .p-sm-0 {
    padding: 0 !important; }
    .pt-sm-0,
    .py-sm-0 {
    padding-top: 0 !important; }
    .pr-sm-0,
    .px-sm-0 {
    padding-right: 0 !important; }
    .pb-sm-0,
    .py-sm-0 {
    padding-bottom: 0 !important; }
    .pl-sm-0,
    .px-sm-0 {
    padding-left: 0 !important; }
    .p-sm-1 {
    padding: 5px !important; }
    .pt-sm-1,
    .py-sm-1 {
    padding-top: 5px !important; }
    .pr-sm-1,
    .px-sm-1 {
    padding-right: 5px !important; }
    .pb-sm-1,
    .py-sm-1 {
    padding-bottom: 5px !important; }
    .pl-sm-1,
    .px-sm-1 {
    padding-left: 5px !important; }
    .p-sm-2 {
    padding: 10px !important; }
    .pt-sm-2,
    .py-sm-2 {
    padding-top: 10px !important; }
    .pr-sm-2,
    .px-sm-2 {
    padding-right: 10px !important; }
    .pb-sm-2,
    .py-sm-2 {
    padding-bottom: 10px !important; }
    .pl-sm-2,
    .px-sm-2 {
    padding-left: 10px !important; }
    .p-sm-3 {
    padding: 20px !important; }
    .pt-sm-3,
    .py-sm-3 {
    padding-top: 20px !important; }
    .pr-sm-3,
    .px-sm-3 {
    padding-right: 20px !important; }
    .pb-sm-3,
    .py-sm-3 {
    padding-bottom: 20px !important; }
    .pl-sm-3,
    .px-sm-3 {
    padding-left: 20px !important; }
    .p-sm-4 {
    padding: 30px !important; }
    .pt-sm-4,
    .py-sm-4 {
    padding-top: 30px !important; }
    .pr-sm-4,
    .px-sm-4 {
    padding-right: 30px !important; }
    .pb-sm-4,
    .py-sm-4 {
    padding-bottom: 30px !important; }
    .pl-sm-4,
    .px-sm-4 {
    padding-left: 30px !important; }
    .p-sm-5 {
    padding: 5px !important; }
    .pt-sm-5,
    .py-sm-5 {
    padding-top: 5px !important; }
    .pr-sm-5,
    .px-sm-5 {
    padding-right: 5px !important; }
    .pb-sm-5,
    .py-sm-5 {
    padding-bottom: 5px !important; }
    .pl-sm-5,
    .px-sm-5 {
    padding-left: 5px !important; }
    .p-sm-10 {
    padding: 10px !important; }
    .pt-sm-10,
    .py-sm-10 {
    padding-top: 10px !important; }
    .pr-sm-10,
    .px-sm-10 {
    padding-right: 10px !important; }
    .pb-sm-10,
    .py-sm-10 {
    padding-bottom: 10px !important; }
    .pl-sm-10,
    .px-sm-10 {
    padding-left: 10px !important; }
    .p-sm-15 {
    padding: 15px !important; }
    .pt-sm-15,
    .py-sm-15 {
    padding-top: 15px !important; }
    .pr-sm-15,
    .px-sm-15 {
    padding-right: 15px !important; }
    .pb-sm-15,
    .py-sm-15 {
    padding-bottom: 15px !important; }
    .pl-sm-15,
    .px-sm-15 {
    padding-left: 15px !important; }
    .p-sm-20 {
    padding: 20px !important; }
    .pt-sm-20,
    .py-sm-20 {
    padding-top: 20px !important; }
    .pr-sm-20,
    .px-sm-20 {
    padding-right: 20px !important; }
    .pb-sm-20,
    .py-sm-20 {
    padding-bottom: 20px !important; }
    .pl-sm-20,
    .px-sm-20 {
    padding-left: 20px !important; }
    .p-sm-25 {
    padding: 25px !important; }
    .pt-sm-25,
    .py-sm-25 {
    padding-top: 25px !important; }
    .pr-sm-25,
    .px-sm-25 {
    padding-right: 25px !important; }
    .pb-sm-25,
    .py-sm-25 {
    padding-bottom: 25px !important; }
    .pl-sm-25,
    .px-sm-25 {
    padding-left: 25px !important; }
    .p-sm-30 {
    padding: 30px !important; }
    .pt-sm-30,
    .py-sm-30 {
    padding-top: 30px !important; }
    .pr-sm-30,
    .px-sm-30 {
    padding-right: 30px !important; }
    .pb-sm-30,
    .py-sm-30 {
    padding-bottom: 30px !important; }
    .pl-sm-30,
    .px-sm-30 {
    padding-left: 30px !important; }
    .p-sm-35 {
    padding: 35px !important; }
    .pt-sm-35,
    .py-sm-35 {
    padding-top: 35px !important; }
    .pr-sm-35,
    .px-sm-35 {
    padding-right: 35px !important; }
    .pb-sm-35,
    .py-sm-35 {
    padding-bottom: 35px !important; }
    .pl-sm-35,
    .px-sm-35 {
    padding-left: 35px !important; }
    .p-sm-40 {
    padding: 40px !important; }
    .pt-sm-40,
    .py-sm-40 {
    padding-top: 40px !important; }
    .pr-sm-40,
    .px-sm-40 {
    padding-right: 40px !important; }
    .pb-sm-40,
    .py-sm-40 {
    padding-bottom: 40px !important; }
    .pl-sm-40,
    .px-sm-40 {
    padding-left: 40px !important; }
    .p-sm-45 {
    padding: 45px !important; }
    .pt-sm-45,
    .py-sm-45 {
    padding-top: 45px !important; }
    .pr-sm-45,
    .px-sm-45 {
    padding-right: 45px !important; }
    .pb-sm-45,
    .py-sm-45 {
    padding-bottom: 45px !important; }
    .pl-sm-45,
    .px-sm-45 {
    padding-left: 45px !important; }
    .p-sm-50 {
    padding: 50px !important; }
    .pt-sm-50,
    .py-sm-50 {
    padding-top: 50px !important; }
    .pr-sm-50,
    .px-sm-50 {
    padding-right: 50px !important; }
    .pb-sm-50,
    .py-sm-50 {
    padding-bottom: 50px !important; }
    .pl-sm-50,
    .px-sm-50 {
    padding-left: 50px !important; }
    .m-sm-n1 {
    margin: -5px !important; }
    .mt-sm-n1,
    .my-sm-n1 {
    margin-top: -5px !important; }
    .mr-sm-n1,
    .mx-sm-n1 {
    margin-right: -5px !important; }
    .mb-sm-n1,
    .my-sm-n1 {
    margin-bottom: -5px !important; }
    .ml-sm-n1,
    .mx-sm-n1 {
    margin-left: -5px !important; }
    .m-sm-n2 {
    margin: -10px !important; }
    .mt-sm-n2,
    .my-sm-n2 {
    margin-top: -10px !important; }
    .mr-sm-n2,
    .mx-sm-n2 {
    margin-right: -10px !important; }
    .mb-sm-n2,
    .my-sm-n2 {
    margin-bottom: -10px !important; }
    .ml-sm-n2,
    .mx-sm-n2 {
    margin-left: -10px !important; }
    .m-sm-n3 {
    margin: -20px !important; }
    .mt-sm-n3,
    .my-sm-n3 {
    margin-top: -20px !important; }
    .mr-sm-n3,
    .mx-sm-n3 {
    margin-right: -20px !important; }
    .mb-sm-n3,
    .my-sm-n3 {
    margin-bottom: -20px !important; }
    .ml-sm-n3,
    .mx-sm-n3 {
    margin-left: -20px !important; }
    .m-sm-n4 {
    margin: -30px !important; }
    .mt-sm-n4,
    .my-sm-n4 {
    margin-top: -30px !important; }
    .mr-sm-n4,
    .mx-sm-n4 {
    margin-right: -30px !important; }
    .mb-sm-n4,
    .my-sm-n4 {
    margin-bottom: -30px !important; }
    .ml-sm-n4,
    .mx-sm-n4 {
    margin-left: -30px !important; }
    .m-sm-n5 {
    margin: -5px !important; }
    .mt-sm-n5,
    .my-sm-n5 {
    margin-top: -5px !important; }
    .mr-sm-n5,
    .mx-sm-n5 {
    margin-right: -5px !important; }
    .mb-sm-n5,
    .my-sm-n5 {
    margin-bottom: -5px !important; }
    .ml-sm-n5,
    .mx-sm-n5 {
    margin-left: -5px !important; }
    .m-sm-n10 {
    margin: -10px !important; }
    .mt-sm-n10,
    .my-sm-n10 {
    margin-top: -10px !important; }
    .mr-sm-n10,
    .mx-sm-n10 {
    margin-right: -10px !important; }
    .mb-sm-n10,
    .my-sm-n10 {
    margin-bottom: -10px !important; }
    .ml-sm-n10,
    .mx-sm-n10 {
    margin-left: -10px !important; }
    .m-sm-n15 {
    margin: -15px !important; }
    .mt-sm-n15,
    .my-sm-n15 {
    margin-top: -15px !important; }
    .mr-sm-n15,
    .mx-sm-n15 {
    margin-right: -15px !important; }
    .mb-sm-n15,
    .my-sm-n15 {
    margin-bottom: -15px !important; }
    .ml-sm-n15,
    .mx-sm-n15 {
    margin-left: -15px !important; }
    .m-sm-n20 {
    margin: -20px !important; }
    .mt-sm-n20,
    .my-sm-n20 {
    margin-top: -20px !important; }
    .mr-sm-n20,
    .mx-sm-n20 {
    margin-right: -20px !important; }
    .mb-sm-n20,
    .my-sm-n20 {
    margin-bottom: -20px !important; }
    .ml-sm-n20,
    .mx-sm-n20 {
    margin-left: -20px !important; }
    .m-sm-n25 {
    margin: -25px !important; }
    .mt-sm-n25,
    .my-sm-n25 {
    margin-top: -25px !important; }
    .mr-sm-n25,
    .mx-sm-n25 {
    margin-right: -25px !important; }
    .mb-sm-n25,
    .my-sm-n25 {
    margin-bottom: -25px !important; }
    .ml-sm-n25,
    .mx-sm-n25 {
    margin-left: -25px !important; }
    .m-sm-n30 {
    margin: -30px !important; }
    .mt-sm-n30,
    .my-sm-n30 {
    margin-top: -30px !important; }
    .mr-sm-n30,
    .mx-sm-n30 {
    margin-right: -30px !important; }
    .mb-sm-n30,
    .my-sm-n30 {
    margin-bottom: -30px !important; }
    .ml-sm-n30,
    .mx-sm-n30 {
    margin-left: -30px !important; }
    .m-sm-n35 {
    margin: -35px !important; }
    .mt-sm-n35,
    .my-sm-n35 {
    margin-top: -35px !important; }
    .mr-sm-n35,
    .mx-sm-n35 {
    margin-right: -35px !important; }
    .mb-sm-n35,
    .my-sm-n35 {
    margin-bottom: -35px !important; }
    .ml-sm-n35,
    .mx-sm-n35 {
    margin-left: -35px !important; }
    .m-sm-n40 {
    margin: -40px !important; }
    .mt-sm-n40,
    .my-sm-n40 {
    margin-top: -40px !important; }
    .mr-sm-n40,
    .mx-sm-n40 {
    margin-right: -40px !important; }
    .mb-sm-n40,
    .my-sm-n40 {
    margin-bottom: -40px !important; }
    .ml-sm-n40,
    .mx-sm-n40 {
    margin-left: -40px !important; }
    .m-sm-n45 {
    margin: -45px !important; }
    .mt-sm-n45,
    .my-sm-n45 {
    margin-top: -45px !important; }
    .mr-sm-n45,
    .mx-sm-n45 {
    margin-right: -45px !important; }
    .mb-sm-n45,
    .my-sm-n45 {
    margin-bottom: -45px !important; }
    .ml-sm-n45,
    .mx-sm-n45 {
    margin-left: -45px !important; }
    .m-sm-n50 {
    margin: -50px !important; }
    .mt-sm-n50,
    .my-sm-n50 {
    margin-top: -50px !important; }
    .mr-sm-n50,
    .mx-sm-n50 {
    margin-right: -50px !important; }
    .mb-sm-n50,
    .my-sm-n50 {
    margin-bottom: -50px !important; }
    .ml-sm-n50,
    .mx-sm-n50 {
    margin-left: -50px !important; }
    .m-sm-auto {
    margin: auto !important; }
    .mt-sm-auto,
    .my-sm-auto {
    margin-top: auto !important; }
    .mr-sm-auto,
    .mx-sm-auto {
    margin-right: auto !important; }
    .mb-sm-auto,
    .my-sm-auto {
    margin-bottom: auto !important; }
    .ml-sm-auto,
    .mx-sm-auto {
    margin-left: auto !important; } }
    
    @media (min-width: 768px) {
    .m-md-0 {
    margin: 0 !important; }
    .mt-md-0,
    .my-md-0 {
    margin-top: 0 !important; }
    .mr-md-0,
    .mx-md-0 {
    margin-right: 0 !important; }
    .mb-md-0,
    .my-md-0 {
    margin-bottom: 0 !important; }
    .ml-md-0,
    .mx-md-0 {
    margin-left: 0 !important; }
    .m-md-1 {
    margin: 5px !important; }
    .mt-md-1,
    .my-md-1 {
    margin-top: 5px !important; }
    .mr-md-1,
    .mx-md-1 {
    margin-right: 5px !important; }
    .mb-md-1,
    .my-md-1 {
    margin-bottom: 5px !important; }
    .ml-md-1,
    .mx-md-1 {
    margin-left: 5px !important; }
    .m-md-2 {
    margin: 10px !important; }
    .mt-md-2,
    .my-md-2 {
    margin-top: 10px !important; }
    .mr-md-2,
    .mx-md-2 {
    margin-right: 10px !important; }
    .mb-md-2,
    .my-md-2 {
    margin-bottom: 10px !important; }
    .ml-md-2,
    .mx-md-2 {
    margin-left: 10px !important; }
    .m-md-3 {
    margin: 20px !important; }
    .mt-md-3,
    .my-md-3 {
    margin-top: 20px !important; }
    .mr-md-3,
    .mx-md-3 {
    margin-right: 20px !important; }
    .mb-md-3,
    .my-md-3 {
    margin-bottom: 20px !important; }
    .ml-md-3,
    .mx-md-3 {
    margin-left: 20px !important; }
    .m-md-4 {
    margin: 30px !important; }
    .mt-md-4,
    .my-md-4 {
    margin-top: 30px !important; }
    .mr-md-4,
    .mx-md-4 {
    margin-right: 30px !important; }
    .mb-md-4,
    .my-md-4 {
    margin-bottom: 30px !important; }
    .ml-md-4,
    .mx-md-4 {
    margin-left: 30px !important; }
    .m-md-5 {
    margin: 5px !important; }
    .mt-md-5,
    .my-md-5 {
    margin-top: 5px !important; }
    .mr-md-5,
    .mx-md-5 {
    margin-right: 5px !important; }
    .mb-md-5,
    .my-md-5 {
    margin-bottom: 5px !important; }
    .ml-md-5,
    .mx-md-5 {
    margin-left: 5px !important; }
    .m-md-10 {
    margin: 10px !important; }
    .mt-md-10,
    .my-md-10 {
    margin-top: 10px !important; }
    .mr-md-10,
    .mx-md-10 {
    margin-right: 10px !important; }
    .mb-md-10,
    .my-md-10 {
    margin-bottom: 10px !important; }
    .ml-md-10,
    .mx-md-10 {
    margin-left: 10px !important; }
    .m-md-15 {
    margin: 15px !important; }
    .mt-md-15,
    .my-md-15 {
    margin-top: 15px !important; }
    .mr-md-15,
    .mx-md-15 {
    margin-right: 15px !important; }
    .mb-md-15,
    .my-md-15 {
    margin-bottom: 15px !important; }
    .ml-md-15,
    .mx-md-15 {
    margin-left: 15px !important; }
    .m-md-20 {
    margin: 20px !important; }
    .mt-md-20,
    .my-md-20 {
    margin-top: 20px !important; }
    .mr-md-20,
    .mx-md-20 {
    margin-right: 20px !important; }
    .mb-md-20,
    .my-md-20 {
    margin-bottom: 20px !important; }
    .ml-md-20,
    .mx-md-20 {
    margin-left: 20px !important; }
    .m-md-25 {
    margin: 25px !important; }
    .mt-md-25,
    .my-md-25 {
    margin-top: 25px !important; }
    .mr-md-25,
    .mx-md-25 {
    margin-right: 25px !important; }
    .mb-md-25,
    .my-md-25 {
    margin-bottom: 25px !important; }
    .ml-md-25,
    .mx-md-25 {
    margin-left: 25px !important; }
    .m-md-30 {
    margin: 30px !important; }
    .mt-md-30,
    .my-md-30 {
    margin-top: 30px !important; }
    .mr-md-30,
    .mx-md-30 {
    margin-right: 30px !important; }
    .mb-md-30,
    .my-md-30 {
    margin-bottom: 30px !important; }
    .ml-md-30,
    .mx-md-30 {
    margin-left: 30px !important; }
    .m-md-35 {
    margin: 35px !important; }
    .mt-md-35,
    .my-md-35 {
    margin-top: 35px !important; }
    .mr-md-35,
    .mx-md-35 {
    margin-right: 35px !important; }
    .mb-md-35,
    .my-md-35 {
    margin-bottom: 35px !important; }
    .ml-md-35,
    .mx-md-35 {
    margin-left: 35px !important; }
    .m-md-40 {
    margin: 40px !important; }
    .mt-md-40,
    .my-md-40 {
    margin-top: 40px !important; }
    .mr-md-40,
    .mx-md-40 {
    margin-right: 40px !important; }
    .mb-md-40,
    .my-md-40 {
    margin-bottom: 40px !important; }
    .ml-md-40,
    .mx-md-40 {
    margin-left: 40px !important; }
    .m-md-45 {
    margin: 45px !important; }
    .mt-md-45,
    .my-md-45 {
    margin-top: 45px !important; }
    .mr-md-45,
    .mx-md-45 {
    margin-right: 45px !important; }
    .mb-md-45,
    .my-md-45 {
    margin-bottom: 45px !important; }
    .ml-md-45,
    .mx-md-45 {
    margin-left: 45px !important; }
    .m-md-50 {
    margin: 50px !important; }
    .mt-md-50,
    .my-md-50 {
    margin-top: 50px !important; }
    .mr-md-50,
    .mx-md-50 {
    margin-right: 50px !important; }
    .mb-md-50,
    .my-md-50 {
    margin-bottom: 50px !important; }
    .ml-md-50,
    .mx-md-50 {
    margin-left: 50px !important; }
    .p-md-0 {
    padding: 0 !important; }
    .pt-md-0,
    .py-md-0 {
    padding-top: 0 !important; }
    .pr-md-0,
    .px-md-0 {
    padding-right: 0 !important; }
    .pb-md-0,
    .py-md-0 {
    padding-bottom: 0 !important; }
    .pl-md-0,
    .px-md-0 {
    padding-left: 0 !important; }
    .p-md-1 {
    padding: 5px !important; }
    .pt-md-1,
    .py-md-1 {
    padding-top: 5px !important; }
    .pr-md-1,
    .px-md-1 {
    padding-right: 5px !important; }
    .pb-md-1,
    .py-md-1 {
    padding-bottom: 5px !important; }
    .pl-md-1,
    .px-md-1 {
    padding-left: 5px !important; }
    .p-md-2 {
    padding: 10px !important; }
    .pt-md-2,
    .py-md-2 {
    padding-top: 10px !important; }
    .pr-md-2,
    .px-md-2 {
    padding-right: 10px !important; }
    .pb-md-2,
    .py-md-2 {
    padding-bottom: 10px !important; }
    .pl-md-2,
    .px-md-2 {
    padding-left: 10px !important; }
    .p-md-3 {
    padding: 20px !important; }
    .pt-md-3,
    .py-md-3 {
    padding-top: 20px !important; }
    .pr-md-3,
    .px-md-3 {
    padding-right: 20px !important; }
    .pb-md-3,
    .py-md-3 {
    padding-bottom: 20px !important; }
    .pl-md-3,
    .px-md-3 {
    padding-left: 20px !important; }
    .p-md-4 {
    padding: 30px !important; }
    .pt-md-4,
    .py-md-4 {
    padding-top: 30px !important; }
    .pr-md-4,
    .px-md-4 {
    padding-right: 30px !important; }
    .pb-md-4,
    .py-md-4 {
    padding-bottom: 30px !important; }
    .pl-md-4,
    .px-md-4 {
    padding-left: 30px !important; }
    .p-md-5 {
    padding: 5px !important; }
    .pt-md-5,
    .py-md-5 {
    padding-top: 5px !important; }
    .pr-md-5,
    .px-md-5 {
    padding-right: 5px !important; }
    .pb-md-5,
    .py-md-5 {
    padding-bottom: 5px !important; }
    .pl-md-5,
    .px-md-5 {
    padding-left: 5px !important; }
    .p-md-10 {
    padding: 10px !important; }
    .pt-md-10,
    .py-md-10 {
    padding-top: 10px !important; }
    .pr-md-10,
    .px-md-10 {
    padding-right: 10px !important; }
    .pb-md-10,
    .py-md-10 {
    padding-bottom: 10px !important; }
    .pl-md-10,
    .px-md-10 {
    padding-left: 10px !important; }
    .p-md-15 {
    padding: 15px !important; }
    .pt-md-15,
    .py-md-15 {
    padding-top: 15px !important; }
    .pr-md-15,
    .px-md-15 {
    padding-right: 15px !important; }
    .pb-md-15,
    .py-md-15 {
    padding-bottom: 15px !important; }
    .pl-md-15,
    .px-md-15 {
    padding-left: 15px !important; }
    .p-md-20 {
    padding: 20px !important; }
    .pt-md-20,
    .py-md-20 {
    padding-top: 20px !important; }
    .pr-md-20,
    .px-md-20 {
    padding-right: 20px !important; }
    .pb-md-20,
    .py-md-20 {
    padding-bottom: 20px !important; }
    .pl-md-20,
    .px-md-20 {
    padding-left: 20px !important; }
    .p-md-25 {
    padding: 25px !important; }
    .pt-md-25,
    .py-md-25 {
    padding-top: 25px !important; }
    .pr-md-25,
    .px-md-25 {
    padding-right: 25px !important; }
    .pb-md-25,
    .py-md-25 {
    padding-bottom: 25px !important; }
    .pl-md-25,
    .px-md-25 {
    padding-left: 25px !important; }
    .p-md-30 {
    padding: 30px !important; }
    .pt-md-30,
    .py-md-30 {
    padding-top: 30px !important; }
    .pr-md-30,
    .px-md-30 {
    padding-right: 30px !important; }
    .pb-md-30,
    .py-md-30 {
    padding-bottom: 30px !important; }
    .pl-md-30,
    .px-md-30 {
    padding-left: 30px !important; }
    .p-md-35 {
    padding: 35px !important; }
    .pt-md-35,
    .py-md-35 {
    padding-top: 35px !important; }
    .pr-md-35,
    .px-md-35 {
    padding-right: 35px !important; }
    .pb-md-35,
    .py-md-35 {
    padding-bottom: 35px !important; }
    .pl-md-35,
    .px-md-35 {
    padding-left: 35px !important; }
    .p-md-40 {
    padding: 40px !important; }
    .pt-md-40,
    .py-md-40 {
    padding-top: 40px !important; }
    .pr-md-40,
    .px-md-40 {
    padding-right: 40px !important; }
    .pb-md-40,
    .py-md-40 {
    padding-bottom: 40px !important; }
    .pl-md-40,
    .px-md-40 {
    padding-left: 40px !important; }
    .p-md-45 {
    padding: 45px !important; }
    .pt-md-45,
    .py-md-45 {
    padding-top: 45px !important; }
    .pr-md-45,
    .px-md-45 {
    padding-right: 45px !important; }
    .pb-md-45,
    .py-md-45 {
    padding-bottom: 45px !important; }
    .pl-md-45,
    .px-md-45 {
    padding-left: 45px !important; }
    .p-md-50 {
    padding: 50px !important; }
    .pt-md-50,
    .py-md-50 {
    padding-top: 50px !important; }
    .pr-md-50,
    .px-md-50 {
    padding-right: 50px !important; }
    .pb-md-50,
    .py-md-50 {
    padding-bottom: 50px !important; }
    .pl-md-50,
    .px-md-50 {
    padding-left: 50px !important; }
    .m-md-n1 {
    margin: -5px !important; }
    .mt-md-n1,
    .my-md-n1 {
    margin-top: -5px !important; }
    .mr-md-n1,
    .mx-md-n1 {
    margin-right: -5px !important; }
    .mb-md-n1,
    .my-md-n1 {
    margin-bottom: -5px !important; }
    .ml-md-n1,
    .mx-md-n1 {
    margin-left: -5px !important; }
    .m-md-n2 {
    margin: -10px !important; }
    .mt-md-n2,
    .my-md-n2 {
    margin-top: -10px !important; }
    .mr-md-n2,
    .mx-md-n2 {
    margin-right: -10px !important; }
    .mb-md-n2,
    .my-md-n2 {
    margin-bottom: -10px !important; }
    .ml-md-n2,
    .mx-md-n2 {
    margin-left: -10px !important; }
    .m-md-n3 {
    margin: -20px !important; }
    .mt-md-n3,
    .my-md-n3 {
    margin-top: -20px !important; }
    .mr-md-n3,
    .mx-md-n3 {
    margin-right: -20px !important; }
    .mb-md-n3,
    .my-md-n3 {
    margin-bottom: -20px !important; }
    .ml-md-n3,
    .mx-md-n3 {
    margin-left: -20px !important; }
    .m-md-n4 {
    margin: -30px !important; }
    .mt-md-n4,
    .my-md-n4 {
    margin-top: -30px !important; }
    .mr-md-n4,
    .mx-md-n4 {
    margin-right: -30px !important; }
    .mb-md-n4,
    .my-md-n4 {
    margin-bottom: -30px !important; }
    .ml-md-n4,
    .mx-md-n4 {
    margin-left: -30px !important; }
    .m-md-n5 {
    margin: -5px !important; }
    .mt-md-n5,
    .my-md-n5 {
    margin-top: -5px !important; }
    .mr-md-n5,
    .mx-md-n5 {
    margin-right: -5px !important; }
    .mb-md-n5,
    .my-md-n5 {
    margin-bottom: -5px !important; }
    .ml-md-n5,
    .mx-md-n5 {
    margin-left: -5px !important; }
    .m-md-n10 {
    margin: -10px !important; }
    .mt-md-n10,
    .my-md-n10 {
    margin-top: -10px !important; }
    .mr-md-n10,
    .mx-md-n10 {
    margin-right: -10px !important; }
    .mb-md-n10,
    .my-md-n10 {
    margin-bottom: -10px !important; }
    .ml-md-n10,
    .mx-md-n10 {
    margin-left: -10px !important; }
    .m-md-n15 {
    margin: -15px !important; }
    .mt-md-n15,
    .my-md-n15 {
    margin-top: -15px !important; }
    .mr-md-n15,
    .mx-md-n15 {
    margin-right: -15px !important; }
    .mb-md-n15,
    .my-md-n15 {
    margin-bottom: -15px !important; }
    .ml-md-n15,
    .mx-md-n15 {
    margin-left: -15px !important; }
    .m-md-n20 {
    margin: -20px !important; }
    .mt-md-n20,
    .my-md-n20 {
    margin-top: -20px !important; }
    .mr-md-n20,
    .mx-md-n20 {
    margin-right: -20px !important; }
    .mb-md-n20,
    .my-md-n20 {
    margin-bottom: -20px !important; }
    .ml-md-n20,
    .mx-md-n20 {
    margin-left: -20px !important; }
    .m-md-n25 {
    margin: -25px !important; }
    .mt-md-n25,
    .my-md-n25 {
    margin-top: -25px !important; }
    .mr-md-n25,
    .mx-md-n25 {
    margin-right: -25px !important; }
    .mb-md-n25,
    .my-md-n25 {
    margin-bottom: -25px !important; }
    .ml-md-n25,
    .mx-md-n25 {
    margin-left: -25px !important; }
    .m-md-n30 {
    margin: -30px !important; }
    .mt-md-n30,
    .my-md-n30 {
    margin-top: -30px !important; }
    .mr-md-n30,
    .mx-md-n30 {
    margin-right: -30px !important; }
    .mb-md-n30,
    .my-md-n30 {
    margin-bottom: -30px !important; }
    .ml-md-n30,
    .mx-md-n30 {
    margin-left: -30px !important; }
    .m-md-n35 {
    margin: -35px !important; }
    .mt-md-n35,
    .my-md-n35 {
    margin-top: -35px !important; }
    .mr-md-n35,
    .mx-md-n35 {
    margin-right: -35px !important; }
    .mb-md-n35,
    .my-md-n35 {
    margin-bottom: -35px !important; }
    .ml-md-n35,
    .mx-md-n35 {
    margin-left: -35px !important; }
    .m-md-n40 {
    margin: -40px !important; }
    .mt-md-n40,
    .my-md-n40 {
    margin-top: -40px !important; }
    .mr-md-n40,
    .mx-md-n40 {
    margin-right: -40px !important; }
    .mb-md-n40,
    .my-md-n40 {
    margin-bottom: -40px !important; }
    .ml-md-n40,
    .mx-md-n40 {
    margin-left: -40px !important; }
    .m-md-n45 {
    margin: -45px !important; }
    .mt-md-n45,
    .my-md-n45 {
    margin-top: -45px !important; }
    .mr-md-n45,
    .mx-md-n45 {
    margin-right: -45px !important; }
    .mb-md-n45,
    .my-md-n45 {
    margin-bottom: -45px !important; }
    .ml-md-n45,
    .mx-md-n45 {
    margin-left: -45px !important; }
    .m-md-n50 {
    margin: -50px !important; }
    .mt-md-n50,
    .my-md-n50 {
    margin-top: -50px !important; }
    .mr-md-n50,
    .mx-md-n50 {
    margin-right: -50px !important; }
    .mb-md-n50,
    .my-md-n50 {
    margin-bottom: -50px !important; }
    .ml-md-n50,
    .mx-md-n50 {
    margin-left: -50px !important; }
    .m-md-auto {
    margin: auto !important; }
    .mt-md-auto,
    .my-md-auto {
    margin-top: auto !important; }
    .mr-md-auto,
    .mx-md-auto {
    margin-right: auto !important; }
    .mb-md-auto,
    .my-md-auto {
    margin-bottom: auto !important; }
    .ml-md-auto,
    .mx-md-auto {
    margin-left: auto !important; } }
    
    @media (min-width: 992px) {
    .m-lg-0 {
    margin: 0 !important; }
    .mt-lg-0,
    .my-lg-0 {
    margin-top: 0 !important; }
    .mr-lg-0,
    .mx-lg-0 {
    margin-right: 0 !important; }
    .mb-lg-0,
    .my-lg-0 {
    margin-bottom: 0 !important; }
    .ml-lg-0,
    .mx-lg-0 {
    margin-left: 0 !important; }
    .m-lg-1 {
    margin: 5px !important; }
    .mt-lg-1,
    .my-lg-1 {
    margin-top: 5px !important; }
    .mr-lg-1,
    .mx-lg-1 {
    margin-right: 5px !important; }
    .mb-lg-1,
    .my-lg-1 {
    margin-bottom: 5px !important; }
    .ml-lg-1,
    .mx-lg-1 {
    margin-left: 5px !important; }
    .m-lg-2 {
    margin: 10px !important; }
    .mt-lg-2,
    .my-lg-2 {
    margin-top: 10px !important; }
    .mr-lg-2,
    .mx-lg-2 {
    margin-right: 10px !important; }
    .mb-lg-2,
    .my-lg-2 {
    margin-bottom: 10px !important; }
    .ml-lg-2,
    .mx-lg-2 {
    margin-left: 10px !important; }
    .m-lg-3 {
    margin: 20px !important; }
    .mt-lg-3,
    .my-lg-3 {
    margin-top: 20px !important; }
    .mr-lg-3,
    .mx-lg-3 {
    margin-right: 20px !important; }
    .mb-lg-3,
    .my-lg-3 {
    margin-bottom: 20px !important; }
    .ml-lg-3,
    .mx-lg-3 {
    margin-left: 20px !important; }
    .m-lg-4 {
    margin: 30px !important; }
    .mt-lg-4,
    .my-lg-4 {
    margin-top: 30px !important; }
    .mr-lg-4,
    .mx-lg-4 {
    margin-right: 30px !important; }
    .mb-lg-4,
    .my-lg-4 {
    margin-bottom: 30px !important; }
    .ml-lg-4,
    .mx-lg-4 {
    margin-left: 30px !important; }
    .m-lg-5 {
    margin: 5px !important; }
    .mt-lg-5,
    .my-lg-5 {
    margin-top: 5px !important; }
    .mr-lg-5,
    .mx-lg-5 {
    margin-right: 5px !important; }
    .mb-lg-5,
    .my-lg-5 {
    margin-bottom: 5px !important; }
    .ml-lg-5,
    .mx-lg-5 {
    margin-left: 5px !important; }
    .m-lg-10 {
    margin: 10px !important; }
    .mt-lg-10,
    .my-lg-10 {
    margin-top: 10px !important; }
    .mr-lg-10,
    .mx-lg-10 {
    margin-right: 10px !important; }
    .mb-lg-10,
    .my-lg-10 {
    margin-bottom: 10px !important; }
    .ml-lg-10,
    .mx-lg-10 {
    margin-left: 10px !important; }
    .m-lg-15 {
    margin: 15px !important; }
    .mt-lg-15,
    .my-lg-15 {
    margin-top: 15px !important; }
    .mr-lg-15,
    .mx-lg-15 {
    margin-right: 15px !important; }
    .mb-lg-15,
    .my-lg-15 {
    margin-bottom: 15px !important; }
    .ml-lg-15,
    .mx-lg-15 {
    margin-left: 15px !important; }
    .m-lg-20 {
    margin: 20px !important; }
    .mt-lg-20,
    .my-lg-20 {
    margin-top: 20px !important; }
    .mr-lg-20,
    .mx-lg-20 {
    margin-right: 20px !important; }
    .mb-lg-20,
    .my-lg-20 {
    margin-bottom: 20px !important; }
    .ml-lg-20,
    .mx-lg-20 {
    margin-left: 20px !important; }
    .m-lg-25 {
    margin: 25px !important; }
    .mt-lg-25,
    .my-lg-25 {
    margin-top: 25px !important; }
    .mr-lg-25,
    .mx-lg-25 {
    margin-right: 25px !important; }
    .mb-lg-25,
    .my-lg-25 {
    margin-bottom: 25px !important; }
    .ml-lg-25,
    .mx-lg-25 {
    margin-left: 25px !important; }
    .m-lg-30 {
    margin: 30px !important; }
    .mt-lg-30,
    .my-lg-30 {
    margin-top: 30px !important; }
    .mr-lg-30,
    .mx-lg-30 {
    margin-right: 30px !important; }
    .mb-lg-30,
    .my-lg-30 {
    margin-bottom: 30px !important; }
    .ml-lg-30,
    .mx-lg-30 {
    margin-left: 30px !important; }
    .m-lg-35 {
    margin: 35px !important; }
    .mt-lg-35,
    .my-lg-35 {
    margin-top: 35px !important; }
    .mr-lg-35,
    .mx-lg-35 {
    margin-right: 35px !important; }
    .mb-lg-35,
    .my-lg-35 {
    margin-bottom: 35px !important; }
    .ml-lg-35,
    .mx-lg-35 {
    margin-left: 35px !important; }
    .m-lg-40 {
    margin: 40px !important; }
    .mt-lg-40,
    .my-lg-40 {
    margin-top: 40px !important; }
    .mr-lg-40,
    .mx-lg-40 {
    margin-right: 40px !important; }
    .mb-lg-40,
    .my-lg-40 {
    margin-bottom: 40px !important; }
    .ml-lg-40,
    .mx-lg-40 {
    margin-left: 40px !important; }
    .m-lg-45 {
    margin: 45px !important; }
    .mt-lg-45,
    .my-lg-45 {
    margin-top: 45px !important; }
    .mr-lg-45,
    .mx-lg-45 {
    margin-right: 45px !important; }
    .mb-lg-45,
    .my-lg-45 {
    margin-bottom: 45px !important; }
    .ml-lg-45,
    .mx-lg-45 {
    margin-left: 45px !important; }
    .m-lg-50 {
    margin: 50px !important; }
    .mt-lg-50,
    .my-lg-50 {
    margin-top: 50px !important; }
    .mr-lg-50,
    .mx-lg-50 {
    margin-right: 50px !important; }
    .mb-lg-50,
    .my-lg-50 {
    margin-bottom: 50px !important; }
    .ml-lg-50,
    .mx-lg-50 {
    margin-left: 50px !important; }
    .p-lg-0 {
    padding: 0 !important; }
    .pt-lg-0,
    .py-lg-0 {
    padding-top: 0 !important; }
    .pr-lg-0,
    .px-lg-0 {
    padding-right: 0 !important; }
    .pb-lg-0,
    .py-lg-0 {
    padding-bottom: 0 !important; }
    .pl-lg-0,
    .px-lg-0 {
    padding-left: 0 !important; }
    .p-lg-1 {
    padding: 5px !important; }
    .pt-lg-1,
    .py-lg-1 {
    padding-top: 5px !important; }
    .pr-lg-1,
    .px-lg-1 {
    padding-right: 5px !important; }
    .pb-lg-1,
    .py-lg-1 {
    padding-bottom: 5px !important; }
    .pl-lg-1,
    .px-lg-1 {
    padding-left: 5px !important; }
    .p-lg-2 {
    padding: 10px !important; }
    .pt-lg-2,
    .py-lg-2 {
    padding-top: 10px !important; }
    .pr-lg-2,
    .px-lg-2 {
    padding-right: 10px !important; }
    .pb-lg-2,
    .py-lg-2 {
    padding-bottom: 10px !important; }
    .pl-lg-2,
    .px-lg-2 {
    padding-left: 10px !important; }
    .p-lg-3 {
    padding: 20px !important; }
    .pt-lg-3,
    .py-lg-3 {
    padding-top: 20px !important; }
    .pr-lg-3,
    .px-lg-3 {
    padding-right: 20px !important; }
    .pb-lg-3,
    .py-lg-3 {
    padding-bottom: 20px !important; }
    .pl-lg-3,
    .px-lg-3 {
    padding-left: 20px !important; }
    .p-lg-4 {
    padding: 30px !important; }
    .pt-lg-4,
    .py-lg-4 {
    padding-top: 30px !important; }
    .pr-lg-4,
    .px-lg-4 {
    padding-right: 30px !important; }
    .pb-lg-4,
    .py-lg-4 {
    padding-bottom: 30px !important; }
    .pl-lg-4,
    .px-lg-4 {
    padding-left: 30px !important; }
    .p-lg-5 {
    padding: 5px !important; }
    .pt-lg-5,
    .py-lg-5 {
    padding-top: 5px !important; }
    .pr-lg-5,
    .px-lg-5 {
    padding-right: 5px !important; }
    .pb-lg-5,
    .py-lg-5 {
    padding-bottom: 5px !important; }
    .pl-lg-5,
    .px-lg-5 {
    padding-left: 5px !important; }
    .p-lg-10 {
    padding: 10px !important; }
    .pt-lg-10,
    .py-lg-10 {
    padding-top: 10px !important; }
    .pr-lg-10,
    .px-lg-10 {
    padding-right: 10px !important; }
    .pb-lg-10,
    .py-lg-10 {
    padding-bottom: 10px !important; }
    .pl-lg-10,
    .px-lg-10 {
    padding-left: 10px !important; }
    .p-lg-15 {
    padding: 15px !important; }
    .pt-lg-15,
    .py-lg-15 {
    padding-top: 15px !important; }
    .pr-lg-15,
    .px-lg-15 {
    padding-right: 15px !important; }
    .pb-lg-15,
    .py-lg-15 {
    padding-bottom: 15px !important; }
    .pl-lg-15,
    .px-lg-15 {
    padding-left: 15px !important; }
    .p-lg-20 {
    padding: 20px !important; }
    .pt-lg-20,
    .py-lg-20 {
    padding-top: 20px !important; }
    .pr-lg-20,
    .px-lg-20 {
    padding-right: 20px !important; }
    .pb-lg-20,
    .py-lg-20 {
    padding-bottom: 20px !important; }
    .pl-lg-20,
    .px-lg-20 {
    padding-left: 20px !important; }
    .p-lg-25 {
    padding: 25px !important; }
    .pt-lg-25,
    .py-lg-25 {
    padding-top: 25px !important; }
    .pr-lg-25,
    .px-lg-25 {
    padding-right: 25px !important; }
    .pb-lg-25,
    .py-lg-25 {
    padding-bottom: 25px !important; }
    .pl-lg-25,
    .px-lg-25 {
    padding-left: 25px !important; }
    .p-lg-30 {
    padding: 30px !important; }
    .pt-lg-30,
    .py-lg-30 {
    padding-top: 30px !important; }
    .pr-lg-30,
    .px-lg-30 {
    padding-right: 30px !important; }
    .pb-lg-30,
    .py-lg-30 {
    padding-bottom: 30px !important; }
    .pl-lg-30,
    .px-lg-30 {
    padding-left: 30px !important; }
    .p-lg-35 {
    padding: 35px !important; }
    .pt-lg-35,
    .py-lg-35 {
    padding-top: 35px !important; }
    .pr-lg-35,
    .px-lg-35 {
    padding-right: 35px !important; }
    .pb-lg-35,
    .py-lg-35 {
    padding-bottom: 35px !important; }
    .pl-lg-35,
    .px-lg-35 {
    padding-left: 35px !important; }
    .p-lg-40 {
    padding: 40px !important; }
    .pt-lg-40,
    .py-lg-40 {
    padding-top: 40px !important; }
    .pr-lg-40,
    .px-lg-40 {
    padding-right: 40px !important; }
    .pb-lg-40,
    .py-lg-40 {
    padding-bottom: 40px !important; }
    .pl-lg-40,
    .px-lg-40 {
    padding-left: 40px !important; }
    .p-lg-45 {
    padding: 45px !important; }
    .pt-lg-45,
    .py-lg-45 {
    padding-top: 45px !important; }
    .pr-lg-45,
    .px-lg-45 {
    padding-right: 45px !important; }
    .pb-lg-45,
    .py-lg-45 {
    padding-bottom: 45px !important; }
    .pl-lg-45,
    .px-lg-45 {
    padding-left: 45px !important; }
    .p-lg-50 {
    padding: 50px !important; }
    .pt-lg-50,
    .py-lg-50 {
    padding-top: 50px !important; }
    .pr-lg-50,
    .px-lg-50 {
    padding-right: 50px !important; }
    .pb-lg-50,
    .py-lg-50 {
    padding-bottom: 50px !important; }
    .pl-lg-50,
    .px-lg-50 {
    padding-left: 50px !important; }
    .m-lg-n1 {
    margin: -5px !important; }
    .mt-lg-n1,
    .my-lg-n1 {
    margin-top: -5px !important; }
    .mr-lg-n1,
    .mx-lg-n1 {
    margin-right: -5px !important; }
    .mb-lg-n1,
    .my-lg-n1 {
    margin-bottom: -5px !important; }
    .ml-lg-n1,
    .mx-lg-n1 {
    margin-left: -5px !important; }
    .m-lg-n2 {
    margin: -10px !important; }
    .mt-lg-n2,
    .my-lg-n2 {
    margin-top: -10px !important; }
    .mr-lg-n2,
    .mx-lg-n2 {
    margin-right: -10px !important; }
    .mb-lg-n2,
    .my-lg-n2 {
    margin-bottom: -10px !important; }
    .ml-lg-n2,
    .mx-lg-n2 {
    margin-left: -10px !important; }
    .m-lg-n3 {
    margin: -20px !important; }
    .mt-lg-n3,
    .my-lg-n3 {
    margin-top: -20px !important; }
    .mr-lg-n3,
    .mx-lg-n3 {
    margin-right: -20px !important; }
    .mb-lg-n3,
    .my-lg-n3 {
    margin-bottom: -20px !important; }
    .ml-lg-n3,
    .mx-lg-n3 {
    margin-left: -20px !important; }
    .m-lg-n4 {
    margin: -30px !important; }
    .mt-lg-n4,
    .my-lg-n4 {
    margin-top: -30px !important; }
    .mr-lg-n4,
    .mx-lg-n4 {
    margin-right: -30px !important; }
    .mb-lg-n4,
    .my-lg-n4 {
    margin-bottom: -30px !important; }
    .ml-lg-n4,
    .mx-lg-n4 {
    margin-left: -30px !important; }
    .m-lg-n5 {
    margin: -5px !important; }
    .mt-lg-n5,
    .my-lg-n5 {
    margin-top: -5px !important; }
    .mr-lg-n5,
    .mx-lg-n5 {
    margin-right: -5px !important; }
    .mb-lg-n5,
    .my-lg-n5 {
    margin-bottom: -5px !important; }
    .ml-lg-n5,
    .mx-lg-n5 {
    margin-left: -5px !important; }
    .m-lg-n10 {
    margin: -10px !important; }
    .mt-lg-n10,
    .my-lg-n10 {
    margin-top: -10px !important; }
    .mr-lg-n10,
    .mx-lg-n10 {
    margin-right: -10px !important; }
    .mb-lg-n10,
    .my-lg-n10 {
    margin-bottom: -10px !important; }
    .ml-lg-n10,
    .mx-lg-n10 {
    margin-left: -10px !important; }
    .m-lg-n15 {
    margin: -15px !important; }
    .mt-lg-n15,
    .my-lg-n15 {
    margin-top: -15px !important; }
    .mr-lg-n15,
    .mx-lg-n15 {
    margin-right: -15px !important; }
    .mb-lg-n15,
    .my-lg-n15 {
    margin-bottom: -15px !important; }
    .ml-lg-n15,
    .mx-lg-n15 {
    margin-left: -15px !important; }
    .m-lg-n20 {
    margin: -20px !important; }
    .mt-lg-n20,
    .my-lg-n20 {
    margin-top: -20px !important; }
    .mr-lg-n20,
    .mx-lg-n20 {
    margin-right: -20px !important; }
    .mb-lg-n20,
    .my-lg-n20 {
    margin-bottom: -20px !important; }
    .ml-lg-n20,
    .mx-lg-n20 {
    margin-left: -20px !important; }
    .m-lg-n25 {
    margin: -25px !important; }
    .mt-lg-n25,
    .my-lg-n25 {
    margin-top: -25px !important; }
    .mr-lg-n25,
    .mx-lg-n25 {
    margin-right: -25px !important; }
    .mb-lg-n25,
    .my-lg-n25 {
    margin-bottom: -25px !important; }
    .ml-lg-n25,
    .mx-lg-n25 {
    margin-left: -25px !important; }
    .m-lg-n30 {
    margin: -30px !important; }
    .mt-lg-n30,
    .my-lg-n30 {
    margin-top: -30px !important; }
    .mr-lg-n30,
    .mx-lg-n30 {
    margin-right: -30px !important; }
    .mb-lg-n30,
    .my-lg-n30 {
    margin-bottom: -30px !important; }
    .ml-lg-n30,
    .mx-lg-n30 {
    margin-left: -30px !important; }
    .m-lg-n35 {
    margin: -35px !important; }
    .mt-lg-n35,
    .my-lg-n35 {
    margin-top: -35px !important; }
    .mr-lg-n35,
    .mx-lg-n35 {
    margin-right: -35px !important; }
    .mb-lg-n35,
    .my-lg-n35 {
    margin-bottom: -35px !important; }
    .ml-lg-n35,
    .mx-lg-n35 {
    margin-left: -35px !important; }
    .m-lg-n40 {
    margin: -40px !important; }
    .mt-lg-n40,
    .my-lg-n40 {
    margin-top: -40px !important; }
    .mr-lg-n40,
    .mx-lg-n40 {
    margin-right: -40px !important; }
    .mb-lg-n40,
    .my-lg-n40 {
    margin-bottom: -40px !important; }
    .ml-lg-n40,
    .mx-lg-n40 {
    margin-left: -40px !important; }
    .m-lg-n45 {
    margin: -45px !important; }
    .mt-lg-n45,
    .my-lg-n45 {
    margin-top: -45px !important; }
    .mr-lg-n45,
    .mx-lg-n45 {
    margin-right: -45px !important; }
    .mb-lg-n45,
    .my-lg-n45 {
    margin-bottom: -45px !important; }
    .ml-lg-n45,
    .mx-lg-n45 {
    margin-left: -45px !important; }
    .m-lg-n50 {
    margin: -50px !important; }
    .mt-lg-n50,
    .my-lg-n50 {
    margin-top: -50px !important; }
    .mr-lg-n50,
    .mx-lg-n50 {
    margin-right: -50px !important; }
    .mb-lg-n50,
    .my-lg-n50 {
    margin-bottom: -50px !important; }
    .ml-lg-n50,
    .mx-lg-n50 {
    margin-left: -50px !important; }
    .m-lg-auto {
    margin: auto !important; }
    .mt-lg-auto,
    .my-lg-auto {
    margin-top: auto !important; }
    .mr-lg-auto,
    .mx-lg-auto {
    margin-right: auto !important; }
    .mb-lg-auto,
    .my-lg-auto {
    margin-bottom: auto !important; }
    .ml-lg-auto,
    .mx-lg-auto {
    margin-left: auto !important; } }
    
    @media (min-width: 1200px) {
    .m-xl-0 {
    margin: 0 !important; }
    .mt-xl-0,
    .my-xl-0 {
    margin-top: 0 !important; }
    .mr-xl-0,
    .mx-xl-0 {
    margin-right: 0 !important; }
    .mb-xl-0,
    .my-xl-0 {
    margin-bottom: 0 !important; }
    .ml-xl-0,
    .mx-xl-0 {
    margin-left: 0 !important; }
    .m-xl-1 {
    margin: 5px !important; }
    .mt-xl-1,
    .my-xl-1 {
    margin-top: 5px !important; }
    .mr-xl-1,
    .mx-xl-1 {
    margin-right: 5px !important; }
    .mb-xl-1,
    .my-xl-1 {
    margin-bottom: 5px !important; }
    .ml-xl-1,
    .mx-xl-1 {
    margin-left: 5px !important; }
    .m-xl-2 {
    margin: 10px !important; }
    .mt-xl-2,
    .my-xl-2 {
    margin-top: 10px !important; }
    .mr-xl-2,
    .mx-xl-2 {
    margin-right: 10px !important; }
    .mb-xl-2,
    .my-xl-2 {
    margin-bottom: 10px !important; }
    .ml-xl-2,
    .mx-xl-2 {
    margin-left: 10px !important; }
    .m-xl-3 {
    margin: 20px !important; }
    .mt-xl-3,
    .my-xl-3 {
    margin-top: 20px !important; }
    .mr-xl-3,
    .mx-xl-3 {
    margin-right: 20px !important; }
    .mb-xl-3,
    .my-xl-3 {
    margin-bottom: 20px !important; }
    .ml-xl-3,
    .mx-xl-3 {
    margin-left: 20px !important; }
    .m-xl-4 {
    margin: 30px !important; }
    .mt-xl-4,
    .my-xl-4 {
    margin-top: 30px !important; }
    .mr-xl-4,
    .mx-xl-4 {
    margin-right: 30px !important; }
    .mb-xl-4,
    .my-xl-4 {
    margin-bottom: 30px !important; }
    .ml-xl-4,
    .mx-xl-4 {
    margin-left: 30px !important; }
    .m-xl-5 {
    margin: 5px !important; }
    .mt-xl-5,
    .my-xl-5 {
    margin-top: 5px !important; }
    .mr-xl-5,
    .mx-xl-5 {
    margin-right: 5px !important; }
    .mb-xl-5,
    .my-xl-5 {
    margin-bottom: 5px !important; }
    .ml-xl-5,
    .mx-xl-5 {
    margin-left: 5px !important; }
    .m-xl-10 {
    margin: 10px !important; }
    .mt-xl-10,
    .my-xl-10 {
    margin-top: 10px !important; }
    .mr-xl-10,
    .mx-xl-10 {
    margin-right: 10px !important; }
    .mb-xl-10,
    .my-xl-10 {
    margin-bottom: 10px !important; }
    .ml-xl-10,
    .mx-xl-10 {
    margin-left: 10px !important; }
    .m-xl-15 {
    margin: 15px !important; }
    .mt-xl-15,
    .my-xl-15 {
    margin-top: 15px !important; }
    .mr-xl-15,
    .mx-xl-15 {
    margin-right: 15px !important; }
    .mb-xl-15,
    .my-xl-15 {
    margin-bottom: 15px !important; }
    .ml-xl-15,
    .mx-xl-15 {
    margin-left: 15px !important; }
    .m-xl-20 {
    margin: 20px !important; }
    .mt-xl-20,
    .my-xl-20 {
    margin-top: 20px !important; }
    .mr-xl-20,
    .mx-xl-20 {
    margin-right: 20px !important; }
    .mb-xl-20,
    .my-xl-20 {
    margin-bottom: 20px !important; }
    .ml-xl-20,
    .mx-xl-20 {
    margin-left: 20px !important; }
    .m-xl-25 {
    margin: 25px !important; }
    .mt-xl-25,
    .my-xl-25 {
    margin-top: 25px !important; }
    .mr-xl-25,
    .mx-xl-25 {
    margin-right: 25px !important; }
    .mb-xl-25,
    .my-xl-25 {
    margin-bottom: 25px !important; }
    .ml-xl-25,
    .mx-xl-25 {
    margin-left: 25px !important; }
    .m-xl-30 {
    margin: 30px !important; }
    .mt-xl-30,
    .my-xl-30 {
    margin-top: 30px !important; }
    .mr-xl-30,
    .mx-xl-30 {
    margin-right: 30px !important; }
    .mb-xl-30,
    .my-xl-30 {
    margin-bottom: 30px !important; }
    .ml-xl-30,
    .mx-xl-30 {
    margin-left: 30px !important; }
    .m-xl-35 {
    margin: 35px !important; }
    .mt-xl-35,
    .my-xl-35 {
    margin-top: 35px !important; }
    .mr-xl-35,
    .mx-xl-35 {
    margin-right: 35px !important; }
    .mb-xl-35,
    .my-xl-35 {
    margin-bottom: 35px !important; }
    .ml-xl-35,
    .mx-xl-35 {
    margin-left: 35px !important; }
    .m-xl-40 {
    margin: 40px !important; }
    .mt-xl-40,
    .my-xl-40 {
    margin-top: 40px !important; }
    .mr-xl-40,
    .mx-xl-40 {
    margin-right: 40px !important; }
    .mb-xl-40,
    .my-xl-40 {
    margin-bottom: 40px !important; }
    .ml-xl-40,
    .mx-xl-40 {
    margin-left: 40px !important; }
    .m-xl-45 {
    margin: 45px !important; }
    .mt-xl-45,
    .my-xl-45 {
    margin-top: 45px !important; }
    .mr-xl-45,
    .mx-xl-45 {
    margin-right: 45px !important; }
    .mb-xl-45,
    .my-xl-45 {
    margin-bottom: 45px !important; }
    .ml-xl-45,
    .mx-xl-45 {
    margin-left: 45px !important; }
    .m-xl-50 {
    margin: 50px !important; }
    .mt-xl-50,
    .my-xl-50 {
    margin-top: 50px !important; }
    .mr-xl-50,
    .mx-xl-50 {
    margin-right: 50px !important; }
    .mb-xl-50,
    .my-xl-50 {
    margin-bottom: 50px !important; }
    .ml-xl-50,
    .mx-xl-50 {
    margin-left: 50px !important; }
    .p-xl-0 {
    padding: 0 !important; }
    .pt-xl-0,
    .py-xl-0 {
    padding-top: 0 !important; }
    .pr-xl-0,
    .px-xl-0 {
    padding-right: 0 !important; }
    .pb-xl-0,
    .py-xl-0 {
    padding-bottom: 0 !important; }
    .pl-xl-0,
    .px-xl-0 {
    padding-left: 0 !important; }
    .p-xl-1 {
    padding: 5px !important; }
    .pt-xl-1,
    .py-xl-1 {
    padding-top: 5px !important; }
    .pr-xl-1,
    .px-xl-1 {
    padding-right: 5px !important; }
    .pb-xl-1,
    .py-xl-1 {
    padding-bottom: 5px !important; }
    .pl-xl-1,
    .px-xl-1 {
    padding-left: 5px !important; }
    .p-xl-2 {
    padding: 10px !important; }
    .pt-xl-2,
    .py-xl-2 {
    padding-top: 10px !important; }
    .pr-xl-2,
    .px-xl-2 {
    padding-right: 10px !important; }
    .pb-xl-2,
    .py-xl-2 {
    padding-bottom: 10px !important; }
    .pl-xl-2,
    .px-xl-2 {
    padding-left: 10px !important; }
    .p-xl-3 {
    padding: 20px !important; }
    .pt-xl-3,
    .py-xl-3 {
    padding-top: 20px !important; }
    .pr-xl-3,
    .px-xl-3 {
    padding-right: 20px !important; }
    .pb-xl-3,
    .py-xl-3 {
    padding-bottom: 20px !important; }
    .pl-xl-3,
    .px-xl-3 {
    padding-left: 20px !important; }
    .p-xl-4 {
    padding: 30px !important; }
    .pt-xl-4,
    .py-xl-4 {
    padding-top: 30px !important; }
    .pr-xl-4,
    .px-xl-4 {
    padding-right: 30px !important; }
    .pb-xl-4,
    .py-xl-4 {
    padding-bottom: 30px !important; }
    .pl-xl-4,
    .px-xl-4 {
    padding-left: 30px !important; }
    .p-xl-5 {
    padding: 5px !important; }
    .pt-xl-5,
    .py-xl-5 {
    padding-top: 5px !important; }
    .pr-xl-5,
    .px-xl-5 {
    padding-right: 5px !important; }
    .pb-xl-5,
    .py-xl-5 {
    padding-bottom: 5px !important; }
    .pl-xl-5,
    .px-xl-5 {
    padding-left: 5px !important; }
    .p-xl-10 {
    padding: 10px !important; }
    .pt-xl-10,
    .py-xl-10 {
    padding-top: 10px !important; }
    .pr-xl-10,
    .px-xl-10 {
    padding-right: 10px !important; }
    .pb-xl-10,
    .py-xl-10 {
    padding-bottom: 10px !important; }
    .pl-xl-10,
    .px-xl-10 {
    padding-left: 10px !important; }
    .p-xl-15 {
    padding: 15px !important; }
    .pt-xl-15,
    .py-xl-15 {
    padding-top: 15px !important; }
    .pr-xl-15,
    .px-xl-15 {
    padding-right: 15px !important; }
    .pb-xl-15,
    .py-xl-15 {
    padding-bottom: 15px !important; }
    .pl-xl-15,
    .px-xl-15 {
    padding-left: 15px !important; }
    .p-xl-20 {
    padding: 20px !important; }
    .pt-xl-20,
    .py-xl-20 {
    padding-top: 20px !important; }
    .pr-xl-20,
    .px-xl-20 {
    padding-right: 20px !important; }
    .pb-xl-20,
    .py-xl-20 {
    padding-bottom: 20px !important; }
    .pl-xl-20,
    .px-xl-20 {
    padding-left: 20px !important; }
    .p-xl-25 {
    padding: 25px !important; }
    .pt-xl-25,
    .py-xl-25 {
    padding-top: 25px !important; }
    .pr-xl-25,
    .px-xl-25 {
    padding-right: 25px !important; }
    .pb-xl-25,
    .py-xl-25 {
    padding-bottom: 25px !important; }
    .pl-xl-25,
    .px-xl-25 {
    padding-left: 25px !important; }
    .p-xl-30 {
    padding: 30px !important; }
    .pt-xl-30,
    .py-xl-30 {
    padding-top: 30px !important; }
    .pr-xl-30,
    .px-xl-30 {
    padding-right: 30px !important; }
    .pb-xl-30,
    .py-xl-30 {
    padding-bottom: 30px !important; }
    .pl-xl-30,
    .px-xl-30 {
    padding-left: 30px !important; }
    .p-xl-35 {
    padding: 35px !important; }
    .pt-xl-35,
    .py-xl-35 {
    padding-top: 35px !important; }
    .pr-xl-35,
    .px-xl-35 {
    padding-right: 35px !important; }
    .pb-xl-35,
    .py-xl-35 {
    padding-bottom: 35px !important; }
    .pl-xl-35,
    .px-xl-35 {
    padding-left: 35px !important; }
    .p-xl-40 {
    padding: 40px !important; }
    .pt-xl-40,
    .py-xl-40 {
    padding-top: 40px !important; }
    .pr-xl-40,
    .px-xl-40 {
    padding-right: 40px !important; }
    .pb-xl-40,
    .py-xl-40 {
    padding-bottom: 40px !important; }
    .pl-xl-40,
    .px-xl-40 {
    padding-left: 40px !important; }
    .p-xl-45 {
    padding: 45px !important; }
    .pt-xl-45,
    .py-xl-45 {
    padding-top: 45px !important; }
    .pr-xl-45,
    .px-xl-45 {
    padding-right: 45px !important; }
    .pb-xl-45,
    .py-xl-45 {
    padding-bottom: 45px !important; }
    .pl-xl-45,
    .px-xl-45 {
    padding-left: 45px !important; }
    .p-xl-50 {
    padding: 50px !important; }
    .pt-xl-50,
    .py-xl-50 {
    padding-top: 50px !important; }
    .pr-xl-50,
    .px-xl-50 {
    padding-right: 50px !important; }
    .pb-xl-50,
    .py-xl-50 {
    padding-bottom: 50px !important; }
    .pl-xl-50,
    .px-xl-50 {
    padding-left: 50px !important; }
    .m-xl-n1 {
    margin: -5px !important; }
    .mt-xl-n1,
    .my-xl-n1 {
    margin-top: -5px !important; }
    .mr-xl-n1,
    .mx-xl-n1 {
    margin-right: -5px !important; }
    .mb-xl-n1,
    .my-xl-n1 {
    margin-bottom: -5px !important; }
    .ml-xl-n1,
    .mx-xl-n1 {
    margin-left: -5px !important; }
    .m-xl-n2 {
    margin: -10px !important; }
    .mt-xl-n2,
    .my-xl-n2 {
    margin-top: -10px !important; }
    .mr-xl-n2,
    .mx-xl-n2 {
    margin-right: -10px !important; }
    .mb-xl-n2,
    .my-xl-n2 {
    margin-bottom: -10px !important; }
    .ml-xl-n2,
    .mx-xl-n2 {
    margin-left: -10px !important; }
    .m-xl-n3 {
    margin: -20px !important; }
    .mt-xl-n3,
    .my-xl-n3 {
    margin-top: -20px !important; }
    .mr-xl-n3,
    .mx-xl-n3 {
    margin-right: -20px !important; }
    .mb-xl-n3,
    .my-xl-n3 {
    margin-bottom: -20px !important; }
    .ml-xl-n3,
    .mx-xl-n3 {
    margin-left: -20px !important; }
    .m-xl-n4 {
    margin: -30px !important; }
    .mt-xl-n4,
    .my-xl-n4 {
    margin-top: -30px !important; }
    .mr-xl-n4,
    .mx-xl-n4 {
    margin-right: -30px !important; }
    .mb-xl-n4,
    .my-xl-n4 {
    margin-bottom: -30px !important; }
    .ml-xl-n4,
    .mx-xl-n4 {
    margin-left: -30px !important; }
    .m-xl-n5 {
    margin: -5px !important; }
    .mt-xl-n5,
    .my-xl-n5 {
    margin-top: -5px !important; }
    .mr-xl-n5,
    .mx-xl-n5 {
    margin-right: -5px !important; }
    .mb-xl-n5,
    .my-xl-n5 {
    margin-bottom: -5px !important; }
    .ml-xl-n5,
    .mx-xl-n5 {
    margin-left: -5px !important; }
    .m-xl-n10 {
    margin: -10px !important; }
    .mt-xl-n10,
    .my-xl-n10 {
    margin-top: -10px !important; }
    .mr-xl-n10,
    .mx-xl-n10 {
    margin-right: -10px !important; }
    .mb-xl-n10,
    .my-xl-n10 {
    margin-bottom: -10px !important; }
    .ml-xl-n10,
    .mx-xl-n10 {
    margin-left: -10px !important; }
    .m-xl-n15 {
    margin: -15px !important; }
    .mt-xl-n15,
    .my-xl-n15 {
    margin-top: -15px !important; }
    .mr-xl-n15,
    .mx-xl-n15 {
    margin-right: -15px !important; }
    .mb-xl-n15,
    .my-xl-n15 {
    margin-bottom: -15px !important; }
    .ml-xl-n15,
    .mx-xl-n15 {
    margin-left: -15px !important; }
    .m-xl-n20 {
    margin: -20px !important; }
    .mt-xl-n20,
    .my-xl-n20 {
    margin-top: -20px !important; }
    .mr-xl-n20,
    .mx-xl-n20 {
    margin-right: -20px !important; }
    .mb-xl-n20,
    .my-xl-n20 {
    margin-bottom: -20px !important; }
    .ml-xl-n20,
    .mx-xl-n20 {
    margin-left: -20px !important; }
    .m-xl-n25 {
    margin: -25px !important; }
    .mt-xl-n25,
    .my-xl-n25 {
    margin-top: -25px !important; }
    .mr-xl-n25,
    .mx-xl-n25 {
    margin-right: -25px !important; }
    .mb-xl-n25,
    .my-xl-n25 {
    margin-bottom: -25px !important; }
    .ml-xl-n25,
    .mx-xl-n25 {
    margin-left: -25px !important; }
    .m-xl-n30 {
    margin: -30px !important; }
    .mt-xl-n30,
    .my-xl-n30 {
    margin-top: -30px !important; }
    .mr-xl-n30,
    .mx-xl-n30 {
    margin-right: -30px !important; }
    .mb-xl-n30,
    .my-xl-n30 {
    margin-bottom: -30px !important; }
    .ml-xl-n30,
    .mx-xl-n30 {
    margin-left: -30px !important; }
    .m-xl-n35 {
    margin: -35px !important; }
    .mt-xl-n35,
    .my-xl-n35 {
    margin-top: -35px !important; }
    .mr-xl-n35,
    .mx-xl-n35 {
    margin-right: -35px !important; }
    .mb-xl-n35,
    .my-xl-n35 {
    margin-bottom: -35px !important; }
    .ml-xl-n35,
    .mx-xl-n35 {
    margin-left: -35px !important; }
    .m-xl-n40 {
    margin: -40px !important; }
    .mt-xl-n40,
    .my-xl-n40 {
    margin-top: -40px !important; }
    .mr-xl-n40,
    .mx-xl-n40 {
    margin-right: -40px !important; }
    .mb-xl-n40,
    .my-xl-n40 {
    margin-bottom: -40px !important; }
    .ml-xl-n40,
    .mx-xl-n40 {
    margin-left: -40px !important; }
    .m-xl-n45 {
    margin: -45px !important; }
    .mt-xl-n45,
    .my-xl-n45 {
    margin-top: -45px !important; }
    .mr-xl-n45,
    .mx-xl-n45 {
    margin-right: -45px !important; }
    .mb-xl-n45,
    .my-xl-n45 {
    margin-bottom: -45px !important; }
    .ml-xl-n45,
    .mx-xl-n45 {
    margin-left: -45px !important; }
    .m-xl-n50 {
    margin: -50px !important; }
    .mt-xl-n50,
    .my-xl-n50 {
    margin-top: -50px !important; }
    .mr-xl-n50,
    .mx-xl-n50 {
    margin-right: -50px !important; }
    .mb-xl-n50,
    .my-xl-n50 {
    margin-bottom: -50px !important; }
    .ml-xl-n50,
    .mx-xl-n50 {
    margin-left: -50px !important; }
    .m-xl-auto {
    margin: auto !important; }
    .mt-xl-auto,
    .my-xl-auto {
    margin-top: auto !important; }
    .mr-xl-auto,
    .mx-xl-auto {
    margin-right: auto !important; }
    .mb-xl-auto,
    .my-xl-auto {
    margin-bottom: auto !important; }
    .ml-xl-auto,
    .mx-xl-auto {
    margin-left: auto !important; } }
    
    .stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0, 0, 0, 0); }
    
    .text-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; }
    
    .text-justify {
    text-align: justify !important; }
    
    .text-wrap {
    white-space: normal !important; }
    
    .text-nowrap {
    white-space: nowrap !important; }
    
    .text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
    
    .text-left {
    text-align: left !important; }
    
    .text-right {
    text-align: right !important; }
    
    .text-center {
    text-align: center !important; }
    
    @media (min-width: 576px) {
    .text-sm-left {
    text-align: left !important; }
    .text-sm-right {
    text-align: right !important; }
    .text-sm-center {
    text-align: center !important; } }
    
    @media (min-width: 768px) {
    .text-md-left {
    text-align: left !important; }
    .text-md-right {
    text-align: right !important; }
    .text-md-center {
    text-align: center !important; } }
    
    @media (min-width: 992px) {
    .text-lg-left {
    text-align: left !important; }
    .text-lg-right {
    text-align: right !important; }
    .text-lg-center {
    text-align: center !important; } }
    
    @media (min-width: 1200px) {
    .text-xl-left {
    text-align: left !important; }
    .text-xl-right {
    text-align: right !important; }
    .text-xl-center {
    text-align: center !important; } }
    
    .text-lowercase {
    text-transform: lowercase !important; }
    
    .text-uppercase {
    text-transform: uppercase !important; }
    
    .text-capitalize {
    text-transform: capitalize !important; }
    
    .font-weight-light {
    font-weight: 300 !important; }
    
    .font-weight-lighter {
    font-weight: lighter !important; }
    
    .font-weight-normal {
    font-weight: 400 !important; }
    
    .font-weight-bold {
    font-weight: 700 !important; }
    
    .font-weight-bolder {
    font-weight: bolder !important; }
    
    .font-italic {
    font-style: italic !important; }
    
    .text-white {
    color: #ffffff !important; }
    
    .text-primary {
    color: #43d477 !important; }
    
    a.text-primary:hover, a.text-primary:focus {
    color: #26a553 !important; }
    
    .text-secondary {
    color: #1f3b64 !important; }
    
    a.text-secondary:hover, a.text-secondary:focus {
    color: #0d192a !important; }
    
    .text-success {
    color: #e7f4f0 !important; }
    
    a.text-success:hover, a.text-success:focus {
    color: #b3dccf !important; }
    
    .text-info {
    color: #ebf7ff !important; }
    
    a.text-info:hover, a.text-info:focus {
    color: #9fd8ff !important; }
    
    .text-warning {
    color: #ffab00 !important; }
    
    a.text-warning:hover, a.text-warning:focus {
    color: #b37800 !important; }
    
    .text-danger {
    color: #f63c3c !important; }
    
    a.text-danger:hover, a.text-danger:focus {
    color: #db0a0a !important; }
    
    .text-light {
    color: #f8f9fa !important; }
    
    a.text-light:hover, a.text-light:focus {
    color: #cbd3da !important; }
    
    .text-dark {
    color: #343434 !important; }
    
    a.text-dark:hover, a.text-dark:focus {
    color: #0e0e0e !important; }
    
    .text-white {
    color: #ffffff !important; }
    
    a.text-white:hover, a.text-white:focus {
    color: #d9d9d9 !important; }
    
    .text-gray {
    color: #818894 !important; }
    
    a.text-gray:hover, a.text-gray:focus {
    color: #5c626c !important; }
    
    .text-gray300 {
    color: #ececec !important; }
    
    a.text-gray300:hover, a.text-gray300:focus {
    color: #c6c6c6 !important; }
    
    .text-gray200 {
    color: #f1f1f1 !important; }
    
    a.text-gray200:hover, a.text-gray200:focus {
    color: #cbcbcb !important; }
    
    .text-body {
    color: #343434 !important; }
    
    .text-muted {
    color: #6c757d !important; }
    
    .text-black-50 {
    color: rgba(52, 52, 52, 0.5) !important; }
    
    .text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important; }
    
    .text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0; }
    
    .text-decoration-none {
    text-decoration: none !important; }
    
    .text-break {
    word-break: break-word !important;
    word-wrap: break-word !important; }
    
    .text-reset {
    color: inherit !important; }
    
    .visible {
    visibility: visible !important; }
    
    .invisible {
    visibility: hidden !important; }
    
    @media print {
    *,
    *::before,
    *::after {
    text-shadow: none !important;
    box-shadow: none !important; }
    a:not(.btn) {
    text-decoration: underline; }
    abbr[title]::after {
    content: " (" attr(title) ")"; }
    pre {
    white-space: pre-wrap !important; }
    pre,
    blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid; }
    thead {
    display: table-header-group; }
    tr,
    img {
    page-break-inside: avoid; }
    p,
    h2,
    h3 {
    orphans: 3;
    widows: 3; }
    h2,
    h3 {
    page-break-after: avoid; }
    @page {
    size: a3; }
    body {
    min-width: 992px !important; }
    .container {
    min-width: 992px !important; }
    .navbar {
    display: none; }
    .badge {
    border: 1px solid #343434; }
    .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
    background-color: #ffffff !important; }
    .table-bordered th,
    .table-bordered td {
    border: 1px solid #ececec !important; }
    .table-dark {
    color: inherit; }
    .table-dark th,
    .table-dark td,
    .table-dark thead th,
    .table-dark tbody + tbody {
    border-color: #ececec; }
    .table .thead-dark th {
    color: inherit;
    border-color: #ececec; } }
    
    /* Slider */
    .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent; }
    
    .slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0; }
    .slick-list:focus {
    outline: none; }
    .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }
    
    .slick-slider .slick-track,
    .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
    
    .slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto; }
    .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
    .slick-track:after {
    clear: both; }
    .slick-loading .slick-track {
    visibility: hidden; }
    
    .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none; }
    [dir="rtl"] .slick-slide {
    float: right; }
    .slick-slide img {
    display: block; }
    .slick-slide.slick-loading img {
    display: none; }
    .slick-slide.dragging img {
    pointer-events: none; }
    .slick-initialized .slick-slide {
    display: block; }
    .slick-loading .slick-slide {
    visibility: hidden; }
    .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }
    
    .slick-arrow.slick-hidden {
    display: none; }
    
    @font-face {
    font-family: 'iranSans';
    src: url(../fonts/IRANSansWeb_Light.c7e30150ce64562e648f5e348843ff28.woff) format("woff"), url(../fonts/IRANSansWeb_Light.e51cb9caa98054a565e47daed7fecd32.eot) format("embedded-opentype"), url(../fonts/IRANSansWeb_Light.2b685007853b3749273328a6f8079757.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap
    }
    
    @font-face {
    font-family: 'iranSans';
    src: url(../fonts/IRANSansWeb_Medium.a64fd755afdd86edc4c95e917a9581f0.woff) format("woff"), url(../fonts/IRANSansWeb_Medium.79d06fc2f97c1f6597333f49d44e56c6.eot) format("embedded-opentype"), url(../fonts/IRANSansWeb_Medium.2881ea77629257ae41ce9dba7387329c.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
    }
    
    @font-face {
    font-family: 'iranSans';
    src: url(../fonts/IRANSansWeb_Bold.94472d64206a9e1070da2b45acab8b57.woff) format("woff"), url(../fonts/IRANSansWeb_Bold.0aa53e499bbeac4af66ec6e9fc6fcfce.eot) format("embedded-opentype"), url(../fonts/IRANSansWeb_Bold.fd54a0b70c87ad3401f6e156ae7a9191.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap
    }
    @font-face {
    font-family: "digikala";
    src: url(../fonts/digikala.04cebf82842d621261ac549838ab2209.eot?#iefix) format("embedded-opentype"), url(../fonts/digikala.62d7ce5545661785a8ebb41868468bc5.ttf) format("truetype"), url(../fonts/digikala.dbeba325dc56de1da7747fd91f45b7ae.woff) format("woff"), url(../fonts/digikala.c7a9dd49bc5ba0f0039fc86751cdb00f.woff2) format("woff2"); }
    
    /* ---------- CSS RESET ---------- */
    html,
    body,
    div,
    dl,
    dt,
    dd,
    ul,
    ol,
    li,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    pre,
    form,
    fieldset,
    input,
    textarea,
    p,
    blockquote,
    th,
    td,
    figure,
    figcaption,
    address {
    margin: 0;
    padding: 0;
    box-sizing: border-box; }
    
    .title {
    text-align: center; }
    
    html {
    overflow-y: scroll; }
    
    article,
    aside,
    details,
    figcaption,
    figure,
    footer,
    header,
    hgroup,
    nav,
    section,
    summary {
    display: block; }
    
    table {
    border-spacing: 0; }
    table th,
    table td {
    vertical-align: middle; }
    
    caption,
    th {
    text-align: center; }
    
    a:link,
    a:visited,
    a:active {
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    -o-transition: 0.2s all ease;
    transition: 0.2s all ease; }
    
    li {
    list-style: none; }
    
    a:hover,
    a:focus {
    cursor: pointer;
    text-decoration: none; }
    
    b,
    strong {
    font-weight: 400; }
    
    * {
    outline: none !important; }
    
    input[type="text"],
    input[type="password"],
    input[type="number"],
    input[type="email"],
    input[type="tel"],
    textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none; }
    
    .gm-style {
    font-family: "iranSans" !important; }
    
    @-webkit-keyframes autofill {
    to {
    background: transparent; } }
    
    input:-webkit-autofill,
    textarea:-webkit-autofill,
    select:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both; }
    
    svg {
    overflow: auto;
    vertical-align: inherit; }
    
    ul {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0; }
    
    body.modal-open,
    body.swal2-shown {
    padding-right: 0 !important; }
    
    body {
    overflow: hidden; }
    @media (max-width: 767px) {
    body {
    font-size: 14px; } }
    
    .custom-switch .custom-control-label::before {
    top: -.11rem; }
    
    html, body {
    font-family: "iranSans";
    direction: rtl;
    text-align: right; }
    
    a:hover {
    color: #6d55a1; }
    
    .bg-lightgray {
    background-color: #F7F7F8 !important; }
    
    .dropdown-menu {
    text-align: right; }
    
    .dropdown-toggle::after {
    content: 'expand_more';
    font-family: 'Material Icons';
    border: none !important;
    vertical-align: middle;
    margin-right: 0;
    font-size: 20px; }
    
    .dropdown-item {
    padding: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px; }
    .dropdown-item:not(:first-child) {
    margin-top: 10px; }
    .dropdown-item > img {
    margin-left: 10px; }
    .dropdown-item.disabled {
    color: #cacaca; }
    .dropdown-item.disabled > img {
    filter: grayscale(100%); }
    
    .dropdown-menu {
    padding: 16px;
    box-shadow: none;
    filter: drop-shadow(0 10px 3.125rem rgba(0, 0, 0, 0.1));
    border: none;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    right: auto; }
    .dropdown-menu::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    margin: auto; }
    .dropdown-menu[x-placement="top-start"] {
    top: -15px !important; }
    .dropdown-menu[x-placement="top-start"]::before {
    bottom: auto;
    top: 100%;
    transform: rotate(180deg); }
    
    .container {
    max-width: 1675px !important; }
    
    .btn-transparent {
    background-color: transparent;
    padding: 0;
    border: 0; }
    
    .custom-control.custom-checkbox {
    padding-right: 2rem; }
    .custom-control.custom-checkbox .custom-control-label::before,
    .custom-control.custom-checkbox .custom-control-label::after {
    top: -4px;
    width: 1.3rem;
    height: 1.3rem;
    right: -2rem; }
    .custom-control.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    border-color: #1A879F;
    background-color: #1A879F; }
    
    .custom-control.custom-switch .custom-control-input:checked ~ .custom-control-label::before {
    border-color: #1A879F;
    background-color: #1A879F; }
    
    .breadcrumb {
    background: none;
    padding: 0; }
    
    .breadcrumb-item {
    font-size: 13px;
    font-weight: 300;
    color: #808388; }
    .breadcrumb-item.active {
    font-weight: 500;
    color: #07142C;
    font-size: 14px; }
    .breadcrumb-item.active::before {
    font-weight: 300;
    color: #808388;
    font-size: 13px; }
    .breadcrumb-item + .breadcrumb-item {
    padding: 0 !important; }
    .breadcrumb-item + .breadcrumb-item:before {
    float: right !important;
    padding: 0 5px !important; }
    
    .pagination {
    display: flex;
    align-items: center; }
    
    .page-link {
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    text-align: center;
    color: #565A64;
    border-radius: 20px;
    margin: 0 5px; }
    .page-link:hover {
    color: #C1111D;
    background: none; }
    
    .page-item.active .page-link {
    background-color: #EBEBEB;
    color: #565A64; }
    
    .page-item.prev .page-link,
    .page-item.next .page-link {
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    width: 45px;
    height: 45px;
    background-color: #07142C;
    border-radius: 22px;
    font-size: 13px;
    color: #ffffff;
    font-weight: 300;
    transition: all .3s; }
    .page-item.prev .page-link .material-icons,
    .page-item.next .page-link .material-icons {
    background-color: #ffffff;
    color: #07142C;
    font-size: 21px;
    border-radius: 50%;
    transition: inherit; }
    .page-item.prev .page-link .text,
    .page-item.next .page-link .text {
    width: 0;
    overflow: hidden;
    color: #ffffff;
    white-space: nowrap;
    display: block;
    transition: inherit;
    text-align: center; }
    .page-item.prev .page-link:hover,
    .page-item.next .page-link:hover {
    width: 122px;
    margin: 0;
    background-color: #C1111D;
    box-shadow: 0 10px 16px 0 rgba(210, 30, 39, 0.2); }
    .page-item.prev .page-link:hover .material-icons,
    .page-item.next .page-link:hover .material-icons {
    color: #C1111D; }
    .page-item.prev .page-link:hover .text,
    .page-item.next .page-link:hover .text {
    width: 77px; }
    
    .page-item.prev .page-link {
    margin-left: 77px; }
    
    .page-item.next .page-link {
    margin-right: 77px; }
    
    .items-per-page {
    display: flex;
    align-items: center; }
    .items-per-page .dropdown-toggle {
    margin-right: 10px;
    border: 1px solid #ECEDEF;
    background: none;
    padding: 10px 20px 10px 1px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    color: #07142C; }
    .items-per-page .dropdown-toggle .material-icons {
    font-size: 20px;
    margin-right: 25px; }
    .items-per-page .dropdown-toggle + .dropdown-menu[x-placement="top-start"] {
    left: -38px !important; }
    
    .font-72 {
    font-size: 4.5rem;
    font-weight: bold;
    line-height: 1.22; }
    
    .font-48 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.22; }
    
    .font-36 {
    font-size: 2.25rem;
    font-weight: bold;
    line-height: 1.22; }
    @media (max-width: 767px) {
    .font-36 {
    font-size: 1.25rem; } }
    
    .font-30 {
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 1.22; }
    @media (max-width: 767px) {
    .font-30 {
    font-size: 1.25rem; } }
    
    .font-24 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5; }
    @media (max-width: 767px) {
    .font-24 {
    font-size: 1rem; } }
    
    .font-20 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.22; }
    @media (max-width: 767px) {
    .font-20 {
    font-size: 0.875rem; } }
    
    .font-16 {
    font-size: 0.8rem;
    font-weight: normal;
    line-height: 1.5; }
    @media (max-width: 767px) {
    .font-16 {
    font-size: 0.75rem; } }
    
    .font-14 {
    font-size: 0.75rem;
    font-weight: normal;
    line-height: 1.4; }
    
    .font-12 {
    font-size: 0.75rem;
    font-weight: normal;
    line-height: 1.4; }
    
    .font-weight-500 {
    font-weight: 500; }
    
    #top-header {
    border-bottom: 1px solid #F3F4F5;
    padding: 16.5px 0;
    position: sticky;
    top: 0;
    z-index: 9;
    background-color: #ffffff; }
    #top-header .container {
    padding-left: 15px;
    padding-right: 15px; }
    #top-header .navbar-brand {
    width: 16.666667%; }
    #top-header .navbar-brand img {
    width: 138.086px; }
    #top-header .search-form {
    position: relative;
    width: 42%;
    transition: all .2s; }
    #top-header .search-form .navbar-search-input {
    background-color: #F7F7F8;
    display: flex;
    border-radius: 12px;
    align-items: center;
    width: 100%; }
    #top-header .search-form .navbar-search-input input {
    display: block;
    flex: 1;
    background: none;
    border: none;
    box-shadow: none;
    height: 45px;
    font-weight: 500;
    color: #07142C;
    font-size: 14px; }
    #top-header .search-form .navbar-search-input input::placeholder {
    color: #9C9C9C;
    font-weight: 100; }
    #top-header .search-form .navbar-search-input .material-icons {
    padding-left: 12px;
    font-size: 28px;
    color: #07142C; }
    #top-header .search-form .navbar-search-input.focused {
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.2) 0 3px 12px 0;
    border-radius: 12px 12px 0 0; }
    #top-header .search-form .navbar-search-input.focused + .navbar-search-suggestion-box {
    display: block; }
    #top-header .search-form .navbar-search-suggestion-box {
    display: none;
    background-color: #fff;
    width: 100%;
    min-height: 3.75rem;
    align-items: center;
    position: absolute;
    top: 45px;
    right: 0;
    left: 0;
    z-index: 50;
    box-shadow: rgba(0, 0, 0, 0.2) 0 15px 12px 0;
    border-radius: 0 0 12px 12px;
    border-top: 1px solid #e7e8ea;
    padding-left: 8px;
    padding-right: 8px; }
    #top-header .search-form .navbar-search-suggestion-box .navbar-search-suggestion-box-categories {
    border-bottom: 1px solid #f3f4f5; }
    #top-header .search-form .navbar-search-suggestion-box .navbar-search-suggestion-box-categories li {
    margin-top: 8px;
    font-size: 11px;
    color: #a0a3ad; }
    #top-header .search-form .navbar-search-suggestion-box .navbar-search-suggestion-box-categories li * {
    color: #a0a3ad; }
    #top-header .search-form .navbar-search-suggestion-box .navbar-search-suggestion-box-categories li:last-child {
    margin-bottom: 8px; }
    #top-header .search-form .navbar-search-suggestion-box .navbar-search-suggestion-box-categories li .link {
    display: flex;
    align-items: center; }
    #top-header .search-form .navbar-search-suggestion-box .navbar-search-suggestion-box-categories li .link:hover {
    color: #363739; }
    #top-header .search-form .navbar-search-suggestion-box .navbar-search-suggestion-box-categories li .icon {
    transform: rotate(90deg);
    font-size: 18px;
    margin-left: 5px; }
    #top-header .search-form .navbar-search-suggestion-box .navbar-search-suggestion-box-categories li .count,
    #top-header .search-form .navbar-search-suggestion-box .navbar-search-suggestion-box-categories li .category {
    padding: 0 .187rem;
    font-weight: 500;
    color: #1a879f; }
    #top-header .search-form .navbar-search-suggestion-box .navbar-search-suggestion-box-pro {
    padding: 8px; }
    #top-header .search-form .navbar-search-suggestion-box .navbar-search-suggestion-box-pro li {
    margin-bottom: .5rem; }
    #top-header .search-form .navbar-search-suggestion-box .navbar-search-suggestion-box-pro li .link {
    color: #a0a3ad;
    font-size: 11px; }
    #top-header .search-form .navbar-search-suggestion-box .navbar-search-suggestion-box-pro li .link:hover {
    color: #363739; }
    #top-header .send-to {
    padding: .5rem; }
    #top-header .send-to .send-text {
    color: #7f838f;
    font-weight: 300;
    margin-left: 5px; }
    #top-header .language {
    padding: .5rem 1rem; }
    #top-header .language .dropdown-toggle {
    color: #7F838F;
    font-weight: 300; }
    #top-header .nav-link {
    padding: .5rem 1rem; }
    #top-header .pz-button {
    display: block;
    padding: 14px 17px;
    border: 1px solid #e0e1e3;
    border-radius: 6px;
    height: 42px; }
    #top-header .pz-button .material-icons {
    vertical-align: middle; }
    #top-header .pz-button.shopping-card {
    margin-left: 1rem;
    color: #1A879F;
    font-size: 25px;
    width: 50px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center; }
    #top-header .pz-button.login-signup {
    font-weight: 300;
    color: #7F838F; }
    #top-header .pz-button.login-signup .material-icons {
    font-size: 25px;
    margin: -3px 0; }
    
    @media screen and (max-width: 991px) {
    .ff {
    width: 100% !important;
    flex-flow: unset !important; }
    .dd {
    width: 100% !important; } }
    
    .affix {
    top: 0;
    width: 100%;
    z-index: 10500 !important;
    background-color: #f0f1ee; }
    
    .affix + .container-fluid, .affix + .container-sm, .affix + .container-md, .affix + .container-lg, .affix + .container-xl {
    padding-top: 70px; }
    
    .st {
    width: 75% !important; }
    @media screen and (max-width: 991px) {
    .st {
    width: 100% !important; } }
    
    #top-menu {
    padding: 20px 0; }
    #top-menu .container {
    position: relative; }
    #top-menu .categories .categories-button {
        border: none;
            background: #ffffff;
            border-radius: 10px;
            height: 50px;
            display: flex;
            align-items: center;
            color: #3e2d62;
            font-weight: 300;
            padding: 0 15px; }
    #top-menu .categories .categories-button .text {
    margin: 0 30px 0 85px;
    font-size: 14px; }
    #top-menu .categories .categories-button .material-icons {
    font-size: 25px; }
    #top-menu .categories .categories-popup {
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    position: absolute;
    left: 15px;
    right: 15px;
    top: 56px;
    box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    height: 500px;
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    background-color: #ffffff;
    z-index: 1000000; }
    #top-menu .categories .categories-popup .category-header-group {
    width: 21%;
    padding: 20px 20px 20px 0; }
    #top-menu .categories .categories-popup .category-header-group > li a {
    display: flex;
    align-items: center;
    color: #7C8592;
    font-size: 12px;
    padding: 10px 5px;
    border-radius: 10px; }
    #top-menu .categories .categories-popup .category-header-group > li a .MuiSvgIcon {
    width: 25px;
    fill: #7C8592;
    margin-left: 7px; }
    #top-menu .categories .categories-popup .category-header-group > li a .text {
    flex: 1;
    font-weight: 300; }
    #top-menu .categories .categories-popup .category-header-group > li a .material-icons {
    color: #3B4558;
    font-size: 24px; }
    #top-menu .categories .categories-popup .category-header-group > li.active a {
    background-image: linear-gradient(89deg, rgba(160, 163, 173, 0) 11%, rgba(127, 131, 143, 0.15) 84%); }
    #top-menu .categories .categories-popup .category-header-group > li.active a .MuiSvgIcon {
    fill: #C1111D; }
    #top-menu .categories .categories-popup .category-header-group > li.active a .text {
    color: #0472ff;
    font-weight: 600; }
    #top-menu .categories .categories-popup .category-header-group > li.active a .material-icons {
    font-weight: 900; }
    #top-menu .categories .categories-popup > .category-header-group:first-child {
    background-color: #F7F7F8;
    border-radius: 10px; }
    #top-menu .categories .categories-popup .category-links {
    flex: .7;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    border-right: 1px solid #F3F4F5;
    padding: 23px 15px 0; }
    #top-menu .categories .categories-popup .category-links > li {
    width: 50%;
    min-width: 50%;
    max-width: 50%; }
    #top-menu .categories .categories-popup .category-links > li a {
    display: block;
    padding: 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 300;
    font-size: 12px; }
    #top-menu .categories .categories-popup .category-links > li.header a {
    font-weight: 500;
    font-size: 15px; }
    #top-menu .categories .categories-popup .category-links > li.header a .material-icons {
    margin-right: 5px;
    font-size: 23px;
    position: relative;
    vertical-align: middle;
    top: -2px; }
    #top-menu .categories .categories-popup .image-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 32%;
    display: flex;
    justify-content: flex-end;
    align-items: center; }
    #top-menu .categories .categories-popup .image-wrapper img {
    max-width: 100%;
    max-height: 100%; }
    #top-menu .categories:hover .categories-popup {
    opacity: 1;
    visibility: visible; }
    #top-menu .btn {
    padding: 14px 15px;
    font-size: 14px;
    font-weight: 300;
    margin-right: 41px; }
    
    .banner > img,
    .banner {
    width: 100%;
    border-radius: 10px;
    display: block; }
    @media (max-width: 575.98px) {
    .banner > img,
    .banner {
    margin-left: auto;
    margin-right: auto; } }
    
    @media (max-width: 575.98px) {
    .resss > img {
    width: auto; } }
    
    .vertical-banner-carousel .banner {
    margin-bottom: -8px; }
    
    .vertical-banner-carousel .slick-active .banner {
    position: relative;
    z-index: 1; }
    
    .vertical-banner-carousel .slick-arrow {
    position: absolute;
    left: 28px;
    z-index: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 14px; }
    .vertical-banner-carousel .slick-arrow.slick-prev {
    bottom: 25%;
    position: absolute;
    width: 49px;
    height: 90px;
    transform: translateY(-50%);
    margin-top: -22px;
    top: 57%;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: #a8a8a8;
    margin-top: -35px;
    z-index: 10000;
    right: 45px;
    margin-right: -43px;
    box-shadow: -1.5px 0 4 px 0 rgba(0, 0, 0, 0.15);
    border-radius: 5px 0 0 5px; }
    @media screen and (max-width: 1170px) {
    .vertical-banner-carousel .slick-arrow.slick-prev {
    width: 40px;
    height: 80px;
    top: 65%; } }
    @media screen and (max-width: 900px) {
    .vertical-banner-carousel .slick-arrow.slick-prev {
    width: 30px;
    height: 60px;
    top: 65%;
    z-index: 1; } }
    @media screen and (max-width: 680px) {
    .vertical-banner-carousel .slick-arrow.slick-prev {
    width: 20px;
    height: 45px;
    top: 75%; } }
    @media screen and (max-width: 580px) {
    .vertical-banner-carousel .slick-arrow.slick-prev {
    width: 20px;
    height: 45px;
    top: 84%; } }
    .vertical-banner-carousel .slick-arrow.slick-prev::before {
    content: "\e014";
    font-family: digikala;
    font-size: 26px;
    top: 50%;
    position: absolute;
    left: 50%;
    margin: -13px 0 0 -13px;
    line-height: 1;
    color: #000000;
    font-weight: 700; }
    @media screen and (max-width: 800px) {
    .vertical-banner-carousel .slick-arrow.slick-prev::before {
    font-size: 18px;
    left: 63%;
    top: 58%; } }
    @media screen and (max-width: 680px) {
    .vertical-banner-carousel .slick-arrow.slick-prev::before {
    font-size: 12px;
    left: 77%;
    top: 66%; } }
    .vertical-banner-carousel .slick-arrow.slick-next {
    top: 25%;
    position: absolute;
    width: 49px;
    height: 90px;
    transform: translateY(-50%);
    margin-top: -22px;
    top: 57%;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: #a8a8a8;
    margin-top: -35px;
    z-index: 10000;
    left: 10px;
    margin-left: -10px;
    box-shadow: 1.5px 0 4 px 0 rgba(0, 0, 0, 0.15);
    border-radius: 0 5px 3px 0; }
    @media screen and (max-width: 1170px) {
    .vertical-banner-carousel .slick-arrow.slick-next {
    width: 40px;
    height: 80px;
    top: 65%; } }
    @media screen and (max-width: 900px) {
    .vertical-banner-carousel .slick-arrow.slick-next {
    width: 30px;
    height: 60px;
    top: 65%; } }
    @media screen and (max-width: 680px) {
    .vertical-banner-carousel .slick-arrow.slick-next {
    width: 20px;
    height: 45px;
    top: 75%; } }
    @media screen and (max-width: 580px) {
    .vertical-banner-carousel .slick-arrow.slick-next {
    width: 20px;
    height: 45px;
    top: 84%;
    z-index: 1; } }
    .vertical-banner-carousel .slick-arrow.slick-next::before {
    content: "\e011";
    font-family: digikala;
    font-size: 26px;
    top: 50%;
    position: absolute;
    left: 50%;
    margin: -13px 0 0 -13px;
    line-height: 1;
    color: #000000;
    font-weight: 700; }
    @media screen and (max-width: 800px) {
    .vertical-banner-carousel .slick-arrow.slick-next::before {
    font-size: 18px;
    left: 63%;
    top: 58%; } }
    @media screen and (max-width: 680px) {
    .vertical-banner-carousel .slick-arrow.slick-next::before {
    font-size: 12px;
    left: 77%;
    top: 66%; } }
    
    .carousel-section {
    display: flex;
    margin-top: 30px;
    border-radius: 10px;
    padding: 30px 30px 0;
    background-size: 100% 100%; }
    .carousel-section .info {
    width: 282px;
    min-width: 282px;
    max-width: 282px;
    padding-top: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative; }
    @media screen and (max-width: 533px) {
    .carousel-section .info {
    min-width: unset;
    max-width: 131px; } }
    @media screen and (max-width: 400px) {
    .carousel-section .info {
    min-width: unset;
    max-width: 105px; } }
    .carousel-section .info > img:not(.bg-cover) {
    max-width: 100%;
    z-index: 1;
    position: relative; }
    .carousel-section .info .bg-cover {
    position: absolute;
    top: -20px;
    right: -20px; }
    .carousel-section .info .title {
    font-size: 21px;
    font-weight: 900;
    margin-top: 5px;
    z-index: 1;
    position: relative; }
    .carousel-section .info .desc {
    font-size: 14px;
    margin-top: 12px;
    font-weight: 300;
    line-height: 25px;
    word-spacing: -3px;
    z-index: 1;
    position: relative; }
    .carousel-section .info .see-all {
    align-self: flex-end;
    background-color: #07142C;
    color: #ffffff;
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 300;
    margin-top: 20px;
    margin-bottom: 50px;
    z-index: 1;
    position: relative; }
    .carousel-section .info .see-all .material-icons {
    background-color: #ffffff;
    color: #07142C;
    border-radius: 50%;
    padding: 1px;
    font-size: 23px;
    margin: -6px 11px -6px -6px; }
    .carousel-section .info + .carousel {
    margin-right: 50px; }
    .carousel-section .carousel {
    flex: 1;
    width: 0; }
    .carousel-section .carousel .owl-nav > button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    outline: none;
    font-size: 28px; }
    .carousel-section .carousel .owl-nav > button.owl-prev {
    right: -30px; }
    .carousel-section .carousel .owl-nav > button.owl-next {
    left: -30px; }
    .carousel-section.bg-main-gradient .info .title, .carousel-section.bg-blue .info .title {
    color: #ffffff; }
    .carousel-section.bg-main-gradient .info .desc, .carousel-section.bg-blue .info .desc {
    color: #ffffff; }
    .carousel-section.bg-main-gradient .info .see-all, .carousel-section.bg-blue .info .see-all {
    background-color: #101010; }
    .carousel-section.bg-main-gradient .info .see-all .material-icons, .carousel-section.bg-blue .info .see-all .material-icons {
    color: #100f0f; }
    .carousel-section.bg-blue {
    background-color: #1D247A; }
    .carousel-section.bg-main-gradient {
    background-image: linear-gradient(257deg, #d21e27 -3%, #1a879f 89%); }
    
    .product-item {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    border: 1px solid #ECEDEF;
    padding: 20px;
    display: block;
    color: #818388;
    transition: all .3s;
    background-color: #FFFFFF;
    margin-bottom: 30px; }
    .product-item .image-wrapper {
    overflow: hidden;
    border-radius: 15px;
    position: relative; }
    .product-item .image-wrapper .product-hover-img {
    position: absolute;
    visibility: hidden;
    opacity: 0; }
    .product-item .image-wrapper .product-main-img {
    position: relative;
    visibility: visible;
    opacity: 1; }
    .product-item .image-wrapper img {
    width: 100%;
    border-radius: inherit;
    transition: all .5s ease; }
    .product-item .image-wrapper .material-icons {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(7, 20, 44, 0.75);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 55px;
    visibility: hidden;
    opacity: 0;
    transition: all .5s; }
    .product-item .title {
    font-size: 10px;
    line-height: 25px;
    height: 50px;
    overflow: hidden;
    margin-top: 15px; }
    .product-item .rating-wrapper {
    margin-top: 5px;
    display: flex;
    font-size: 14px;
    align-items: center; }
    .product-item .rating-wrapper .rating {
    margin-left: 5px; }
    .product-item .rating-wrapper .rateit-font {
    font-size: 16px;
    position: relative;
    top: 1px; }
    .product-item footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: flex-end;
    height: 45px; }
    .product-item footer > div:not(.discount-distinct) {
    flex: 1; }
    .product-item footer .discount-distinct {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOkAAADpCAYAAADBNxDjAAAACXBIWXMAAA7EAAAOxAGVKw4bAAA59GlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxMzIgNzkuMTU5Mjg0LCAyMDE2LzA0LzE5LTEzOjEzOjQwICAgICAgICAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgICAgICAgICB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIgogICAgICAgICAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICAgICAgICAgIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIj4KICAgICAgICAgPHhtcDpDcmVhdG9yVG9vbD5BZG9iZSBQaG90b3Nob3AgQ0MgMjAxNS41IChXaW5kb3dzKTwveG1wOkNyZWF0b3JUb29sPgogICAgICAgICA8eG1wOkNyZWF0ZURhdGU+MjAyMS0wNS0yNlQxMjo0OTozMCswNDozMDwveG1wOkNyZWF0ZURhdGU+CiAgICAgICAgIDx4bXA6TWV0YWRhdGFEYXRlPjIwMjEtMDUtMjZUMTI6NDk6MzErMDQ6MzA8L3htcDpNZXRhZGF0YURhdGU+CiAgICAgICAgIDx4bXA6TW9kaWZ5RGF0ZT4yMDIxLTA1LTI2VDEyOjQ5OjMxKzA0OjMwPC94bXA6TW9kaWZ5RGF0ZT4KICAgICAgICAgPHhtcE1NOkluc3RhbmNlSUQ+eG1wLmlpZDpkOGM0MGNkMC1lZDczLTU3NDktODMyYi0xNTYzOGQ4MTNlNTE8L3htcE1NOkluc3RhbmNlSUQ+CiAgICAgICAgIDx4bXBNTTpEb2N1bWVudElEPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDoxODM1MDViMi1iZGZiLTExZWItYTRjNy1iOWQ1NjU5N2VmMzI8L3htcE1NOkRvY3VtZW50SUQ+CiAgICAgICAgIDx4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+eG1wLmRpZDpjYjRkYTAzNS02YTIxLTZhNGMtODUyZi1kYzg4MjM3OTYyOGU8L3htcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOkhpc3Rvcnk+CiAgICAgICAgICAgIDxyZGY6U2VxPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5jcmVhdGVkPC9zdEV2dDphY3Rpb24+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDppbnN0YW5jZUlEPnhtcC5paWQ6Y2I0ZGEwMzUtNmEyMS02YTRjLTg1MmYtZGM4ODIzNzk2MjhlPC9zdEV2dDppbnN0YW5jZUlEPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6d2hlbj4yMDIxLTA1LTI2VDEyOjQ5OjMwKzA0OjMwPC9zdEV2dDp3aGVuPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBQaG90b3Nob3AgQ0MgMjAxNS41IChXaW5kb3dzKTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPnNhdmVkPC9zdEV2dDphY3Rpb24+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDppbnN0YW5jZUlEPnhtcC5paWQ6ZDhjNDBjZDAtZWQ3My01NzQ5LTgzMmItMTU2MzhkODEzZTUxPC9zdEV2dDppbnN0YW5jZUlEPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6d2hlbj4yMDIxLTA1LTI2VDEyOjQ5OjMxKzA0OjMwPC9zdEV2dDp3aGVuPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBQaG90b3Nob3AgQ0MgMjAxNS41IChXaW5kb3dzKTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmNoYW5nZWQ+Lzwvc3RFdnQ6Y2hhbmdlZD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgIDwvcmRmOlNlcT4KICAgICAgICAgPC94bXBNTTpIaXN0b3J5PgogICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3BuZzwvZGM6Zm9ybWF0PgogICAgICAgICA8cGhvdG9zaG9wOkNvbG9yTW9kZT4zPC9waG90b3Nob3A6Q29sb3JNb2RlPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICAgICA8dGlmZjpYUmVzb2x1dGlvbj45NjAwMDAvMTAwMDA8L3RpZmY6WFJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOllSZXNvbHV0aW9uPjk2MDAwMC8xMDAwMDwvdGlmZjpZUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6UmVzb2x1dGlvblVuaXQ+MjwvdGlmZjpSZXNvbHV0aW9uVW5pdD4KICAgICAgICAgPGV4aWY6Q29sb3JTcGFjZT42NTUzNTwvZXhpZjpDb2xvclNwYWNlPgogICAgICAgICA8ZXhpZjpQaXhlbFhEaW1lbnNpb24+MjMzPC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjIzMzwvZXhpZjpQaXhlbFlEaW1lbnNpb24+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+ezIFVwAAACBjSFJNAAB6JQAAgIMAAPn/AACA6QAAdTAAAOpgAAA6mAAAF2+SX8VGAAAbPUlEQVR42uzdd3wUZf4H8O/M1mzJpocUSEIKMYRQAoQYMQfBCKggKHY8sOCdjQNFQYocCUX6cbazYUFRD/ILkRjA0EXkKNJEWnpCstkkm012s33m94fgqYdKye7Obj7vf3y9BLK73+/zyfPM7MwzDM/zBF4niXiedbQaAm0N2gi7waBxtrVrHG1Gf85i8RP5+ZlEaqVR5K82SAID9dJuYfVif38DMQxHRGdRPu8iRgmEH0jOYpVbKioTTKfOpLQfO57efvjonW1HjhFvtV7xD2H95KRO70/+A/oWqPr2OazsfcNJv9ge5YxUakNwhY3BTCpMvM2Wajz5Q9+mouLx9R99Ot6hb+3015CEhVLEQ/d9HnLHyEJlSvIJRiI5icojpPAHs6ZD3xrcXLLt9to333vJdPKU215Y1S+Nov/66MvBt44oEfmrDZhdEVL4FXujbmjjxk331rz6r6ds9VqPvQ95j+4U/fSU1aHj7tggCQ7ah84gpFjW2myp+p17csv/vmRFx2nhTF6qPr0pbt7MqQE337gDy2CEtMuy1tbl1Kx+vfTCex8J8w2yLEVNmUzdn35iuDSy2050DCHtOrOnw5Gi37k3t3xu3qqOs+cF/36VqSkUnzfnSU3WkN2MWHwKHURIfZqjRZ9Z99bab6pXvkq8w+E9A0Umo5gZz1Lkow8PEWs0B9BJhNRHl7cXcsrn5ZfqCjd77WcIv+9uipv34p+k3cJ3o6MIqU+xVNfkls/J29q0eYvXf5bQu8ZQz/mzR8iiIrajswipbwS0qnrk+ZnzS1q2lvrMZwq5YxTFL5w3QhYdhaC6GIsSuH4GLXtpgU8FlIio6YsSKpubX2qtvZCDLiOk3nsMWlObWzZ7wdbmkm0++fmaNhVT+fxFpda6egQVIfXCgNbW5ZTNXrC1uXirT39OXUERlc9fWGqr1w5D1xFSLwrohZzyeQtLfeEk0RUFdWMRVSxYssPWoM1G9xFSwbPVa4eVz1/k1V+zXAvtZxupIm/pLpu2EUFFSAUe0JcX7tAVFHXJz69d/2+qXLhsl71RNxSjASEVXkAbtNkVC5bsaNxQ2KXr0LDuM6pYtHyPXdeEoCKkAgqotjG7Im/pLu1nG1EMImr4cD1VIqidBhczXCfz+fLby+bmf+Fr34N2hpCxt1HPl2eOksfGbEE1EFK348yWfvrde4dXLlqxwp07KHgb9YC+FDvzuamamzJ3sXLZcVQEIXUtpzPFXFHVU79zT86Fdz/8mzfcZiYUytQUipj04MrA7Jt2+sX2KCeRCL/ZEFIiIkoiIuIdDrGz3ahxGo1qp9Gk4ux2MfG86IpmTJtdaqmqjjEeO9G/5auddyKY10+RlECBOX8qUqXecFweF1Mu8vOzXNloZZyMWOwQKRUdIpWqXaxWGS7udkjkw3sy+U5IeT7ZoW8NNJ09l9xx6sx75vJKMp05S+1HjpErdtoDYRCplKQe0I+UyUlf+iXGn1YmJ51W9Eo8JQkOaiaGOY2QejqXDkdKx5lzKU3FW8foCoomYpaDS+RxMRR219j1IbePLFSmJJ/05h0lvDGkSfbmltDmLaWj699f91L74aMYkfC7VH37UOQjE5cEj7plsyQkWOdtS2NvCmmS7UJDlHZD4f21r7/9uL1Rh9EHV0UcGEDdn3ni3bC7x62XRUXUecty2CtCypk60hs3brqnIn/pC/amZow2uC6SkGCKnfXc8rC77/xcpFYdREiv66CTTzaePJVWuWjFZ7hYADpbUO5wip313AOqtNTvhDyrCjaknKkjXft5wX0VC1553mEwYESBS4j81RQ3b+bKbvfe9QmrVBxGSK+QpaJqdOWSlcWN//4/jCJwi9DxYyh21nN3+PWM3UwMg5D+9vTJJRsOHMo6P2P2O6ZTZzBywK38EuMpcVn+XwKyhuwV0hVRgrkLhrfbU5s2b7nz1OS/IqDgEeZzZfTDY0+/qSssHs/bbKmYSX8+gVqsaQ2ffP7n8rl50zmzBaMFPBsKmYzi5r7wRuSkh95iFX5HPf1+PP6kb95uT9UVfjGhYv4iBBSEsaqzWqkib+lfWbncHPHgPRwj8+zdOx4NKe9wpDSXfHV72ewFc5xGE0YHCCuo8xdNFykVxrDxYzhPPv7Rc8ekPE/th77LKJ+/eDEugAchchpNVP7yonmte74ZThxHXS6klqrqkZVLV79nqazCaADBsjfqqGrpqn90nDk3vkuF1GEwZNS+8W5J6669GAUgeG0Hj1D1qtc2emrPJreHlHc4qHlL6eiGdZ+i++A1GguKqHHjpj28zeb7ITWXV4658M4H83AmF7wKx9GFdz8k48kfHiQ3f23p1pBypo507acbN+EeUPBG5rIKql/70TpHqyHTN0PK89R+4mSa9rMN6DZ4Ld0XJWTY/58sd57tdVtInaaO9Kaikvds9Vp0GryWs62dGguKltlb9Fm+FVKeJ9Op06ld5Slj4Nv023dT26EjGe6aTd0SUq7DTE3FW9631tahw+D1HAYD6QqKVrjr2NQtIbVU14zXb9+F7oLvzKZ7viHTD2dS3XGm1/UhdTqp/fjJvh1ny9BZ8Bn2Rh21HTycwdvt3h9Sp6mD2r49OI93ONBZ8CmG/f951N6sH+b1IbU16m5vP3YSHQWfYzx5iiw1tT28O6Q8T5aa2hhLVTU6Cr635NU1k/l8WRI5nd4bUt7hoI6z51/FrWjgi3iHg4zfn36Js1i9N6Sc1UbmczhhBL7LXF5JTpPJi0NqNpO1AVcYge+yaRvJ0W683WtD6jSaRtsQUvDpkGrJ3qIP9tqQ2lv0wTZtIzoJPsvZbiS7rinUlRc1uC6kPE9Oo1Hl7DCjk+C7Ie0wk6O1NdCV1/G6+MSRVca7+PQ0gEdxHHEWq5z31pmUs1jl7rhsCsCjObVaZd653P3xzUt5Oy4HBB9f8prNCq89JuWdTglaCL6OtzvEPOelMykAIKQACCkAIKQAgJACIKQAgJACIKQAgJACAEIKgJBeBTc/Ig4AIb1KnNmiwH674Os4q83PK0PKOxxk17cGooXg6xx6faArb8l0WUg5q5UsVdU90ULwdZbauu5Okynb60Jq0zXfbjp1OhstBF/XceZ8kvVCQ7R3hZTjyHji+zTTD2fQQfB51to6aj96fICrzr+4JKQOQ1tm85dbF3JmCzoIXULLth3T7c0t2V4RUt7hIP2OPTnNW0rROegyWvfuI/3OPSNcMZt2ekjN58rG17z2Vp7TaELnoMvgzBaqWf36HOPx7x/s7OsDOjWk1tq6nKqV/9xoPHocXYMup+PsearIX7rOUlk9WpAhtVRUjT73/OxS3cYidAu67rJ3114qm5dfbKmuyRVUSC2VVSPPz5pf3LJtB7oEXV5z8VYqn5u/1VpblyOIkFqqa3LLZueVtGzbju4AXNT0RQmVzc0vtdZeyPFoSK01tbllsxdsbS7Zhq4QETEMagD/DeqmYiqfv6jUVq8d5pGQWmsv5JTNW7i1uXgruoGgwm/QFRRR+csLd1xPUNlrDWj5vPzSpk3F6MLP4dY8uIzGDYVUkffKDluDNtstIbVdaBhW/vdFpbrCzag+ggpXSPvpBqrIX7bLpm3MdmlIbfXaYeXzF+3A1ywA1xDUTz6nyoXLdtkbdUNdElJ7o25oRf7SHY0bClFtgGvUsO4zqlyyco+9uSWrU0PqMBgyata8uUe7/t+oMsB1qn//Y6r955tfO9vaBnVKSDlTR/qFtz/4tvb1t1HdrohhiFicse5sNWvepLp3PvgPZ+pIv66Q8g4H6YqKD1WvehVV7co5JQZfLblA9Yp/kq6o+BDvcKRcW0h5ntoPH51ctXwN4b7Qrj2T8pdmVOhUnNlCVcvWUNuhIxm/963Ab4bUWnchp2r5P96zVFShmt60NO3sn8dxxLAMIaKuYamsoupla96z1NTmXlVIOYs1rWH9hlL99t2oojfp7O9oeZ6IZcmVj5oHIv3OPdSw7rOtXIe535WFlOep/eix9IYPP0H14OKEimNSV2tY9xm1Hf7ussve/wmpvUWfVb/24/esdfWoHJbOrpul4RdsDVqqX7vuTXtT89DfDynHkeGbA0NxVwv8FMpL/8VM6nJNJV9R655vssnp/O2Q2vWtWbpNxYuxPxH8Oqw8z6EWri611UqNBUV5tqbm7MuHlOep/fB3g3CyCH697OU5jggnj9yidd9+ajt4JIM47n9D6jSaqHnr9lUOgwGVAhyLeoizrZ1atpa+4mhv/9+QWmpqxxv2fYsqweWDimNS982m3xwgS2X1/b8IKe9wUNt/Dmd2nC9HhQAzqodZKqqo7dB3Ay89qY0lInK0GrL0O/c8//N1MAB4jn7nnukOQ1vWTyG11tb1MJ44hcoACITx+Pdkqa6N/TGkHEfmiqo4m1aLygAIhE3XRObyynjiOGI5m506zpzDE9DAM3BC6vKnAKxW6jh77u+czU4sZ7GQubwSVQEPjUackPot5opK4sxmYp1GE1kv4DpdAMEteeu15DR1EOtoaxtvb2pGRQAExt7UTI62tvGsvbkl1N6iR0UAhBbSFj059K3BrMPQpuEsOGkEIDScxUKOtjYNy1ttUs7uQEUABIZ3Oomz2qSs02Lxu3T5EcBVw1corgup3UG8zSZjeatVjssB4dpHEr5CcVlpOY44u0PMMmIx1roAQlyksCyxUomVZWRSCyMWoyJY4oHQhplETKxMZmNZmczKSBBSLPFAeCGVECuT2lhWLrMwEgkqAiAwrFRKIpWqnRX7+xtYuRwVARAYSVAgiQMDmllJUGCzNCQIFQEc3wsupEEkVqsKWLFGUygND0dFMLBwfC+0kIYGE6tQECtSKUkeF4OKXE1AMbDADfx6xpJIoSCW9ZOTMiV5JUqC3/wgoLlALCZFctICViohlhGJSJmUcFoSEozKYGkLAiENDyVFQvx5EomIJYYhWVRknTymOyqDmRMEQtk7hWTRkdVEF3cLlIQEf6ke0A+VARCIgJsy/yUJDNj9U0hFKiUFDL3xRZFKieoAeHqp2y2c1AP7Hbh0kRF76bhLldb7qCq1NyoE4GHq/n1JEd/z/KXzIT89C0bWLXxb0K05b6NEAJ7DiMUUPHLEEnFgwN5L/++nkDJSKQXdMmyLMqUXKgXgIf6DBlDA0MzdP78z7RcPEfaLiy0IuW0kKgXgISFjb1sji4zY8vP/94uQsn5yChkzeoIyJRnVAnAzzU2ZFHxrTgkjldJvhpSISJEYv6Hbw/evIZZF1QDcRKRSUuTkh2bLo6O2/PrP/ieJjFRKobePKgzKyUblANwkdOxtFPinoTtJJKI/DCkRkTQifGfUE48+LQkLRfUAXEyZ0osiH/vzA+IAzf7L/fnl17QMQwFZGXu7P/uXN7DsBXDhMtdfTT2mPzNX2fuG9b91nfhvJpCRyY6H3zP+47C7xqKSAC4S9fgkCr51RMnvbQb4u9OkJCR4X4/nnhmrGTIY1QToZGF330mRj/35T6xScfj3/t4frmUVifFFPfPmPKxITkJVATpJ8Khcipv7wq3S8LDdf/R3//iAk2FI3T/to/i8uVOl3bDNCsD1UvXpTbGzpk+QdY/ediV//8rOCrEsBWRnlSYuy38RZ3wBrp0sOori5s96WpmSvOFK/80V74rNiMWngkeOoCQR6zg3/aUVtgYtKg5wFeQ9ulPS6iVPBtyctfNqvjVh+KvdecDpTGnZviv37LSZq2z1CCrAFQU0NoaSVi1+MmDojTuJZU9fzb+9+pBeCuqOPbnnps9cZa2rRwcAfi+gcTHUa82yKZrMwXuvNqDXHtKLQdXv+nrE2Wkz/2GtrUMnAC7DLz6Okla/MkVzY8bb17qp3bWHlIiI45Jbv96ffXbazDctFVXoCMDPA5oYT0mrX3lMM2TQu9ez6+T1hfTHoJLh24OPnp36wjvmsgp0BoCIFEkJlLh6ySOajEFrr3db2Ou/MJdlSZM5+N2kNcseUyQloDuAgCYndVpAO2cmvYTnyfDNgcfPPPXcW5bqGnQKuiR5XAz1em1FpwW0c2bSn+LOkH/GwH1x816cK/JXo1vQ5YgDAyh+wZwXNYPS13bmkw869T40Riw+FXzriJLISQ8WoGXQ1UQ++vD6wGE3b7vcjduCCSkREatUHA6/966PVX37oGvQZShTelHo2NsKWIXf0U7PlCvesF9Cz4JuE+9biRvGoasIGXPbR37xPTe44me7JEWMREKajIH7FQk90T3weZKwUArIGrKXlUnJa0JKRCSLjNigTE05iBaCr1Mk9CR5TPdyVz0m02UhZf38SJHQ8yxaCL5O3j16n0it2u6yLLnqBzNiEUnCQnGbDPj+cjckSMdKpOR9IWUYYmUyC04ega8TKRQmV45zlyaIEbEcg5CCr2NZzqU/HhUGEPjvAJQAACEFAIQUACEFAIQUABBSAIQUABBSAIQUALpMSBkXXy4FIIwUsZyL7lJzcUgZhhip1MpIxGgi+HZGpVIbuTClLg0pK5PamE7elAlAcCH1k5u99i4YViY3MyLMpOD7MynjrTOpSKU0sgo5ugi+PIuSOECj987lLhGJAzR6SXAwOgk+S6RUkjQ0ROe9IVWri6ShIegk+CxJUCCJAwOavTakrEJO0vAwdBJ8N6TBQST2V7v0iQ0uDalILie/hDh0EnyWPC6WRGoVeW1IGamUlDf0miFSKdFN8Emq1BteEykU3htSYhjyi40pl/eIRjfB54gDA0iZnPQ9IxZ7cUiJSBrZrUDVNw0dBZ+jTE4iec/YMleeNHJLSEVKJQVkZSxy9W8bAHfTZA1ZLw0L2+bq13F5SBmxmFT9+h72w8ObwMeWugE3ZrjsIU1uDSkRkTw6ssB/cDo6Cz5D3S+NFEmJp1291HVbSEUqJQXn5swQ+avRXfB+LEvBo25ZLQkN3umWl3PXh/IfnL4/cNjNaDB4Pf+B/SlwePZXjERCvhNSIpIEBe4LG3fHLHxnCt4udNwda+TRkV+6beJ25xJBkzVkb/CoXHQZvFbAzVkUPOqWYkYqJd8L6cXZNGLyg4/IoiLQbfA6In81RT0+6UV5dNQ2d76uezciYxhS9+t7OGLSQ+g4eJ3wCeMoYGjmTnc/c9ftuwWyctnx8HvvGhGUOxxdB6+hTu9HkY8+PE7k73/Q7ZnxxAeWRUVs7/Hcs5P84nGHDAifJCyUYl6YNk2RlFDoidf3zL67DEPq/mkfxMyYugBne0HQWJZ6TP3ra4E337iDPPTUeo9tjs2IxRRy28ii7n97ci1GAghV9FOPF4Q/MOEjRiY77rHfEx79JaVUHI56bNIb3f/21AYMBxCaiEcmbusx9cnlYo3mgEdz4ulCiPzVB7s/PWVlxCMTt2FYgFCE3z9hb8yMqYvEQYH7Pf1eGJ7nBVEUh741s3rFP2fWvv72GAwR8KTIRyZui5k5fYEkJHifEN6PYEJKRORsNw6qfeOdZ6qWrp5IHB4jA+7XY9rTn0c/+8RKTy9xBRtSIiLOYk1r3FB4f/nc/JkOgwGjBtxCrNFQ3PxZS8PvGb+e9ZMfFdJ7E1xIf5xSnSmGA4cyy2bNf8d44nuMIHApVZ/eFL94/mOajIH7SSQ6JbT3J8yQXmSpqh5Zkb+0RLexCCMJXCJswjiKnf38rfIe3QV74lLQISUi4kwd6brNJWOqFq+cZ6muwaiCTiGPjaHYl557OWRUbjGrVBwW8nsVfEgvSrLVa6MaPvl8Yu2rb03GsSpcz7Fn9DNT1nZ74J4PpN3C64norNDfs7eE9L9h1TZG6Ao3j6997e1nrbV1GHVwZTNnj+4U/fSU1aFjRhdIwkK13hBObw3pT2HlTB3q1m8ODG389/+t0hVuJt7hwEiEXw5usZjC7r6Twu4aO1UzZNA+Vqlo96ZwentI/4vnk22NunDjsRP924+eGGDY9+3E1n3fEr5n7YJYlgJuzqKAGzM+UKWlHlUP6HtQEhKs88Zg+lZILzPL8jab1NbYFG6tb4i21l1436ZtJEergRz6VnIY2shpsVxxiHmHk6wX6sl0+izxViuC0ImznCIpgWTRUXSle9cyIhGxMhmJAzQkDgwgcYCGZN3CSRYZ8bAsMqJWEhaiZcRih7eHsiuE1CXBJ55nbdrG8LYDhzKbircsbiz4ArP1Vc5y4RPGUfCoW2b5D07fLw0P0xLDcL4WKIRUKJzOFOPJU31r/vHGJ7rCzajHHwi7eyxFP/OXe1W9bzhOLHsaFUFI3YazWNN0mzbfVT43f569qRkF+RVJWCjF5899OfSOUYWevB8TIe3qeD65/cixQedfnPth+5FjqMdF6vR+lLA0/yF1vz6HiWEweyKkHg8qGY+duP/stFmfGI+d6PLlUPVLo6RVix9QpaWud8ezUnz+cB4l6IxfdQyp+vZZn7A0b5IypVeXLoUyNYUSly98CAFFSAUZVP+B/T9IWLbwsa66C6IiKYESl+U/ou6f9jECipAKNqiajIHvJi5f+KS8R/cu9dHlcTGUuGLRFP/B6WsRUIRU4BVlKeCmzN0JS/OmSbuFd4mPLIuOoqSVi5/UZA5+GwFFSL2DSHQqKCd7W+LyhTMkIcE+/VGlEeGUuHzhtICbMnd7al9ahBSuPai5w79MWJo3W6zR+ORHlISFUuKyhTOCcrK3CXFHA18hRglceIgqFp8Kue1WlrfbxedmzPm7s63ddwZOYAAlLs2bFZQ7/EsEFCH17qBKJCdDx93BidQq4/kZc1ZY6+p94hg0cXn+tMDh2dsYsRgBdfUYwsUMbsLzyW2Hvss4//zs9715czVFchIlrlz0iGbwwP24Dhch9UmWiqrRlYtXFDduKPS69x48Opfi5s0cq0iML8JZXITUpzmNpvSGdZ9Orly0/Cmn0eQNx9bU4/lnKWrK5CHiAOFsGo2QgouT6kwxfHswq2xO3ltCvt5XkzmYYl96fop/xsB9OP5ESLskR4s+s7Fw8901q1+fLqSN1aTdwinmxWlLw8aP2SBSqw6iUwhpV5dkb2oObSreOqbujXde6Dh73mNvRBIWSlFPTH43fML49bLoyBrCzgkIKfwSZ+pI1+/+elj9Bx8va/lqp9teV9WnN0U9MXlR8KjczeLAgGaEEyGFP8LzyXZdU2jbwSOZzV/teEVXuJk6+2IIWVQEdXvovo+CR+duVt7Q6ySOORFSuI7lMGe2KIzHT/bX7/56mK6gaOLVLolF/mryH9if1AP6rVelpR5VpiSflHePqmYkEhtmTYQUXBFai1XuMBgCnW3tGkdbu8bRagh0GAz+zg6zUuTnZxKpVUaxxt8gCQpslnYLrxepVZeezYFAepn/HwCrCphlweOQRwAAAABJRU5ErkJggg==);
    background-size: 100% 100%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 13px; }
    .product-item footer del {
    color: #A0A3AD;
    font-size: 11px;
    font-weight: 300;
    display: block;
    text-align: left;
    margin-bottom: 6px; }
    .product-item footer .price {
    color: #430258;
    text-align: left;
    display: block;
    text-align: left; }
    .product-item:hover {
    color: #818388;
    box-shadow: 0 5px 15px -8px rgba(0, 0, 0, 0.24), 0 8px 10px -5px rgba(0, 0, 0, 0.2); }
    .product-item:hover .image-wrapper .product-hover-img {
    position: relative;
    visibility: visible;
    opacity: 1; }
    .product-item:hover .image-wrapper .product-main-img {
    position: absolute;
    visibility: hidden;
    opacity: 0; }
    .product-item:hover .image-wrapper .material-icons {
    visibility: visible;
    opacity: 1; }
    
    .brand {
    width: 220px;
    display: block;
    margin-left: auto;
    margin-right: auto; }
    .brand img {
    width: 100%;
    border-radius: 25px;
    display: block; }
    
    .brands-title {
    text-align: center;
    margin-top: 60px;
    margin-bottom: -30px; }
    .brands-title img {
    width: 100%;
    max-width: 140px; }
    
    .about-pelazio {
    margin-top: 60px;
    margin-bottom: 15px; }
    .about-pelazio .title .text {
    font-size: 16px; }
    .about-pelazio .title .app-logo {
    margin-right: 15px; }
    .about-pelazio .title .grand-bazaar {
    border-right: 1px solid #A0A3AD;
    color: #A0A3AD;
    margin-right: 15px;
    padding-right: 15px;
    font-weight: 300; }
    .about-pelazio .descr {
    color: #8B8A96;
    font-weight: 300;
    line-height: 26px;
    margin-top: 20px;
    word-spacing: -2px; }
    
    #footer .contact {
    padding: 20px 0;
    background-color: #ECECEE; }
    #footer .contact > .title {
    font-size: 16px;
    font-weight: 900; }
    #footer .contact .contact-item {
    display: flex;
    align-items: center; }
    #footer .contact .contact-item svg {
    margin-left: 10px; }
    #footer .contact .contact-item .content-number {
    color: #808388;
    margin-top: 10px;
    font-family: sans-serif;
    font-size: 13px; }

    #footer .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 45px 0; }
    #footer .content .logo {
    padding-left: 30px; }
    #footer .content .footer-links {
    display: block; }
    #footer .content .footer-links > li {
    display: block; }
    #footer .content .footer-links > li:not(.title) {
    margin-top: 10px;
    text-align: center; }
    #footer .content .footer-links > li.title {
    font-size: 14px;
    margin-bottom: 20px; }
    #footer .content .footer-links > li,
    #footer .content .footer-links > li > a {
    word-spacing: -2px; }
    #footer .content .footer-links > li > a {
    font-size: 14px;
    color: #80838B; }
    #footer .content .footer-links > li > a:hover {
    color: #000000; }
    #footer .content .follow-us-on-sn {
    font-size: 12px;
    word-spacing: -4px;
    margin-top: 15px; }
    #footer .content .social-nets {
    display: flex;
    justify-content: space-between; }
    #footer .content .social-nets > li,
    #footer .content .social-nets > li > a,
    #footer .content .social-nets > li > a > i {
    display: block; }
    #footer .content .social-nets > li > a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #EDEEF0;
    font-size: 20px;
    color: #5B5A64;
    transition: all .2s;
    margin-top: 20px; }
    #footer .content .social-nets > li > a:hover {
    background-color: #E7E8EA; }
    
    #footer .copyright {
    border-top: 1px solid #e7e7e7;
    margin-top: 0px;
    padding: 16px 0; }
    #footer .copyright .text {
    color: #A8A3BE;
    font-weight: 300;
    direction: ltr;
    text-align: center; }
    #footer .copyright .payment-ok {
    font-size: 12px;
    word-spacing: -3px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 20px; }
    @media screen and (max-width: 600px) {
    #footer .copyright .payment-ok {
    margin-left: 0; } }
    #footer .copyright .payment-ok .material-icons {
    color: #1A879F;
    margin-left: 5px;
    font-size: 25px; }
    #footer .copyright .images {
    display: flex;
    align-items: center; }
    #footer .copyright .images > li:not(:first-child) {
    margin-right: 40px; }
    @media screen and (max-width: 600px) {
    #footer .copyright .images > li:not(:first-child) {
    margin-right: 0; } }
    @media screen and (max-width: 600px) {
    #footer .copyright .images {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto; } }
    
    .footerWeblog {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: #f5f5f5; }
    
    .action-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    }
    .action-card .header {
    border-bottom: 1px solid #F3F4F5;
    display: flex;
    justify-content: center;
    padding: 10px 23px;
    font-size: 14px;
    align-items: center;
    text-align: center; }
    .action-card .header .title {
    word-spacing: -2px; }
    .action-card .header[data-toggle="collapse"] {
    cursor: pointer; }
    .action-card .header[data-toggle="collapse"] > .leftside > .material-icons {
    font-size: 25px;
    color: #757575;
    transition: all .4s; }
    .action-card .header[data-toggle="collapse"][aria-expanded="true"] > .leftside > .material-icons {
    transform: rotate(180deg); }
    .action-card .body > .body-content {
    padding: 20px 22px; }
    .action-card .footer {
    border-top: 1px solid #F3F4F5;
    padding: 20px 22px;
    font-size: 11px; }
    
    .clear-filters-link {
    color: #C1111D; }
    
    .filters {
    display: block;
    overflow: hidden;
    margin: -5px; }
    .filters > li {
    float: right;
    margin: 5px;
    display: block;
    background-color: #E7F3F5;
    color: #1A87A2;
    font-weight: 300;
    font-size: 14px;
    padding: 4px 10px 2px;
    border-radius: 6px; }
    .filters > li a {
    vertical-align: middle;
    position: relative;
    top: 1px; }
    
    .category-result {
    margin-top: -12px; }
    .category-result li {
    display: block;
    margin-top: 12px; }
    .category-result li .material-icons {
    vertical-align: middle;
    font-size: 19px;
    color: #A0A3AD; }
    .category-result li a {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    color: #A0A3AD; }
    .category-result li a:hover {
    color: #C1111D; }
    .category-result > li li {
    padding-right: 23px; }
    .category-result > li > a {
    font-size: 15px;
    font-weight: 500; }
    .category-result > li > a:hover {
    color: #C1111D; }
    
    .product-countries-list > li:not(:first-child),
    .product-brands-list > li:not(:first-child) {
    margin-top: 12px; }
    
    .product-countries-list > li .custom-control-label,
    .product-brands-list > li .custom-control-label {
    width: 100%;
    display: flex;
    justify-content: space-between; }
    
    .product-countries-list > li .rightside,
    .product-brands-list > li .rightside {
    font-size: 14px;
    color: #565A64; }
    
    .product-countries-list > li .leftside,
    .product-brands-list > li .leftside {
    color: #A5A8B2;
    font-weight: 300;
    font-size: 13px; }
    .product-countries-list > li .leftside img,
    .product-brands-list > li .leftside img {
    width: 18px; }
    
    .sorting {
    display: flex;
    align-items: center;
    margin: 20px 0; }
    @media screen and (max-width: 600px) {
    .sorting {
    display: unset; } }
    .sorting .material-icons {
    font-size: 30px;
    color: #07142C; }
    @media screen and (max-width: 600px) {
    .sorting .material-icons {
    position: absolute;
    right: 18px;
    top: 85px; } }
    .sorting .sort-title {
    color: #07142C;
    font-size: 14px;
    margin-right: 10px;
    margin-left: 5px; }
    .sorting .sort-option {
    overflow: hidden; }
    @media screen and (max-width: 600px) {
    .sorting .sort-option {
    line-height: 2.8;
    display: flex;
    flex-direction: column;
    text-align: center; } }
    @media screen and (max-width: 600px) {
    .sorting .sort-option > li:first-child {
    margin-top: 18px; } }
    .sorting .sort-option > li {
    float: right; }
    .sorting .sort-option > li a {
    display: block;
    font-size: 13px;
    font-weight: 300;
    padding: 10px 18px;
    border-radius: 10px;
    word-spacing: -3px; }
    .sorting .sort-option > li.active {
    background-color: #1A879F;
    color: #ffffff;
    font-weight: 500; }
    
    .products-page-descriptions .title-group {
    font-size: 14px;
    color: #000000;
    font-weight: 900; }
    
    .products-page-descriptions .desc {
    font-weight: 300;
    font-size: 13px;
    line-height: 25px;
    margin-top: 10px; }
    .products-page-descriptions .desc + .title-group {
    margin-top: 30px; }
    
    .products-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px; }
    .products-list > .product-col {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px; }
    @media (max-width: 1400px) {
    .products-list > .product-col {
    width: 25%; } }
    @media (max-width: 1000px) {
    .products-list > .product-col {
    width: 32%;
    margin-left: auto;
    margin-right: auto;
    padding-left: unset;
    padding-right: unset; } }
    @media (max-width: 700px) {
    .products-list > .product-col {
    width: 39%;
    margin-left: auto;
    margin-right: auto;
    padding-left: unset;
    padding-right: unset; } }
    @media (max-width: 500px) {
    .products-list > .product-col {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    padding-left: unset;
    padding-right: unset; } }
    
    @media (max-width: 900px) {
    .aside-hidden {
    display: none; } }
    
    @media (max-width: 951px) {
    .cont {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%; } }
    
    @media (max-width: 800px) {
    .cont {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; } }
    
    @media (max-width: 702px) {
    .cont {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; } }
    
    .product-details .product-details-cover {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 440px;
    width: 100%;
    padding: 0 30px 30px 35px;
    position: relative;
    text-align: center; }
    .product-details .product-details-cover img {
    width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: none !important; }
    
    .product-details .product-details-carousel {
    position: relative;
    padding: 16px 35px; }
    .product-details .product-details-carousel .owl-nav > button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    outline: none;
    font-size: 28px; }
    .product-details .product-details-carousel .owl-nav > button.owl-prev {
    right: 20px; }
    .product-details .product-details-carousel .owl-nav > button.owl-next {
    left: 20px; }
    .product-details .product-details-carousel .product-details-carousel-item .image-wrapper {
    border-radius: 8px;
    cursor: pointer; }
    .product-details .product-details-carousel .product-details-carousel-item .image-wrapper img {
    border-radius: 8px;
    cursor: pointer; }
    
    .product-details .product-details-category {
    font-size: 14px;
    color: #818894; }
    
    .product-details .product-details-title-fa {
    font-size: .9rem; }
    
    .product-details .product-details-title-en {
    font-size: .6rem; }
    
    .product-details .product-details-rate .product-details-rate-stars i {
    font-size: 18px;
    color: #ececec; }
    .product-details .product-details-rate .product-details-rate-stars i.active {
    color: #ffc107; }
    
    .product-details .product-details-prices .product-details-price {
    font-size: 19px;
    color: #e30a12;
    font-weight: 600; }
    
    .product-details .product-details-prices .product-details-old-price {
    color: #ececec;
    font-size: 18px;
    font-weight: normal;
    margin-right: 10px;
    text-decoration: line-through; }
    
    .product-details .product-details-colors .product-details-colors-lists .product-details-colors-item {
    width: 30px;
    height: 30px;
    display: block;
    margin: 2px;
    cursor: pointer; }
    .product-details .product-details-colors .product-details-colors-lists .product-details-colors-item:hover input:enabled ~ span {
    transform: scale(0.86667); }
    .product-details .product-details-colors .product-details-colors-lists .product-details-colors-item input {
    pointer-events: none;
    opacity: 0;
    position: absolute; }
    .product-details .product-details-colors .product-details-colors-lists .product-details-colors-item input:checked + span:before, .product-details .product-details-colors .product-details-colors-lists .product-details-colors-item input:checked + span:after {
    transform: scale(1); }
    .product-details .product-details-colors .product-details-colors-lists .product-details-colors-item span {
    position: relative;
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50px;
    background: currentColor;
    transform: scale(0.73333);
    transition: transform .2s;
    box-shadow: inset 0 0 0 1px #ececec; }
    .product-details .product-details-colors .product-details-colors-lists .product-details-colors-item span:before, .product-details .product-details-colors .product-details-colors-lists .product-details-colors-item span:after {
    display: block;
    position: absolute;
    content: "";
    border-radius: 50px; }
    .product-details .product-details-colors .product-details-colors-lists .product-details-colors-item span:before {
    left: 3px;
    top: 3px;
    width: 24px;
    height: 24px;
    background: #fff;
    transform: scale(0);
    transition: transform .2s; }
    .product-details .product-details-colors .product-details-colors-lists .product-details-colors-item span:after {
    left: 8px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: currentColor;
    transform: scale(0);
    transition: transform .2s;
    box-shadow: inset 0 0 0 1px #818894; }
    .product-details .product-details-colors .product-details-colors-lists .product-details-colors-item.product-details-colors-item-disabled {
    cursor: default; }
    .product-details .product-details-colors .product-details-colors-lists .product-details-colors-item.product-details-colors-item-disabled span {
    transform: scale(0.75); }
    .product-details .product-details-colors .product-details-colors-lists .product-details-colors-item.product-details-colors-item-disabled span {
   border: 2px solid #FF9923; }
    
    .product-details .product-details-warranty .product-details-warranty-lists .product-details-warranty-item {
    display: flex;
    margin: 3px;
    user-select: none; }
    .product-details .product-details-warranty .product-details-warranty-lists .product-details-warranty-item input {
    position: absolute;
    pointer-events: none;
    opacity: 0; }
    .product-details .product-details-warranty .product-details-warranty-lists .product-details-warranty-item input:checked + span {
    cursor: default;
    background: #ffd333;
    color: #3d464d;
    transition-duration: .08s, .08s; }
    .product-details .product-details-warranty .product-details-warranty-lists .product-details-warranty-item span {
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 32px;
    padding: .3125rem 1rem;
    border-radius: 2px;
    background: #f0f0f0;
    color: #3d464d;
    transition: background-color .2s, color .2s; }
    
    .product-details .product-details-limit ul li {
    position: relative;
    color: #818894;
    padding-right: 16px;
    list-style-type: none;
    margin-top: 10px; }
    .product-details .product-details-limit ul li:first-child {
    margin-top: 0; }
    .product-details .product-details-limit ul li:after {
    content: "";
    height: 6px;
    width: 6px;
    position: absolute;
    top: 50%;
    right: 0;
    border-radius: 50%;
    background: #c2c2c2;
    transform: translateY(-50%); }
    
    .product-details .product-details-add-to-cart input, .product-details .product-details-add-to-cart .btn {
    border-radius: 2px; }
    
    .product-details .product-details-add-to-cart .product-details-add-to-cart-actions .product-details-add-to-cart-actions-btn {
    border-color: #f0f0f0;
    background: #f0f0f0;
    color: #3d464d;
    fill: #3d464d;
    font-size: 18px;
    padding-right: 15px;
    padding-left: 15px; }
    .product-details .product-details-add-to-cart .product-details-add-to-cart-actions .product-details-add-to-cart-actions-btn:hover {
    border-color: #3d464d;
    background: #3d464d;
    color: #fff;
    fill: #fff; }
    
    .product-details .product-details-options ul li {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ebebeb;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 6px;
    vertical-align: top;
    overflow: hidden; }
    .product-details .product-details-options ul li .product-details-options-more-info {
    text-transform: capitalize;
    overflow: hidden;
    line-height: 18px;
    margin-right: 10px;
    font-size: 12px; }
    .product-details .product-details-options ul li .product-details-options-more-info .sub {
    display: block;
    font-size: 12px;
    color: #999; }
    
    .product-details .section-header {
    position: relative;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: right;
    font-size: 1.125rem;
    font-weight: 500;
    color: #616161;
    padding-right: 15px; }
    .product-details .section-header:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 5px;
    height: 5px;
    background-color: #f63c3c;
    border-radius: 50px;
    transform: translateY(-50%); }
    
    .product-details .product-details-tabs ul.nav-tabs li {
    margin-right: 5px; }
    .product-details .product-details-tabs ul.nav-tabs li:first-child {
    margin-right: 0; }
    .product-details .product-details-tabs ul.nav-tabs li a {
    padding: 9px 20px;
    background: #f1f1f1;
    color: #505050;
    text-transform: uppercase;
    font-size: 15px;
    border: 1px solid #ebebeb;
    display: block;
    position: relative;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s; }
    .product-details .product-details-tabs ul.nav-tabs li a.active {
    background: #fff;
    color: #000;
    border-bottom-color: transparent;
    z-index: 1; }
    
    .product-details .product-details-tabs .tab-content .tab-pane {
    padding: 20px;
    border: 1px solid #ebebeb;
    margin: -1px 0 0; }
    .product-details .product-details-tabs .tab-content .tab-pane h1, .product-details .product-details-tabs .tab-content .tab-pane h2, .product-details .product-details-tabs .tab-content .tab-pane h3, .product-details .product-details-tabs .tab-content .tab-pane h4, .product-details .product-details-tabs .tab-content .tab-pane h5 {
    line-height: 1.9; }
    .product-details .product-details-tabs .tab-content .tab-pane h1, .product-details .product-details-tabs .tab-content .tab-pane h2, .product-details .product-details-tabs .tab-content .tab-pane h3, .product-details .product-details-tabs .tab-content .tab-pane h4, .product-details .product-details-tabs .tab-content .tab-pane h5, .product-details .product-details-tabs .tab-content .tab-pane img {
    margin: 25px 0; }
    .product-details .product-details-tabs .tab-content .tab-pane p {
    line-height: 1.8;
    font-weight: 300; }
    
    .product-details .product-details-tabs .tab-content .spec-group-wrapper {
    width: 100%;
    margin-top: 10px;
    padding-right: 0; }
    
    .product-details .product-details-tabs .tab-content .attribute-row {
    display: flex;
    text-align: right; }
    .product-details .product-details-tabs .tab-content .attribute-row > div {
    line-height: 2; }
    .product-details .product-details-tabs .tab-content .attribute-row .attribute-caption {
    width: 280px;
    margin-left: 5px;
    font-weight: 300;
    padding: 10px;
    flex-shrink: 0;
    background-color: #ffffff; }
    @media only screen and (max-width: 767px) {
    .product-details .product-details-tabs .tab-content .attribute-row .attribute-caption {
    width: 40%;
    margin-left: 0;
    flex-shrink: 0; } }
    .product-details .product-details-tabs .tab-content .attribute-row .attribute-value {
    width: calc(100% - 190px);
    padding: 10px 30px 10px 10px;
    font-weight: 300;
    background-color: #ffffff;
    color: #616161; }
    @media only screen and (max-width: 767px) {
    .product-details .product-details-tabs .tab-content .attribute-row .attribute-value {
    flex-grow: 1; } }
    .product-details .product-details-tabs .tab-content .attribute-row:nth-child(odd) .attribute-caption {
    background-color: #f7f7f7; }
    .product-details .product-details-tabs .tab-content .attribute-row:nth-child(odd) .attribute-value {
    background-color: #fbfbfb;
    color: #616161; }
    .product-details .product-details-tabs .tab-content .attribute-row .valid-icon {
    color: #43d477; }
    .product-details .product-details-tabs .tab-content .attribute-row .invalid-icon {
    color: #52046c; }
    
    @media only screen and (max-width: 767px) {
    .product-details .rating-wrapper {
    margin-bottom: 16px; } }
    
    .product-details .rating-wrapper .popover {
    max-width: 200px;
    top: -38px !important; }
    
    .product-details .rating-wrapper .popover-content {
    margin: 16px;
    font-size: 14px;
    line-height: 1.6; }
    
    .product-details .rating-wrapper .mdi-help-circle-outline {
    position: absolute;
    font-size: 1.3em;
    margin-right: 4px; }
    
    .product-details .rating-wrapper li {
    display: flex;
    margin-bottom: 16px; }
    @media only screen and (max-width: 767px) {
    .product-details .rating-wrapper li {
    display: block; } }
    
    .product-details .rating-wrapper .rating-title {
    font-size: 14px;
    font-weight: 400;
    flex: .5; }
    
    .product-details .rating-wrapper .progress {
    display: inline-block;
    width: calc(100% - 80px);
    height: 6px;
    margin-bottom: 0;
    background: #EEE; }
    .product-details .rating-wrapper .progress .progress-bar {
    background: #43d477; }
    
    .product-details .rating-wrapper .bar-text {
    float: left;
    font-size: 1.1em;
    font-weight: 400; }
    
    .product-details .rating-wrapper.add {
    margin-top: 16px; }
    .product-details .rating-wrapper.add li {
    margin-bottom: 0; }
    
    .product-details .rating-wrapper .irs.irs--square {
    flex: .8; }
    
    .product-details .rating-wrapper .irs-grid-pol {
    height: 3px;
    background: #999; }
    
    .product-details .rating-wrapper .irs-grid-pol.small {
    display: none; }
    
    .product-details .rating-wrapper .irs-grid-text {
    color: #484848;
    display: none; }
    
    .product-details .rating-wrapper .lt-ie9 .irs-disable-mask {
    background: #484848; }
    
    .product-details .rating-wrapper .irs--square.irs-with-grid {
    margin-top: -20px;
    margin-left: 80px; }
    
    .product-details .rating-wrapper .irs--square .irs-bar {
    background-color: #43d477; }
    
    .product-details .rating-wrapper .irs--square .irs-handle {
    border: 3px solid #43d477;
    transform: none;
    border-radius: 24px;
    cursor: pointer; }
    
    .product-details .rating-wrapper .irs--square .irs-handle.state_hover, .product-details .rating-wrapper .irs--square .irs-handle:hover {
    background-color: #43d477; }
    
    .product-details .rating-wrapper .irs--square .irs-from, .product-details .rating-wrapper .irs--square .irs-to, .product-details .rating-wrapper .irs--square .irs-single {
    padding: 3px 0;
    background-color: inherit;
    color: inherit; }
    
    .product-details .rating-wrapper .irs--square .irs-grid-pol {
    background-color: inherit; }
    
    .product-details .rating-wrapper .irs-single {
    width: 70px;
    right: auto !important;
    left: -80px !important;
    top: 20px;
    text-align: left; }
    
    .product-details .store-comment .plus-box {
    position: absolute;
    left: 20px;
    top: 36px;
    font-size: 1.5em;
    cursor: pointer;
    display: none;
    color: #ffffff;
    border-radius: 5px; }
    .product-details .store-comment .plus-box.positives-add {
    background-color: #43d477; }
    .product-details .store-comment .plus-box.negatives-add {
    background-color: #f63c3c; }
    
    .product-details .store-comment .help-block .alert {
    padding: 8px;
    margin: 8px 0 0;
    border-radius: 5px; }
    .product-details .store-comment .help-block .alert.alert-dismissible .close {
    right: auto;
    left: 0;
    padding: 8px; }
    .product-details .store-comment .help-block .alert.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1; }
    
    .product-details .comments-lists .comment-card .comment-card-date {
    font-size: 0.75rem;
    line-height: 1.58; }
    
    .product-details .comments-lists .comment-card .comment-card-section ul li {
    font-size: 14px;
    color: #818894; }
    .product-details .comments-lists .comment-card .comment-card-section ul li:before {
    position: relative;
    content: "•";
    font-size: 40px;
    line-height: 0.5;
    top: 12px;
    margin-left: 8px; }
    .product-details .comments-lists .comment-card .comment-card-section ul li.weakness:before {
    color: #f63c3c; }
    .product-details .comments-lists .comment-card .comment-card-section ul li.strength::before {
    color: #43d477; }
    
    .product-details .comments-lists .comment-card .comment-card-actions button.like:hover .material-icons {
    color: #43d477; }
    
    .product-details .comments-lists .comment-card .comment-card-actions button.dislike:hover .material-icons {
    color: #f63c3c; }
    
    .product-details-quantity {
    position: relative;
    width: 120px; }
    @media only screen and (max-width: 767px) {
    .product-details-quantity {
    width: 90px; } }
    .product-details-quantity .product-details-quantity-input {
    display: block;
    width: 100%;
    min-width: 88px;
    padding: 0 24px 1px;
    text-align: center; }
    .product-details-quantity .product-details-quantity-input::-webkit-outer-spin-button, .product-details-quantity .product-details-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; }
    .product-details-quantity .product-details-quantity-input[type=number] {
    -moz-appearance: textfield;
    /* Firefox */ }
    .product-details-quantity .product-details-quantity-add {
    border-radius: 2px 0 0 2px; }
    .product-details-quantity .product-details-quantity-add:after {
    width: 2px;
    height: 8px; }
    .product-details-quantity .product-details-quantity-sub {
    border-radius: 0 2px 2px 0; }
    .product-details-quantity .product-details-quantity-add, .product-details-quantity .product-details-quantity-sub {
    position: absolute;
    height: calc(100% - 2px);
    width: 24px;
    top: 1px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: .3;
    transition: opacity .18s; }
    .product-details-quantity .product-details-quantity-add:active, .product-details-quantity .product-details-quantity-sub:active {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.05); }
    .product-details-quantity .product-details-quantity-add:before, .product-details-quantity .product-details-quantity-add:after, .product-details-quantity .product-details-quantity-sub:before, .product-details-quantity .product-details-quantity-sub:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: currentColor; }
    .product-details-quantity .product-details-quantity-add:before, .product-details-quantity .product-details-quantity-sub:before {
    width: 8px;
    height: 2px; }
    .product-details-quantity .product-details-quantity-add {
    left: 1px; }
    .product-details-quantity .product-details-quantity-sub {
    right: 1px; }
    
    .auth-brand-logo {
    width: 118px; }
    .auth-brand-logo img {
    width: 100%;
    max-width: 100%; }
    
    .ltr {
    direction: ltr; }
    
    .auth-body {
    width: 100%;
    min-height: 100vh;
    background-color: #f5f5f5;
    padding: 50px 0; }
    @media (max-width: 991px) {
    .auth-body {
    height: auto;
    padding: 50px 0; } }
    
    .input-box {
    position: relative;
    border: 1px solid #ececec;
    padding: 10px 5px;
    border-radius: 5px; }
    .input-box.is-invalid {
    border-color: #f63c3c; }
    .input-box label {
    position: absolute;
    top: -7px;
    right: 10px;
    background-color: #ffffff;
    font-size: 11px;
    padding: 0 5px; }
    .input-box input, .input-box select, .input-box textarea {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    background-color: transparent; }
    .input-box input, .input-box input:focus, .input-box input:active, .input-box input:hover, .input-box select, .input-box select:focus, .input-box select:active, .input-box select:hover, .input-box textarea, .input-box textarea:focus, .input-box textarea:active, .input-box textarea:hover {
    border: none; }
    .input-box input::placeholder, .input-box select::placeholder, .input-box textarea::placeholder {
    color: #9C9C9C;
    font-weight: 100;
    font-size: 12px;
    text-align: right; }
    .input-box .dropdown {
    border-right: 1px solid #ececec;
    padding-right: 10px; }
    .input-box .dropdown .dropdown-item > img {
    margin: 0; }
    
    .auth-container {
    background-color: #ffffff;
    border-radius: 25px;
    padding: 1.875rem 2.187rem; }
    @media (max-width: 991px) {
    .auth-container {
    padding: 0 20px; } }
    .auth-container .dropdown-menu {
    min-width: auto;
    width: auto; }
    .auth-container .verify-code-alert {
    padding: 5px 10px;
    background-color: #ebf7ff; }
    .auth-container .verify-code-alert .number {
    border-bottom: 1px dotted #1f3b64;
    color: #43d477; }
    .auth-container .visibility-icon, .auth-container .visibility-off-icon {
    font-size: 19px;
    cursor: pointer; }
    .auth-container .forget-password .material-icons {
    font-size: 19px; }
    .auth-container .captcha-box {
    padding-right: 10px;
    border-right: 1px solid #ececec; }
    .auth-container .captcha-box img {
    width: 120px;
    max-width: 120px; }
    @media (max-width: 767px) {
    .auth-container .captcha-box img {
    width: 95px;
    max-width: 95px; } }
    
    .cart-factor .cart-factor-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #7f838f;
    padding: 20px 0;
    border-bottom: 1px solid #f3f4f5;
    font-weight: 500;
    flex-wrap: wrap; }
    .cart-factor .cart-factor-item:last-child {
    border-bottom: none; }
    .cart-factor .cart-factor-item.cart-discount .cart-discount-amount {
    color: #c1111d; }
    
    .cart-lists .nav-tabs {
    margin: auto;
    padding: .375rem .562rem;
    border-radius: 12px;
    background-color: #f7f7f8;
    border-bottom: none; }
    .cart-lists .nav-tabs li .nav-link.active {
    border-radius: 10px;
    box-shadow: 0 6px 16px 0 rgba(7, 20, 44, 0.14);
    background-color: #fff; }
    .cart-lists .nav-tabs li .count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #c1111d;
    border-radius: 50px;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    font-size: 11px;
    font-weight: normal; }
    
    .cart-item {
    padding: 20px 0;
    border-bottom: 1px solid #ececec; }
    .cart-item:last-child {
    border-bottom: none; }
    .cart-item .cart-item-image {
    position: relative;
    border-radius: 10px; }
    .cart-item .cart-item-image img {
    border-radius: 10px; }
    .cart-item .cart-item-image .cart-number {
    position: absolute;
    top: 50%;
    right: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background-color: #818894;
    border-radius: 50px;
    color: #ffffff;
    border: 4px solid #ffffff;
    transform: translateY(-50%); }
    .cart-item .product-details-colors-item {
    width: 15px;
    height: 15px;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 3px;
    cursor: pointer;
    border-radius: 50px; }
    
    .address-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative; }
    .address-progress:before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    right: 25px;
    width: 90%;
    height: 1px;
    background-color: #ececec;
    z-index: 1; }
    .address-progress .address-progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #818894;
    font-size: 13px;
    z-index: 2; }
    .address-progress .address-progress-item .address-progress-item-circle {
    position: relative;
    width: 35px;
    height: 35px;
    border: 1px solid #ececec;
    border-radius: 6px;
    background-color: #ffffff; }
    .address-progress .address-progress-item .address-progress-item-circle:before {
    content: '';
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    border-radius: 50px;
    transform: translate(-50%, -50%); }
    .address-progress .address-progress-item.active .address-progress-item-circle {
    border-color: #43d477;
    background-color: #e7f4f0; }
    .address-progress .address-progress-item.active .address-progress-item-circle:before {
    display: block;
    background-color: #43d477; }
    
    .address-map {
    height: 300px;
    border-radius: 12px; }
    
    .address-item {
    background: #f7f7f8;
    border: solid 1px #f7f7f8;
    border-radius: 20px;
    padding: 10px 15px;
    cursor: pointer;
    margin-bottom: 30px; }
    .address-item.address-selected {
    background-color: #ebf7ff;
    border-color: #ebf7ff; }
    .address-item .address-item-map {
    width: 9.375rem;
    height: 9.375rem;
    display: flex;
    align-items: center;
    justify-content: center; }
    .address-item .address-item-map img {
    border-radius: 10px; }
    
    .type-of-deliver {
    width: 100%;
    min-height: 6.75rem;
    border: 1px solid #e7f4f0;
    border-radius: 12px;
    background-color: #e7f4f0; }
    .type-of-deliver.selected-deliver {
    background-color: #e7f4f0;
    border-color: #e7f4f0; }
    
    @font-face {
    font-family: "mobile-digikala";
    src: url(../fonts/mobile-digikala.fe9994c00da14092e0e752ff6f86d990.eot) format("embedded-opentype"), url(../fonts/mobile-digikala.d2d4849f4113b96bbc79ee7b5ccf13c0.ttf) format("truetype"), url(../fonts/mobile-digikala.2c5b0e7c84747738c1bfe3f6bceac481.woff) format("woff"), url(../fonts/mobile-digikala.21d577932bbb77fc396e272f96c5c84e.woff2) format("woff2"); }
    
    @media screen and (max-width: 900px) {
    .catlog {
    display: none !important; } }
    
    @media screen and (min-width: 901px) {
    .catlog1 {
    display: none !important; } }
    
    @media screen and (max-width: 600px) {
    .ResRow {
    display: flex !important;
    flex-direction: column !important;
    margin-right: -76px; } }
    
    @media screen and (max-width: 600px) {
    .Res {
    display: flex !important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    max-width: 65%; } }
    
    @media screen and (max-width: 600px) {
    .RowProduct {
    flex: 0 0 35% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: unset !important; } }
    
    @media screen and (max-width: 600px) {
    .contactRes {
    justify-content: center;
    text-align: center; } }
    
    @media screen and (max-width: 600px) {
    .ResContent {
    display: unset !important; } }
    
    @media screen and (max-width: 720px) {
    .footercontent {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto; } }
    
    @media screen and (max-width: 720px) {
    .foot {
    display: contents; } }
    
    @media screen and (max-width: 720px) {
    .foooter {
    flex-direction: column;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto; } }
    
    @media screen and (max-width: 600px) {
    .foootertext {
    flex-direction: column; } }
    
    .bodyy {
    overflow: auto; }
    
    .padd {
    padding-top: 0; }
    
    .Text {
    margin-left: auto;
    margin-right: auto; }
    
    .c-header_row {
    display: none; }
    
    .c-header_nav {
    display: none; }
    
    .c-header {
    background-color: #f9f9f9;
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    width: 100%;
    transition: all .3s ease-in-out; }
    
    .header-product {
    position: absolute; }
    
    .mobile-container {
    display: block;
    padding-right: 8px;
    padding-left: 8px; }
    
    .container {
    padding-right: 8px;
    padding-left: 8px;
    min-width: unset; }
    
    html {
    min-width: unset; }
    
    .mobile-header_nav {
    padding: 10px 0;
    display: flex;
    justify-content: space-between; }
    
    .mobile-header_categories {
    border: none;
    background: none;
    font-weight: 700;
    color: #858585;
    padding-right: 41px;
    position: relative; }
    
    .mobile-header_categories-icon {
    content: "";
    position: absolute;
    width: 31px;
    height: 3px;
    right: 0;
    background-color: #929292;
    top: 50%; }
    .mobile-header_categories-icon::before {
    content: "";
    position: absolute;
    width: 31px;
    height: 3px;
    right: 0;
    background-color: #929292;
    bottom: 100%;
    margin-bottom: 5px; }
    .mobile-header_categories-icon::after {
    content: "";
    position: absolute;
    width: 31px;
    height: 3px;
    right: 0;
    background-color: #929292;
    top: 100%;
    margin-top: 5px; }
    
    .mobile_header_logo {
    width: 93px;
    height: 25px; }
    .mobile_header_logo a {
    display: block;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: contain; }
    
    .mobile-header_search {
    padding: 14px 0 16px 8px;
    border-top: 1px solid #e5e5e5;
    display: flex; }
    
    .mobile-header_search.is-active .mobile-header_search-container {
    flex-basis: 100% !important;
    flex-shrink: 0;
    width: 100%; }
    
    .mobile-header_search.is-active .mobile-input_search {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
    
    .mobile-header_search-container {
    flex-basis: auto;
    flex-grow: 20;
    flex-shrink: 1;
    transition: all .4s ease-in-out; }
    .mobile-header_search-container::before {
    font-family: mobile-digikala;
    content: "\e057";
    font-size: 24px;
    position: absolute;
    bottom: 25px;
    right: 18px;
    line-height: 1;
    color: #929292; }
    .mobile-header_search-container::after {
    content: "";
    border-right: 1px solid rgba(163, 163, 163, 0.5);
    position: absolute;
    height: 27px;
    bottom: 25px;
    right: 50px;
    line-height: 1;
    color: #929292; }
    
    .mobile-input_search {
    width: 100%;
    padding: 9px 53px 8px 10px;
    border-radius: 8px;
    border: 1px solid #979797;
    font-size: 12px;
    line-height: 1.833;
    font-weight: 700;
    color: #858585; }
    .mobile-input_search::placeholder {
    font-weight: 400;
    letter-spacing: -.7px;
    color: #c5c5c5; }
    
    .c-search_result {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.09);
    left: 15px;
    border-radius: 0 0 5px 5px;
    padding: 10px; }
    
    .c-search_result-footer {
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: normal; }
    .c-search_result-footer ul li {
    background-color: #eee;
    border: 1px solid #d5d5d5;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    height: unset;
    border-radius: 100px; }
    .c-search_result-footer ul li a {
    padding: 5px 15px;
    font-size: 15px;
    line-height: 1.467;
    color: rgba(0, 0, 0, 0.5); }
    
    .mobile-header_cart {
    position: relative;
    margin-right: 22px;
    max-width: 29px; }
    .mobile-header_cart::before {
    font-family: mobile-digikala;
    content: "\e017";
    font-size: 30px;
    color: #929292;
    line-height: 1; }
    
    .mobile-header_cart[data-counter]::after {
    content: attr(data-counter);
    position: absolute;
    top: -3px;
    height: 20px;
    width: 20px;
    background-color: #00bfd6;
    right: -2px;
    color: #fff;
    border-radius: 100%;
    padding: 0 6px;
    line-height: 23px; }
    
    .mobile-header_profile {
    margin-right: 22px;
    max-width: 27px;
    position: relative;
    margin-top: 2px; }
    .mobile-header_profile::before {
    font-family: mobile-digikala;
    content: "\e002";
    font-size: 30px;
    line-height: 1;
    color: #929292; }
    .mobile-header_profile .c-header_btn-user_has-notifiction {
    position: absolute;
    left: 12px;
    top: 12px;
    height: 21px;
    width: 21px; }
    
    .mobile-main_menu {
    display: block;
    width: 300px;
    position: fixed;
    background: #fff;
    z-index: 100000000;
    box-shadow: -2px 0 4px 0 black;
    overflow: auto;
    transform: translateX(100%);
    transition: all .5s ease-in-out;
    top: 0;
    bottom: 0; }
    @media screen and (max-width: 900px) {
    .mobile-main_menu {
    right: -7px; } }
    @media screen and (max-width: 500px) {
    .mobile-main_menu {
    right: -13px; } }
    @media screen and (max-width: 400px) {
    .mobile-main_menu {
    right: -11px;
    height: 100%; } }
    @media screen and (max-width: 380px) {
    .mobile-main_menu {
    right: -21px;
    height: 888px; } }
    @media screen and (max-width: 360px) {
    .mobile-main_menu {
    right: -16px;
    height: 888px; } }
    @media screen and (max-width: 355px) {
    .mobile-main_menu {
    right: -17px; } }
    @media screen and (max-width: 333px) {
    .mobile-main_menu {
    right: -10px;
    height: 888px; } }
    @media screen and (max-width: 325px) {
    .mobile-main_menu {
    right: -12px;
    height: 888px; } }
    @media screen and (max-width: 318px) {
    .mobile-main_menu {
    right: -16;
    height: 888px; } }
    @media screen and (max-width: 300px) {
    .mobile-main_menu {
    right: -13px;
    height: 888px; } }
    @media screen and (max-width: 290px) {
    .mobile-main_menu {
    right: -18px;
    height: 888px; } }
    @media screen and (max-width: 260px) {
    .mobile-main_menu {
    right: -128px;
    height: 888px; } }
    @media screen and (max-width: 240px) {
    .mobile-main_menu {
    right: -140px; } }
    
    @media screen and (max-width: 355px) {
    .weblogmenu {
    right: -23px; } }
    
    @media screen and (max-width: 345px) {
    .weblogmenu {
    right: -35px; } }
    
    @media screen and (max-width: 337px) {
    .weblogmenu {
    right: -55px; } }
    
    @media screen and (max-width: 320px) {
    .weblogmenu {
    right: -65px; } }
    
    @media screen and (max-width: 310px) {
    .weblogmenu {
    right: -75px; } }
    
    @media screen and (max-width: 900px) {
    .mobile-main_filter {
    right: 1px; } }
    
    .mobile-main_menu.is-active {
    transform: translateX(0); }
    
    .mobile-main_menu-logo {
    background-size: auto 43px;
    height: 78px;
    margin: 0 25px 0 29px;
    border-bottom: 1px solid #e5e5e5; }
    
    .mobile-main_menu-list {
    padding: 10px 0 80px; }
    
    .mobile-main_menu-category {
    padding: 15px 54px 15px 15px;
    position: relative;
    line-height: 22px;
    display: block;
    color: #757575; }
    .mobile-main_menu-category::before {
    font-family: mobile-digikala;
    content: "\e04f";
    position: absolute;
    right: 25px;
    top: 17px;
    font-size: 16px;
    line-height: 1; }
    
    .mobile-main_menu-category.is-active::before {
    content: "\e042"; }
    
    .inpute {
    width: 90%;
    margin: 4px; }
    
    .mobile-main_menu-sublist {
    padding: 10px 0;
    background-color: #f5f5f5;
    box-shadow: inset 0 5px 4px -4px rgba(0, 0, 0, 0.06), inset 0 5px 4px -4px rgba(0, 0, 0, 0.06);
    display: none; }
    
    .is-active + .mobile-main_menu-sublist {
    display: block; }
    
    .mobile-main_menu-subcategory {
    padding: 10px 73px 10px 15px;
    position: relative;
    color: #757575;
    line-height: 1.571;
    display: block; }
    .mobile-main_menu-subcategory::before {
    font-family: mobile-digikala;
    content: "\e04f";
    position: absolute;
    right: 46px;
    top: 13px;
    font-size: 16px;
    line-height: 1; }
    .mobile-main_menu-subcategory .mobile-main_menu-subcategory_all::before {
    right: 46px; }
    
    .mobile-main_menu-subcategory.is-active::before {
    content: "\e042"; }
    
    .mobile-main_menu-subcategory.is-empty::before {
    content: unset; }
    
    .mobile-main_menu-thirdlist {
    padding: 10px 0;
    display: none; }
    
    .is-active + .mobile-main_menu-thirdlist {
    display: block; }
    
    .mobile-main_menu-thirdcategory {
    padding: 10px 95px 10px 15px;
    line-height: 22px;
    display: block;
    color: #757575;
    font-weight: 300;
    position: relative; }
    
    .mobile-main_menu-subcategory_all::before {
    font-family: mobile-digikala;
    content: "\e006";
    position: absolute;
    right: 70px;
    top: 13px;
    line-height: 1;
    font-size: 16px; }
    
    .mobile-menu_overlay {
    background: rgba(102, 102, 102, 0.3);
    height: 100vh;
    z-index: 300;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: none; }
    
    .mobile-main_menu-special {
    margin-top: 5px; }
    
    .mobile-main_menu-category_special {
    background-color: #f5f5f5; }
    .mobile-main_menu-category_special::before {
    content: "\e050";
    color: #ef4746;
    font-size: 11px;
    right: 26px;
    line-height: 2; }
    
    .mobile-menu_overlay.is-active {
    display: block; }
    
    .c-desktop_main-slider {
    display: none; }
    
    .mobile-main_slider {
    display: block;
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 18px; }
    
    .c-slide {
    background-size: cover !important; }
    
    .c-slider_dots {
    justify-content: center;
    transform: translateX(0); }
    
    .c-slider_next {
    display: none; }
    
    .c-slider_prev {
    display: none; }
    
    .c-discount_right {
    display: none; }
    
    .c-discount_left {
    flex-basis: 100%;
    max-width: 100%;
    padding-right: 0; }
    
    .c-discount_aside {
    display: none; }
    
    .c-discount {
    background-color: transparent;
    box-shadow: unset;
    height: unset;
    padding: 15px 0;
    width: calc(100% + 16px);
    margin-right: -8px;
    padding-right: 8px; }
    
    .c-discount_product {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden; }
    
    .c-discount_container {
    display: flex !important;
    flex: 0 0 49.5vw;
    background-color: #fff;
    margin-left: 10px;
    border-radius: 9px;
    padding: 8px 0;
    height: unset;
    position: relative;
    justify-content: center; }
    
    .c-discount_content {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 269px; }
    
    .c-discount_image {
    height: 124px; }
    
    .c-discount_prop {
    flex-basis: unset; }
    
    .c-discount_price-discount_content {
    position: absolute;
    right: 0;
    top: 0;
    height: unset;
    width: unset;
    padding: 4px 6px 2px;
    font-size: 13px;
    border-radius: 0 9px 0 9px;
    background-color: #fb3449;
    letter-spacing: -.8px;
    line-height: 1; }
    
    .c-discount_image-top-bar {
    display: none; }
    
    .c-discount_ul {
    display: none; }
    
    .c-discount_title {
    display: none; }
    
    .mobile-discount_title {
    display: block;
    line-height: 22px;
    height: 42px;
    text-align: center;
    padding: 0 15px;
    color: #2a2a2a; }
    
    .c-discount_counter-title {
    display: none; }
    
    .c-discount_price-primary {
    display: none; }
    
    .c-discount_price {
    display: flex;
    justify-content: center;
    text-align: center; }
    
    .mobile-discount_price-primary {
    display: block;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: .8px;
    color: #fb3449; }
    .mobile-discount_price-primary span {
    font-size: 14px;
    line-height: 1.9; }
    .mobile-discount_price-primary > del {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: .5px;
    color: #ababab;
    width: 100%;
    display: inline-block; }
    
    .c-discount_counter {
    padding: 0; }
    
    .c-counter {
    font-size: 18px;
    padding-top: 5px;
    text-align: center;
    width: 100%;
    line-height: 1.5;
    letter-spacing: .8px;
    font-weight: 400;
    color: #fb3449; }
    .c-counter span {
    margin: 0;
    width: unset; }
    
    .c-feature_main-page {
    display: none; }
    
    .mobile-discount_show-more {
    display: block;
    background-color: #00bfd6;
    color: #fff;
    padding: 14px;
    text-align: center;
    border-radius: 9px;
    box-shadow: 0 2px 6px 0 rgba(0, 191, 214, 0.5);
    font-size: 18px;
    letter-spacing: -.6px;
    margin-top: 10px; }
    
    .c-top_swiper-left {
    display: none; }
    
    .c-top_swiper-right {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0; }
    
    .c-swiper_btn-next {
    display: none; }
    
    .c-swiper_btn-prev {
    display: none; }
    
    .c-swiper {
    background: transparent;
    box-shadow: unset;
    border-top: 1px solid #e5e5e5;
    padding: 0; }
    
    .c-swiper_container {
    width: calc(100% + 16px);
    margin-right: -8px;
    padding-right: 8px; }
    
    .c-swiper_headline > span {
    font-size: 14px;
    color: #858585; }
    .c-swiper_headline > span::after {
    background-color: #f5f5f5; }
    
    .c-swiper_slide {
    background-color: #fff;
    border-radius: 9px; }
    
    .c-swiper_url:hover {
    box-shadow: unset; }
    
    .c-swiper_url::after {
    display: none; }
    
    .c-discount_banner {
    justify-content: space-between;
    flex-wrap: wrap; }
    
    .c-discount_banner-item {
    width: 49%;
    margin-left: 0 !important; }
    
    .c-discount_banner-single .c-discount_banner-item {
    width: 100%; }
    
    .c-swiper_brand .c-swiper_url {
    padding-bottom: 0px; }
    
    .c-swiper_brand .c-swiper_slide {
    height: unset; }
    
    .c-footer {
    background-color: #fff;
    padding-top: 0;
    margin-top: 10px; }
    .c-footer .container hr:first-of-type {
    display: none; }
    
    .c-footer_about {
    display: block; }
    
    .c-footer_links-col:nth-child(2) {
    display: none; }
    
    .c-footer_links-headline {
    display: none; }
    
    .c-footer_contact {
    display: none; }
    
    .c-footer_links {
    margin: auto; }
    
    .c-footer_form {
    margin: 30px auto;
    border-top: 1px solid #cfd8dc;
    padding-top: 10px; }
    
    .c-footer_social {
    text-align: center; }
    
    .c-footer_social_image {
    display: flex;
    justify-content: center; }
    
    .c-footer_address {
    justify-content: center; }
    
    .c-footer_description aside {
    display: none; }
    
    .c-footer_more-info {
    background-color: #fff;
    border-top: 1px solid #cfd8dc; }
    
    .c-footer_other_site {
    display: none; }
    
    .c-discount_price-finish {
    font-size: 15px; }
    
    .c-search_page-right {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0;
    margin-bottom: 10px;
    margin-top: 20px; }
    
    .c-search_page-left {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0; }
    .c-search_page-left > nav {
    position: absolute;
    top: 0; }
    
    .c-listing_counter {
    display: none; }
    
    .c-listing_type-list {
    display: none; }
    
    .c-search_page-container {
    position: relative; }
    
    .c-breadcrumb {
    overflow: auto;
    display: flex; }
    .c-breadcrumb li {
    white-space: nowrap; }
    
    .c-listing_sort {
    display: inline-flex; }
    .c-listing_sort::before {
    content: unset; }
    
    .c-listing_header {
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;
    overflow: auto; }
    .c-listing_header::before {
    content: unset; }
    
    .c-product_box-prop {
    display: none !important; }
    
    .c-product_box-tags {
    display: none !important; }
    
    .c-product_box-title-en {
    display: none !important; }
    
    .c-product_box-compare-checkbox {
    display: none !important; }
    
    .c-search_page-list.is-list .c-prodcut_box-img {
    flex-basis: 135px;
    padding: 10px;
    max-height: 128px; }
    
    .c-search_page-list.is-list .c-product_box-title {
    background: transparent;
    font-size: 12px;
    padding: 0;
    letter-spacing: normal; }
    
    .c-search_page-list.is-list .c-product_box-content {
    padding-bottom: 0px; }
    
    .c-product_box-row_price {
    flex-direction: row; }
    
    .c-product_box-price {
    justify-content: flex-start; }
    
    .c-product_box-price_value {
    text-align: right; }
    
    .c-compare_list-header {
    position: sticky;
    top: 0; }
    
    .c-compare_header-img {
    padding: 15px; }
    
    .c-compare_title {
    font-size: 10px;
    letter-spacing: -.3px; }
    
    .c-compare_btn {
    padding: 7px 10px;
    font-size: 12px;
    margin-right: -10px;
    margin-left: -10px;
    border: unset;
    border-radius: 5px; }
    
    .c-compare-add {
    justify-content: center; }
    
    .c-compare_btn-gray {
    display: none; }
    
    .c-compare-add-btn {
    border: 1px solid;
    border-radius: 6px;
    padding: 11px !important;
    font-size: 11px !important;
    line-height: 1.692;
    margin: -15px; }
    .c-compare-add-btn::before {
    font-size: 80px; }
    
    .c-remodal_compare-content_title {
    font-size: 11px;
    line-height: 1.6;
    padding: 0 6px;
    letter-spacing: 0.7px;
    margin-top: 29px; }
    
    .c-compare_list-span {
    padding: 4px 8px 0;
    font-size: 12px; }
    
    .page_row {
    flex-wrap: wrap; }
    
    .page_aside {
    flex-basis: 100%;
    max-width: 100%; }
    
    .c-profile_box-header {
    height: 90px; }
    
    .c-profile_box-avatar {
    height: 102px;
    width: 102px; }
    
    .c-profile_box-avatar_edit {
    width: 35px;
    height: 35px;
    top: 93%;
    left: 60%;
    background-color: #909090; }
    .c-profile_box-avatar_edit::before {
    color: #fff;
    font-size: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    
    .c-profile_box-username {
    margin-top: 7px; }
    
    .c-profile_box-tabs {
    justify-content: center;
    align-items: center;
    background-color: transparent; }
    
    .c-profile_box-tab {
    flex-basis: unset;
    border: 1px solid #00bfd6 !important;
    margin-left: 10px;
    padding: 5px 30px 5px 5px;
    border-radius: 5px;
    color: #00bfd6; }
    .c-profile_box-tab::before {
    top: 50%;
    left: unset;
    right: 8px;
    transform: translateY(-50%); }
    
    .page_content {
    flex-basis: 100%;
    max-width: 100%;
    padding-right: 0; }
    
    .c-profile_message.in-mobile {
    display: block; }
    
    .c-profile_message.in-desktop {
    display: none; }
    
    .c-profile_message-content {
    display: block; }
    
    .c-profile_message-btn {
    display: block;
    margin-right: auto;
    background-color: transparent;
    color: #000;
    border: 1px solid #000; }
    
    .c-profile_content-row {
    margin-right: 0;
    margin-left: 0; }
    
    .c-profile_content-col {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0; }
    
    .c-profile_address-add {
    display: none; }
    
    .c-profile_address-container {
    padding-left: 0;
    padding-right: 0; }
    
    .c-remodal_address .container {
    padding-left: 15px;
    padding-right: 15px; }
    
    .c-form_edit-user_row {
    flex-wrap: wrap; }
    
    .c-form_edit-user_col {
    flex-basis: 100%;
    max-width: 100%;
    padding: 0 10px; }
    
    .c-form_edit-user_row-submit {
    flex-wrap: nowrap; }
    
    .c-selectric-input {
    display: none; }
    
    .c-profile_return-form_field {
    width: calc(100% - 122px); }
    
    .c-profile_return-form_button {
    width: 112px; }
    
    .c-profile_personal-info_col {
    flex-basis: 100%;
    max-width: 100%;
    border-right: none; }
    
    .c-account_page-footer {
    position: relative; }
    
    .c-account_page-footer_links > li {
    margin: 0 5px; }
    .c-account_page-footer_links > li a {
    font-size: 12px; }
    
    .c-account-page {
    min-height: unset; }
    
    .c-category_card {
    display: flex;
    flex-wrap: wrap;
    height: unset !important; }
    
    .c-category_card_item {
    position: relative;
    flex-basis: 100%;
    max-width: 100%;
    right: unset !important;
    top: unset !important;
    margin: 7px 10px;
    padding: 0;
    border: 1px solid #e5e5e5; }
    
    .c-category_card_img {
    display: none; }
    
    .c-category_card_title {
    position: relative;
    width: 100%;
    background: transparent;
    color: #000;
    border-bottom: 1px solid #e5e5e5; }
    
    .page-row {
    flex-wrap: wrap; }
    
    .c-cart_page-content {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0; }
    
    .c-checkout_row {
    flex-wrap: wrap; }
    
    .c-checkout_col-desc {
    flex-basis: 77%;
    max-width: 77%; }
    
    .c-checkout_gurantee {
    display: none; }
    
    .c-checkout_btn-remove {
    display: none; }
    
    .c-checkout_col-thumb {
    padding-right: 0;
    flex-basis: 23%;
    max-width: 23%;
    padding-left: 5px; }
    .c-checkout_col-thumb img {
    max-width: 100%; }
    
    .c-checkout_title {
    font-size: 14px;
    margin-bottom: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; }
    
    .c-checkout_col-information {
    flex-basis: 100%;
    max-width: 100%;
    margin-top: 10px; }
    .c-checkout_col-information .c-checkout_col {
    flex-basis: unset;
    max-width: unset;
    width: unset;
    margin-left: 7px; }
    
    .c-checkout_col-counter {
    flex-direction: row; }
    .c-checkout_col-counter > span {
    margin-left: 5px; }
    
    .c-checkout_row-inner {
    justify-content: flex-end;
    align-items: center; }
    
    .c-checkout_price {
    font-size: 14px;
    color: #fb3449;
    padding-right: 5px; }
    
    .c-checkout_col-remove {
    border: 1px solid #979797;
    padding: 4px 13px 3px;
    border-radius: 4px;
    text-align: center;
    color: #969696; }
    
    .c-footer_feature {
    display: none; }
    
    .c-cart_page-aside {
    max-width: 100%;
    flex-basis: 100%;
    padding-right: 0; }
    
    .c-checkout_aside {
    margin-top: 10px;
    margin-bottom: 10px;
    z-index: 1000; }
    
    .c-checkout_summary-ul > li:last-child {
    display: none; }
    
    .c-tooltip {
    display: none; }
    
    .btn-submit_content {
    position: fixed;
    display: flex;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 10px 8px;
    background-color: #f9f9f9;
    z-index: 1000; }
    
    .removebeofore::before {
    content: ""; }
    
    .mobile-main_menu-subcategory::before {
    content: ""; }
    
    .removebeofore {
    display: inline; }
    
    .btn-submit {
    padding: 14px !important;
    font-size: 15px !important;
    letter-spacing: 1px; }
    .btn-submit::after {
    content: unset !important; }
    .btn-submit::before {
    content: unset !important; }
    
    .cart-page {
    padding: 50px; }
    
    .c-checkout_page {
    padding-top: 0; }
    .c-checkout_page .c-header {
    position: relative; }
    
    .c-checkout_steps {
    width: 100%;
    left: unset;
    transform: unset; }
    .c-checkout_steps li {
    width: 100%;
    display: flex;
    justify-content: center; }
    .c-checkout_steps li::before {
    width: 100%;
    right: -50%;
    left: unset; }
    
    .c-checkout_steps-item::before {
    font-size: 11px; }
    
    .c-checkout_contact-badge {
    display: none; }
    
    .c-checkout_contact-cotent {
    padding: 13px 8px 8px 2px; }
    
    .c-checkout_contact-item_mobile {
    font-size: 12px; }
    
    .c-checkout_contact-item_post-code {
    font-size: 12px; }
    
    .c-checkout_contact-loaction_edit-btn {
    position: relative;
    top: unset;
    left: unset;
    margin-bottom: 10px;
    margin-right: auto;
    display: block;
    margin-left: 10px; }
    
    .c-form_address-col_half {
    flex-basis: 100%;
    max-width: 100%; }
    
    .div1 {
    display: block; }
    
    .c-form_address-col_submit {
    max-width: 100%;
    flex-basis: 100%; }
    
    .c-remodal_checkout .btn-submit {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px; }
    
    .c-form_address-col_return {
    max-width: 100%;
    flex-basis: 100%;
    justify-content: center;
    margin-top: 10px; }
    
    .c-checkout_swiper-product_amount {
    display: flex;
    background-color: #00bfd6;
    color: #fff;
    position: absolute;
    height: 24px;
    width: 24px;
    left: 15px;
    top: 5px;
    z-index: 2;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    padding-top: 3px; }
    
    .c-checkout_product-content .c-swiper_title {
    display: none; }
    
    .c-checkout_paymethod-item_cash::before {
    content: unset; }
    
    .c-checkout_paymethod-item {
    padding: 16px 39px 38px 8px; }
    .c-checkout_paymethod-item .c-radio {
    right: 15px;
    top: 20px; }
    
    .c-checkout_paymethod-title {
    font-size: 14px;
    font-weight: 500; }
    
    .c-checkout_paymethod-providers {
    flex-direction: column; }
    
    .c-checkout_order-summary {
    padding: 0; }
    
    .c-checkout_order-summary_header {
    pointer-events: none;
    border: none !important;
    background: transparent; }
    .c-checkout_order-summary_header::before {
    content: unset; }
    
    .c-checkout_order-summary_content {
    display: block;
    padding: 10px; }
    .c-checkout_order-summary_content .c-swiper {
    border: none; }
    .c-checkout_order-summary_content .c-swiper_slide {
    border: 1px solid #e5e5e5;
    margin-left: 10px;
    height: unset; }
    
    .c-checkout_order-summary_col:not(:nth-child(1)) {
    display: none; }
    
    .c-checkout_price-options_continer {
    padding: 5px 5px 26px;
    margin-bottom: 10px; }
    
    .c-checkout_price-options_header > span:first-of-type {
    font-size: 15px; }
    
    .c-checkout_price-options_desc {
    display: none; }
    
    .c-checkout_price-options_fields {
    width: 100%; }
    .c-checkout_price-options_fields .selectric-wrapper {
    display: none; }
    .c-checkout_price-options_fields .c-input {
    border-radius: 5px;
    width: 95%;
    font-size: 12px; }
    .c-checkout_price-options_fields .btn-primary {
    font-size: 12px;
    padding: 12px 6px;
    border-radius: 5px;
    border: none; }
    
    .c-checkout_price-options_button {
    width: 100%; }
    
    .footer-pad {
    padding-bottom: 50px; }
    
    .c-remodal_gallery {
    height: 65vh; }
    .c-remodal_gallery .c-slider_dots {
    width: 105px !important;
    display: inline-flex; }
    .c-remodal_gallery .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background-color: #d8d8d8;
    opacity: 1; }
    .c-remodal_gallery .swiper-pagination-bullet-active {
    background-color: gray; }
    
    .c-remodal_gallery-main {
    flex-wrap: wrap; }
    
    .c-remodal_gallery-content {
    flex-basis: 100%;
    max-width: 100%; }
    
    .c-remodal_gallery-aside {
    display: none; }
    
    .c-product {
    flex-wrap: wrap; }
    
    .c-product_gallery {
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    background-color: #fff; }
    
    .in-desktop {
    display: none; }
    
    .c-product_headline .in-mobile {
    display: inline-flex;
    flex-wrap: wrap;
    padding: 9px 15px; }
    
    .c-product_headline span {
    line-height: 1.75;
    color: #707070; }
    
    .btn-option_stats {
    display: none; }
    
    .c-product_title {
    font-size: 14px;
    color: #2a2a2a;
    line-height: 1.7; }
    
    .c-product_info {
    padding: 0 10px;
    background-color: #fff; }
    
    .c-product_config {
    flex-basis: 100%;
    padding: 12px 0 0 10px; }
    
    .c-product_params {
    display: none; }
    
    .c-product_price-question {
    display: none; }
    
    .btn-add_cart {
    padding: 14px 20px;
    border: unset;
    max-width: unset; }
    .btn-add_cart::before {
    content: unset; }
    
    .btn-add_cart-text::before {
    content: unset; }
    
    .btn-add_cart-text::after {
    content: unset; }
    
    .c-product_price-value {
    font-size: 24px; }
    
    .c-product_price-discount {
    padding: 0 13px;
    height: 27px; }
    
    .c-product_feature-col {
    flex-basis: 25%;
    max-width: 25%; }
    .c-product_feature-col:nth-child(2) {
    display: none; }
    
    .c-product_feature-body {
    padding: 0; }
    .c-product_feature-body .c-product_feature {
    font-size: 10px;
    line-height: 1.8;
    height: unset;
    padding: 10px 0; }
    
    .c-product_feature-item {
    background-size: auto 40px;
    padding: 45px 5px 0;
    background-position: 50% 0;
    text-align: center; }
    
    .c-box_suppliers-headline {
    padding-right: 42px;
    margin: 12px 0 11px; }
    .c-box_suppliers-headline > span {
    font-size: 14px; }
    .c-box_suppliers-headline::before {
    font-size: 18px; }
    
    .c-box_suppliers .c-box {
    background: transparent; }
    
    .c-table_suppliers-head {
    display: none; }
    
    .c-table_suppliers-row {
    flex-wrap: wrap;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.09); }
    
    .c-table_suppliers-main .c-table_suppliers-row:nth-child(2n) .c-table_suppliers-cell {
    background: #fff; }
    
    .c-table_suppliers-main .c-table_suppliers-cell_title {
    font-size: 14px;
    width: 100%;
    max-width: unset; }
    
    .c-table_suppliers-cell {
    flex-basis: 100%;
    max-width: 100%;
    padding: 8px 11px !important;
    border-bottom: 1px solid #ededed; }
    
    .c-table_suppliers-line {
    display: inline-flex !important;
    font-size: 12px !important;
    margin-right: 10px;
    color: #515151 !important; }
    
    .c-table_suppliers-price {
    color: #fb3459; }
    
    .in-mobile {
    display: block; }
    
    .c-tabs_content {
    padding: 0; }
    
    .c-box_tabs-tab {
    background-color: #f8f8f8;
    border-left: none;
    list-style: none; }
    .c-box_tabs-tab a {
    border: 1px solid #dfdfdf; }
    
    .c-params_headline {
    font-size: 15px;
    color: #000;
    line-height: 2;
    padding: 5px 10px; }
    .c-params_headline > span {
    font-size: 12px;
    color: #000;
    letter-spacing: normal; }
    
    .c-tabs_content-desc_summary {
    padding: 10px;
    margin-right: 0;
    margin-left: 0;
    font-size: 12px;
    line-height: 1.833;
    color: #858585; }
    .c-tabs_content-desc_summary::before {
    content: unset; }
    
    .c-mask_text.is-active {
    padding: 0 0 30px; }
    
    .c-tabs_content-desc_stats {
    flex-wrap: wrap;
    margin: 0; }
    
    .c-tabs_content-desc_stats-aside {
    flex-basis: 100%;
    max-width: 100%; }
    
    .c-tabs_content-desc_rating {
    background-color: #fff; }
    .c-tabs_content-desc_rating > li {
    margin-right: 0;
    margin-left: 0; }
    .c-tabs_content-desc_rating > li .cell {
    padding-right: 0;
    padding-left: 0; }
    .c-tabs_content-desc_rating > li .cell:first-child {
    flex-basis: 50%;
    max-width: 50%;
    font-size: 12px; }
    .c-tabs_content-desc_rating > li .cell:last-child {
    flex-basis: 50%;
    max-width: 50%; }
    
    .c-rating[data-rate]::before {
    content: unset; }
    
    .c-tabs_content-desc_stats-evaluation {
    display: block; }
    
    .c-tabs_content-desc_stats-evaluation_positve {
    padding-right: 20px;
    flex-basis: 100%;
    max-width: 100%; }
    .c-tabs_content-desc_stats-evaluation_positve span {
    font-size: 13px;
    border-bottom: 1px solid #e5e5ea;
    padding: 3px 0 5px 10px; }
    
    .c-tabs_content-desc_stats-evaluation_negative {
    padding-right: 20px;
    flex-basis: 100%;
    max-width: 100%; }
    .c-tabs_content-desc_stats-evaluation_negative span {
    font-size: 13px;
    border-bottom: 1px solid #e5e5ea;
    padding: 3px 0 5px 10px; }
    
    .c-tabs_content-desc_review {
    font-size: 12px;
    line-height: 1.833;
    padding: 15px;
    color: #858585; }
    
    .c-tabs_content-desc_articles {
    margin-top: 7px; }
    
    .c-tabs_content-desc_article {
    padding-right: 33px;
    padding-left: 10px; }
    
    .c-tabs_content-desc_article-button {
    color: #00bfd6;
    background: transparent;
    border-radius: 50%;
    border: 2px solid #00bfd6;
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 8px;
    top: 12px; }
    .c-tabs_content-desc_article-button::before {
    font-size: 9px; }
    
    .c-tabs_content-desc_article-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 2; }
    
    .c-tabs_content-desc_article-text {
    font-size: 12px;
    line-height: 1.571;
    color: #858585; }
    
    .c-tabs_content-desc_article-blockquote {
    font-size: 12px;
    padding: 5px 50px 5px 45px;
    margin-bottom: 5px; }
    .c-tabs_content-desc_article-blockquote::before {
    background-size: 100%;
    height: 30px;
    width: 30px;
    right: 8px;
    top: 0; }
    .c-tabs_content-desc_article-blockquote::after {
    background-size: 100%;
    height: 30px;
    width: 30px;
    left: 8px;
    bottom: 0; }
    
    .c-tabs_content-desc_article-img {
    margin: 10px 0; }
    
    .c-prop_list {
    margin-bottom: 30px; }
    .c-prop_list li {
    flex-wrap: wrap; }
    
    .c-prop_list-name {
    flex-basis: 100%;
    max-width: 100%; }
    
    .c-prop_list-value {
    flex-basis: 100%;
    max-width: 100%; }
    .c-prop_list-value .c-prop_list-span {
    background-color: #fff; }
    
    .c-prop_list-span {
    background-color: #f1f1f1;
    padding: 5px 9px;
    font-size: 14px;
    color: #2a2a2a; }
    
    .c-tabs_content-comments_summary {
    display: none; }
    
    .c-tabs_content-comments_headline {
    display: none; }
    
    .c-tabs_content-comments_headline-action {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    line-height: 1;
    align-items: center; }
    
    .c-tabs_content-comments_headline-btn {
    background-color: #00bfd6;
    color: #fff;
    padding: 9px 35px 9px 15px;
    border-radius: 5px;
    position: relative;
    line-height: 22px; }
    .c-tabs_content-comments_headline-btn::before {
    font-family: mobile-digikala;
    content: "\e050";
    position: absolute;
    right: 12px;
    font-size: 12px; }
    
    .c-tabs_content-comments_filter {
    margin-top: 0; }
    
    .c-faq_filter-title {
    display: none; }
    
    .c-faq_filter-items[data-title]::before {
    display: block;
    font-size: 12px; }
    
    .c-faq_filter-items {
    font-size: 12px;
    margin-right: 3px; }
    .c-faq_filter-items li {
    margin-right: 4px; }
    .c-faq_filter-items li a {
    padding: 11px 3px; }
    
    .c-comment_list {
    margin-top: 0;
    padding-top: 10px;
    background-color: #f5f5f5; }
    .c-comment_list li {
    background-color: #fff;
    border-radius: 9px;
    padding: 0 10px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.09); }
    .c-comment_list li section {
    flex-wrap: wrap;
    margin: 0; }
    
    .c-comment_list-aside {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0; }
    
    .c-comment_list-content {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 10px; }
    .c-comment_list-content p {
    font-size: 12px;
    line-height: 21px;
    color: #858585; }
    
    .c-comment_list-header {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding-bottom: 5px; }
    .c-comment_list-header > div {
    font-size: 14px;
    color: #2a2a2a;
    padding-top: 10px;
    letter-spacing: -.5px;
    font-weight: 700; }
    .c-comment_list-header > div > span {
    font-size: 12px;
    font-weight: 300;
    color: #424242; }
    
    .mobile-c-comment_user-purchased {
    position: relative;
    display: block;
    height: 70px;
    width: 46px;
    padding-top: 35px !important;
    font-size: 12px !important;
    text-align: center;
    color: #64d979 !important; }
    .mobile-c-comment_user-purchased::before {
    position: absolute;
    content: "";
    height: 23px;
    width: 26px;
    top: 12px; }
    
    .c-comment_user-shopping > li {
    display: flex;
    margin: 0; }
    
    .c-comment_list-aside_row {
    margin-right: 10px;
    margin-left: 0;
    color: #2a2a2a;
    display: flex;
    align-items: center; }
    
    .c-comment_list-footer {
    position: relative;
    left: unset; }
    
    .c-comments_likes {
    letter-spacing: -.5px;
    color: #2a2a2a; }
    
    .btn-like {
    border: 1px solid #00bfd6;
    color: #00bfd6; }
    
    .btn-like[data-counter]::before {
    color: #00bfd6; }
    
    .btn-dislike {
    border: 1px solid #ef5661;
    color: #ef5661; }
    
    .btn-dislike[data-counter]::before {
    color: #ef5661; }
    
    .c-comment_evaluation {
    flex-wrap: wrap; }
    
    .c-comment_evaluation-positve {
    flex-basis: 100%;
    max-width: 100%;
    display: block;
    padding-left: 10px;
    padding-right: 20px; }
    .c-comment_evaluation-positve span {
    font-size: 12px;
    border-bottom: 1px solid #e5e5e5;
    padding: 3px 0 5px 55px;
    margin-bottom: 5px;
    display: block; }
    .c-comment_evaluation-positve ul li {
    font-size: 12px;
    padding-right: 11px; }
    .c-comment_evaluation-positve ul li::before {
    height: 4px;
    width: 4px;
    border-radius: 50%; }
    
    .c-comment_evaluation-negative {
    flex-basis: 100%;
    max-width: 100%;
    display: block;
    padding-left: 10px;
    padding-right: 20px; }
    .c-comment_evaluation-negative span {
    font-size: 12px;
    border-bottom: 1px solid #e5e5e5;
    padding: 3px 0 5px 55px;
    margin-bottom: 5px;
    display: block; }
    .c-comment_evaluation-negative ul li {
    font-size: 12px;
    padding-right: 11px; }
    .c-comment_evaluation-negative ul li::before {
    height: 4px;
    width: 4px;
    border-radius: 50%; }
    
    .c-faq_tab-headline {
    font-size: 16px;
    color: #000;
    padding: 5px 10px;
    line-height: 2; }
    .c-faq_tab-headline span {
    font-size: 14px;
    color: #6f6f6f; }
    
    .c-form_faq-row {
    margin-top: 10px;
    margin-right: 0;
    margin-left: 0;
    flex-direction: row-reverse; }
    
    .c-form_faq-col_agreement {
    flex-basis: 70%;
    max-width: 70%;
    padding-right: 40px;
    font-size: 12px;
    line-height: 21px;
    color: #2a2a2a; }
    .c-form_faq-col_agreement .c-checkbox {
    right: 10px; }
    
    .c-form_faq-col_submit {
    flex-basis: 30%;
    max-width: 30%;
    padding-right: 0;
    flex-shrink: 0; }
    
    .btn-primary::after {
    content: unset; }
    
    .c-form_faq .btn-primary {
    font-size: 12px;
    padding: 7px 10px;
    line-height: 25px;
    letter-spacing: -.5px;
    color: #00bfd6;
    border: 1px solid #00bfd6;
    background-color: transparent; }
    
    .c-form_faq-agreement-policy {
    font-size: 12px;
    line-height: 27px;
    color: #858585;
    margin-top: 10px;
    border-top: 1px solid #e5e5e5;
    padding-top: 8px; }
    .c-form_faq-agreement-policy a {
    color: #4a90e2; }
    
    .c-faq_list-content {
    background-color: #f5f5f5;
    padding-top: 10px; }
    
    .c-faq_list {
    margin: 0; }
    .c-faq_list > li {
    margin-right: 0;
    padding: 10px;
    min-height: unset;
    border-radius: 0 !important;
    border: none;
    border-top: 1px solid #dbdbdb;
    background: #fff; }
    .c-faq_list > li::before {
    content: unset; }
    .c-faq_list > li::after {
    content: unset; }
    
    .c-faq_header {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
    margin: 0 0 8px;
    font-weight: 700;
    padding: 0 46px 0 0; }
    .c-faq_header::before {
    font-family: mobile-digikala;
    left: unset;
    top: 8px; }
    .c-faq_header::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    border: 1px solid #929292;
    display: block; }
    .c-faq_header p {
    font-size: 12px;
    color: #424242;
    text-align: right; }
    .c-faq_header p span {
    display: inline-block;
    margin-left: 5px; }
    .c-faq_header p span:first-child {
    display: block;
    color: #2a2a2a; }
    
    .c-faq_header-question::before {
    content: "\e053";
    font-size: 20px;
    transform: rotateY(180deg);
    right: 13px;
    color: #979797; }
    
    .c-faq_header-answer::before {
    content: "\e019";
    font-size: 15px;
    color: #64d979;
    transform: unset;
    right: 8px; }
    
    .c-faq_header-answer::after {
    border: 1px solid #64d979; }
    
    .c-faq_content {
    font-size: 12px;
    line-height: 1.833;
    color: #858585; }
    
    .c-faq_footer {
    position: relative;
    padding: 10px 0;
    bottom: unset;
    display: flex;
    justify-content: flex-end; }
    .c-faq_footer a {
    font-size: 12px; }
    
    .c-faq_answer-col_rules {
    display: none; }
    
    .c-faq_answer-col_form {
    padding-right: 0;
    padding-left: 0;
    flex-basis: 100%;
    max-width: 100%; }
    .c-faq_answer-col_form > span {
    font-size: 14px;
    margin-bottom: 0;
    color: #2a2a2a;
    letter-spacing: -.5px;
    font-weight: 700; }
    
    .c-faq_form-answer .c-textarea {
    height: 195px; }
    
    .c-faq_answer-btn {
    font-size: 12px;
    padding: 7px 10px;
    line-height: 25px;
    letter-spacing: -.5px;
    color: #00bfd6;
    border: 1px solid #00bfd6;
    background-color: transparent; }
    
    .c-faq_form-answer_col-submit {
    display: flex;
    align-items: center; }
    
    .c-faq_form-answer_col-agreement {
    flex-basis: 71%;
    max-width: 71%;
    font-size: 13px;
    color: #858585;
    font-weight: 400;
    padding-right: 0;
    padding-left: 0; }
    
    .c-comment_product-col_img {
    display: none; }
    
    .c-comment_product-col_info {
    flex-basis: 100%;
    max-width: 100%;
    padding: 10px;
    background: #fff; }
    
    .c-comment_product-title {
    font-size: 14px;
    color: #2a2a2a;
    line-height: 20px; }
    
    .c-comment_product-attributes {
    padding: 5px 10px 0 0 8px; }
    
    .c-comment_product-attributes_row {
    flex-wrap: wrap;
    margin-right: 0;
    margin-left: 0;
    margin-top: 0; }
    
    .c-comment_product-attributes_col {
    flex-basis: 100%;
    max-width: 100%;
    padding-right: 4px;
    padding-left: 0;
    margin-top: 20px; }
    
    .c-comment_product-attributes-title {
    font-size: 12px;
    line-height: 1; }
    
    .c-rating_slider::before {
    margin-right: 10px;
    font-size: 12px; }
    
    .c-comment_add-col_content {
    display: none; }
    
    .c-comment_add {
    border-top: 1px solid #e5e5e5;
    margin-top: 10px; }
    
    .c-comment_add-col_form {
    flex-basis: 100%;
    max-width: 100%;
    padding: 10px; }
    
    .c-form_comment-title {
    font-size: 13px; }
    
    .c-form_comment-row {
    flex-wrap: wrap; }
    
    .b {
    display: none; }
    @media screen and (max-width: 900px) {
    .b {
    display: flex; } }
    
    .b2 {
    left: -3px; }
    
    body {
    overflow: unset; }
    
    
    /*# sourceMappingURL=main.e9475bd51203490f8cef.bundle.css.map*/
    
    .user-profile-orders-tabs ul {
    border-bottom: 1px solid #ececec
    }
    
    .user-profile-orders-tabs ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    color: #818894;
    font-size: 14px
    }
    
    .user-profile-orders-tabs ul li a .count {
    display: inline-flex;
    min-width: 20px;
    height: 22px;
    justify-content: center;
    align-items: center;
    padding: 2px 4px;
    background-color: #a1a3a8;
    color: #fff;
    font-size: 11px;
    line-height: 22px;
    font-weight: 500;
    border-radius: 5px;
    margin-right: 8px
    }
    
    .user-profile-orders-tabs ul li.active {
    border-bottom: 3px solid #43d477
    }
    
    .user-profile-orders-tabs ul li.active a {
    color: #43d477
    }
    
    .user-profile-orders-tabs ul li.active a .count {
    background-color: #43d477
    }
    
    .user-profile-orders-tabs .orders-tab-content {
    margin: 15px 0;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 25px
    }
    
    .user-profile-orders-tabs .orders-tab-content .order-products .order-products-item {
    width: 64px;
    height: 64px;
    margin-left: 16px;
    display: block;
    border-radius: 10px
    }
    
    .user-profile-orders-tabs .orders-tab-content .order-products .order-products-item img {
    width: 100%;
    max-width: 100%;
    border-radius: 10px
    }
    
    .user-profile-side .user-profile-side-avatar {
    width: 40px;
    height: 40px;
    border: 1px solid #ececec;
    border-radius: 50px
    }
    
    .user-profile-side .user-profile-side-avatar img {
    border-radius: 50px
    }
    
    
    /*# sourceMappingURL=main.9922f3037aa84310bcd1.bundle.css.map*/
    
    .btn-file {
    position: relative;
    overflow: hidden;
    vertical-align: middle;
    }
    .btn-file > input {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    font-size: 23px;
    cursor: pointer;
    filter: alpha(opacity=0);
    opacity: 0;
    
    direction: ltr;
    }
    .fileinput {
    display: inline-block;
    margin-bottom: 9px;
    }
    .fileinput .form-control {
    display: inline-block;
    padding-top: 7px;
    padding-bottom: 5px;
    margin-bottom: 0;
    vertical-align: middle;
    cursor: text;
    }
    .fileinput .thumbnail {
    display: inline-block;
    margin-bottom: 5px;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    }
    .fileinput .thumbnail > img {
    max-height: 100%;
    }
    .fileinput .btn {
    vertical-align: middle;
    }
    .fileinput-exists .fileinput-new,
    .fileinput-new .fileinput-exists {
    display: none;
    }
    .fileinput-inline .fileinput-controls {
    display: inline;
    }
    .fileinput-filename {
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    }
    .form-control .fileinput-filename {
    vertical-align: bottom;
    }
    .fileinput.input-group {
    display: table;
    }
    .fileinput.input-group > * {
    position: relative;
    z-index: 2;
    }
    .fileinput.input-group > .btn-file {
    z-index: 1;
    }
    .fileinput-new.input-group .btn-file,
    .fileinput-new .input-group .btn-file {
    border-radius: 0 4px 4px 0;
    }
    .fileinput-new.input-group .btn-file.btn-xs,
    .fileinput-new .input-group .btn-file.btn-xs,
    .fileinput-new.input-group .btn-file.btn-sm,
    .fileinput-new .input-group .btn-file.btn-sm {
    border-radius: 0 3px 3px 0;
    }
    .fileinput-new.input-group .btn-file.btn-lg,
    .fileinput-new .input-group .btn-file.btn-lg {
    border-radius: 0 6px 6px 0;
    }
    .form-group.has-warning .fileinput .fileinput-preview {
    color: #8a6d3b;
    }
    .form-group.has-warning .fileinput .thumbnail {
    border-color: #faebcc;
    }
    .form-group.has-error .fileinput .fileinput-preview {
    color: #a94442;
    }
    .form-group.has-error .fileinput .thumbnail {
    border-color: #ebccd1;
    }
    .form-group.has-success .fileinput .fileinput-preview {
    color: #3c763d;
    }
    .form-group.has-success .fileinput .thumbnail {
    border-color: #d6e9c6;
    }
    .input-group-addon:not(:first-child) {
    border-left: 0;
    }