:root {
    --white: #fff;
    --green: #4caf50;
    --blue: #2896f3;
    --yellow: #fbc107;
    --red: #f55153;
    --transition-duration: 0.25s;
    --slider-width: 40px;
    --animation-time: 300ms;
    --animation-style: ease-in-out;
    --circle-color: rgb(96, 96, 96);
    --circle-checked-color: rgb(140, 140, 140);
    --slider-background-color: rgb(58, 58, 58);
    --slider-checked-background-color: rgb(75, 125, 50);
} 

.wizard-form-radio {
    display: inline-block;
    position: relative;
}

.wizard-form-radio input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-color: #dddddd;
    height: 25px;
    width: 25px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.wizard-form-radio input[type="radio"]:focus {
    outline: 0;
}

.wizard-form-radio input[type="radio"]:checked {
    background-color: #1b7cc0;
}

.wizard-form-radio input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #ffffff;
    border-radius: 50%;
    left: 1px;
    right: 0;
    margin: 0 auto;
    top: 8px;
}

.wizard-form-radio input[type="radio"]:checked::after {
    content: "";
    display: inline-block;
    -moz-animation: click-radio-wave 0.65s;
    animation: click-radio-wave 0.65s;
    background: #000000b8;
    content: '';
    position: relative;
    z-index: 100;
    border-radius: 50%;
}

.wizard-form-radio input[type="radio"]~label {
    padding-left: 5px;
    cursor: pointer;
}

@keyframes click-radio-wave {
    0% {
        width: 25px;
        height: 28px;
        opacity: 0.35;
        position: relative;
    }
    100% {
        width: 60px;
        height: 60px;
        margin-left: -15px;
        margin-top: -15px;
        opacity: 0.0;
    }
}

.error-text {
    color: red;
    font-size: 13px;
}

.btn-form-plus {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    font-size: 25px;
    text-align: center;
    user-select: none;
    background-color: #000;
    padding: 2px 15px 4px 15px;
    line-height: 27px;
    border-radius: 5px;
}

.btn-form-mines {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    font-size: 25px;
    text-align: center;
    user-select: none;
    background-color: #d32020;
    padding: 2px 18px 8px 18px;
    line-height: 27px;
    border-radius: 5px;
}

.toasts-container {
    position: fixed;
    top: 3.5rem;
    right: 2.5rem;
    z-index: 100;
}

.toasts-container .toast {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 30rem;
    min-width: 18rem;
    background-color: #121212;
    border-radius: 1.2rem;
    padding: 10px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(100%);
    animation: toast-opening var(--transition-duration) ease-in-out forwards;
    overflow-x: hidden;
}

.toasts-container .toast:not(.active) {
    animation-name: toast-closing;
    animation-duration: 0.35s;
}

.toasts-container .toast .t-icon {
    margin-right: 2.4rem;
}

.toasts-container .toast .t-icon svg {
    fill: #fff;
    width: 1.8rem;
    height: 1.8rem;
}

.toasts-container .toast .t-message {
    margin-right: 2.4rem;
    color: #fff;
    line-height: 2rem;
    font-size: 18px;
}

.toasts-container .toast .t-close svg {
    fill: #fff;
    opacity: 1;
    width: 1rem;
    height: 1.8rem;
    transition: opacity var(--transition-duration);
    cursor: pointer;
}

@media (hover: hover) {
    .toasts-container .toast .t-close svg {
        opacity: 0.5;
    }
}

.toasts-container .toast .t-close:hover svg {
    opacity: 1;
}

.toasts-container .toast .t-progress-bar {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    border-radius: 0 0 0 0.5rem;
    background-color: rgba(255, 255, 255, 0.5);
    animation: progress-bar-animation linear forwards 3000ms;
    transform-origin: left;
}

.toasts-container .toast .t-progress-bar.t-5000 {
    animation-duration: 5000ms;
}

.toasts-container .toast.system {
    background: #4caf50;
}

@keyframes toast-opening {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0%);
    }
}

@keyframes toast-closing {
    0% {
        opacity: 1;
        transform: translateX(0%);
    }
    75% {
        max-height: 15rem;
        padding: 2.4rem;
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        max-height: 0;
        padding: 0;
        transform: translateX(100%);
    }
}

@keyframes progress-bar-animation {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}
.main-form-campaign label {
    margin-bottom: 5px;
    font-size: 15px;
}
#active-table .modal-body{
    float: left;
    text-align: left;
}

input.slider {
  position: absolute;
  transform: translateX(-1000vw);
}

input.slider + label {
  transition: var(--animation-time) var(--animation-style);
  display: inline-block;
  width: 48px;
  padding: 3px;
  cursor: pointer;
  aspect-ratio: 2 / 1;
  background-color: rgb(202 212 223);
  border-radius: 1000vw;
  margin-bottom: -8px;
  margin-left: 15px;
}

input.slider + label::before {
  content: "";
  transition: var(--animation-time) var(--animation-style);
  display: block;
  width: calc(var(--slider-width) / 2);
  aspect-ratio: 1 / 1;
  background-color: var(--circle-color);
  border-radius: 1000vw;
}

input.slider:checked + label {
  background-color: rgb(40 167 69);
}

input.slider:checked + label::before {
  transform: translateX(calc(var(--slider-width) / 2));
  background-color: #ffffffcf;
}

.modal-body .form-group {
    color: #333333d4;
    font-size: 15px;
}

@media (min-width: 576px){
    .modal-dialog {
        max-width: 430px;
    }
}
#active-table.modal {
    top: 20%;
}
.coupon-link-list li{
    display: inline-block;
}
.coupon-link-list li .btn {
    padding: 7px 15px;
}

#cop-new-chnages{
    padding: 6px 20px 60px;
    position: relative;
    width: 142px;
    text-align: center;
    border-radius: 4px;
    background: #014924 url(https://goodwillspeedscan.in/public/coupon/img/Background_shape.webp);
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
    height: 100%;
    margin: 0px;
    margin-bottom: 18px;
    margin-right: 12px;
    
    display: inline flow-root list-item;
    list-style: none;
}
.couponcontainer span svg {
  z-index: 9999;
}
.couponcontainer {
    position: relative;
    padding: 0px 0px;
    display: inline;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}
#cop-new-chnages .logo {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0;
}

#cop-new-chnages .logo a {
    position: relative;
}
#cop-new-chnages .logo a img {
    width: 40%;
    margin: 0 auto;
    padding: 0;
    display: inline-block;
    height: 100%;
}
#cop-new-chnages h4,
#cop-new-chnages h5 {
    color: #fff;
    font-size: 7px;
    line-height: 10px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}
#cop-new-chnages .scan {
    position: relative;
    margin: 0px auto 0px;
    padding: 0px;
    display: inline-block;
    width: 100%;
    float: left;
}
#cop-new-chnages .scan .qr-code {
    margin: 0px auto;
    display: inline-block;
    width: 40%;
    position: relative;
}

#cop-new-chnages .scan .qr-code img {
    width: 100%;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
    z-index: 2;
}
#cop-new-chnages .scan .qr-code:after,
#cop-new-chnages .scan .qr-code span:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    /*border: unset;*/
    /*border-left: 2px solid #ead9da;*/
    width: 25px;
    height: 25px;
    /*border-top: 2px solid #ead9da;*/
}
#cop-new-chnages .scan .qr-code:before,
#cop-new-chnages .scan .qr-code span:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
   /* border: unset;*/
    /*border-right: 2px solid #ead9da;*/
    width: 25px;
    height: 25px;
    /*border-top: 2px solid #ead9da;*/
    z-index: 1;
}
#cop-new-chnages .scan .qr-code span {
    position: relative;
    margin: 0;
    padding: 3px 0px 0px;
    width: 100%;
    height: 100%;
    display: inline-block;
    box-sizing: border-box;
}
#cop-new-chnages .scan .qr-code span:after {
    bottom: 0;
    top: unset;
   /* border-top: unset;*/
    /*border-bottom: 2px solid #ead9da;
    border-left: 2px solid #ead9da;*/
}
#cop-new-chnages .scan .qr-code span:before {
    top: unset;
   /* border-top: unset;*/
    /*border-bottom: 2px solid #ead9da;
    border-right: 2px solid #ead9da;*/
    bottom: 0;
}
#cop-new-chnages span.Qr-code-text,#cop-new-chnages  span.price-text-cou {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

#cop-new-chnages span.Qr-code-text strong {
    color: #fff;
    font-size: 7px;
    line-height: 9px;
    font-weight: normal;
    margin: 3px 0px 3px;
    padding: 0;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: 0.8px;
    width: 100%;
    display: block;
}

#cop-new-chnages  span.price-text-cou strong{ 
    color: #fff;
    font-size: 12px;
    line-height: 9px;
    font-weight: normal;
    margin: 0px 0px 6px;
    padding: 0;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: 0.8px;
    width: 100%;
    display: inline-block;
}
#cop-new-chnages span.expiry {
    color: #fff;
    bottom: 100px;
}
#cop-new-chnages span.expiry.helpline {
    bottom: 50px !important;
    position: absolute;
    transform: unset;
    writing-mode: tb;
    width: auto;
    left: unset;
    right: 4px;
    font-size: 7px;
    font-weight: 500;
    font-family: 'Roboto';
    letter-spacing: 0.8px;

}
.expiry.helpline.yellow {
    right: -50px !important;
    width: max-content;
    left: unset !important;
    bottom: 135px;
}
#cop-new-chnages .logo.logo2 {
    position: absolute !important;
    top: 2% !important;
    left: -2% !important;
    margin: 0 !important;
    z-index: 9;
    width: 50px !important;
}
#cop-new-chnages  .logo.logo2 a {
    width: 100%;
    margin: 0;
    padding: 0;
    display: inline-block !important;
    position: relative !important;
    height: 100% !important;
}
#cop-new-chnages  .logo.logo2 a img {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
}

.couponcontainer .coupon {
  display: inline-block;
  margin-bottom: 15px;
  margin-right: 12px;
  position: relative;
  width: 200px;
  text-align: center;
  padding-bottom: 10px;
}
.couponcontainer span {
  display: block;
  text-align: center;
}
.coupon img {
  width: 50px;
  margin: 10px;
}
.coupon .code {
  font-size: 6px;
  margin: 0 auto;
  background: #fff;
  width: 100px;
  max-width: 140px;
  border-radius: 30px;
  padding: 3px;
}
.coupon .expiry {
  position: absolute;
  bottom: 51px;
  left: 10px;
  transform-origin: 0 0;
  transform: rotate(90deg);
  font-size: 5px;
}
.howto {
  font-size: 7px;
  text-align: left;
  margin: 5px 10px 0px 20px;
}
.gpplay img {
  position: absolute;
  right: 0px;
  width: 37px;
}
.price {
  margin: 5px;
}
#old-coup {
  width: 180px;
  margin-bottom: 15px;
}
#old-coup .logo {
  padding-top: 20px;
}
#old-coup .logo img {
  margin: 0;
  padding: 0;
}
#old-coup p {
  padding: 0;
  margin: 0;
  line-height: 13px;
}
#old-coup  .scan-bar-old {
  margin-bottom: 5px;
}
#old-coup  .price {
  margin: 0;
  padding: 0;
  margin-top: 5px;
}

#view_coupon #cop-new-chnages {
    width: 100%;
    margin-bottom: 0;
    padding: 6px 20px 120px;
}

#view_coupon .modal {
    top: 13%;
}

.user-form-list .wizard-form-radio {
    border: 1px solid #33333370;
    display: flex;
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
}

.user-form-list label {
        width: 100%;
    height: 100%;
    display: inline-block;
    cursor: pointer;
    position: relative;
    margin: 0;
    padding: 0px 10px;
}

.otp-container {
    display: inline-block;
    text-align: center;
}

.otp-container .otp-number-input {
    width: 23%;
    background: #f2f2f2c7 !important;
    border: 1px solid #0000002e !important;
    color: #000 !important;
}

.otp-container .otp-number-input {
    height: 50px;
    margin: 0 2px;
    border: 1px solid rgb(255 255 255 / 0%);
    padding: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    box-shadow: none;
    text-align: center;
    font-weight: 600;
    border-radius: 0;
    outline: 0;
    transition: border 0.3s ease;
}




.add-products-from .full-box-main {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0px 5px;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
    margin-top: 10px;
}

.add-products-from .from-group .custom-file-label:after {
    content: "Browse";
    height: 100%;
    line-height: 30px;
    padding: 2px 10px;
    font-size: 15px;
    font-weight: bold;
    color: #383a40;
    background: #ebebeb;
    font-weight: 500;
}

.add-products-from .form-group {
    margin-bottom: 10px;
}

.add-products-from .tab-content .tab-pane.active {
    display: inline-block;
    left: 0;
    top: 0;
    opacity: 1;
    animation: fadeInRight 0.5s;
    z-index: 9;
}
.add-products-from .tab-content .tab-pane {
    border-radius: 8px;
    padding: 0px !important;
    margin: 0;
    position: relative !important;
    display: none;
    width: 100%;
    height: 100%;
    animation: fadeInRight 0.2s;
    box-sizing: unset;
}

.card-body.add-products-from {
    overflow: hidden;
}

.add-products-from .nav a.show.active {
    padding-left: 20px;
    background: #f2f2f2;
    border-radius: 4px;
    color: #0c101c;
}

.add-products-from .nav-pills .nav-link.active, 
.add-products-from .nav-pills .show>.nav-link {
    color: #333 !important;
    background-color: #1b7cc03d !important;
}
 
.add-products-from .uploader {
  display: block;
  clear: both;
  margin: 0 auto;
  width: 100%;
}

.add-products-from .uploader label {
  width: 100%;
  padding: 15px 20px 10px 20px;
  text-align: center;
  background: #fff;
  border-radius: 7px;
  border: 1px solid #2d2b2b38;
  transition: all 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.add-products-from .uploader label:hover {
  border-color: #2d2b2b38;
}

.add-products-from .uploader label.hover {
  border: 3px solid #454cad;
  box-shadow: inset 0 0 0 6px #eee;
}

.add-products-from .uploader label.hover #start i.fa {
  transform: scale(0.8);
  opacity: 0.3;
}

.add-products-from .uploader #start {
  float: left;
  clear: both;
  width: 100%;
}

.add-products-from .uploader #start.hidden {
  display: none;
}

.add-products-from .uploader #start i.fa {
  font-size: 50px;
  margin-bottom: 1rem;
  transition: all 0.2s ease-in-out;
}

.add-products-from .uploader #response {
  float: left;
  clear: both;
  width: 100%;
}

.add-products-from .uploader #response.hidden {
  display: none;
}

.add-products-from .uploader #response #messages {
  margin-bottom: 0.5rem;
}

.add-products-from .uploader #file-image {
  display: inline;
  margin: 0 auto 0.5rem auto;
  width: 280px;
  height: 300px;
  max-width: 100%;
}

.add-products-from .uploader #file-image.hidden {
  display: none;
}

.add-products-from .uploader #notimage {
  display: block;
  float: left;
  clear: both;
  width: 100%;
}

.add-products-from .uploader #notimage.hidden {
  display: none;
}

.add-products-from .uploader progress,
.add-products-from .uploader .progress {
  display: inline;
  clear: both;
  margin: 0 auto;
  width: 100%;
  max-width: 180px;
  height: 8px;
  border: 0;
  border-radius: 4px;
  background-color: #eee;
  overflow: hidden;
}

.add-products-from .uploader .progress[value]::-webkit-progress-bar {
  border-radius: 4px;
  background-color: #eee;
}

.add-products-from .uploader .progress[value]::-webkit-progress-value {
  background: linear-gradient(to right, #393f90 0%, #454cad 50%);
  border-radius: 4px;
}

.add-products-from .uploader .progress[value]::-moz-progress-bar {
  background: linear-gradient(to right, #393f90 0%, #454cad 50%);
  border-radius: 4px;
}

.add-products-from .uploader input[type=file] {
  display: none;
}

.add-products-from .uploader div {
  margin: 0 0 0.5rem 0;
  color: #2d2b2be0;
}

.add-products-from .uploader .btn {
  display: inline-block;
  margin: 0.5rem 0.5rem 1rem 0.5rem;
  clear: both;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  text-transform: initial;
  border: none;
  border-radius: 0.2rem;
  outline: none;
  padding: 0 1rem;
  height: 36px;
  line-height: 36px;
  color: #fff;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
  background: #454cad;
  border-color: #454cad;
  cursor: pointer;
}

.card-body.main-form-campaign {
    background-color: rgb(255, 255, 255);
    color: rgb(17, 24, 39);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 16px;
    box-shadow: rgb(0 0 0 / 5%) 0 0 20px 3px;
}

.main-form-campaign .form-group {
    margin-bottom: 15px;
}

.main-form-campaign .spacing-5 {
    margin-bottom: 5px;
}

.wizard-form-radio label {
    font-size: 14px;
}

.checkbox-custom input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

#validity-extension {
  position: relative;
  cursor: pointer;
}

 .checkbox-group {
    display: block;
    margin-bottom: 15px;
}

.checkbox-custom label:before {
    content:'';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #1b7cc0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.checkbox-custom input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #1b7cc0;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.footer-btn{
    text-align: center;
}

.footer-btn .nav-link {
    display: inline-block;
}

.card-body.main-form-campaign input.form-control, .card-body.main-form-campaign select.form-control {
    height: 40px!important;
}

.footer-btn .btn-preview {
    background: #5cb85c;
    padding: 7px 40px;
    color: #fff;
    border-radius: 4px;
    font-size: 17px;
    box-shadow: -3px 3px 20px 0px #5cb85c;
}

.footer-btn .btn-save {
    background: #018bed;
    color: #fff;
    padding: 8px 40px;
    border-radius: 4px;
    font-size: 15px;
    margin-left: 40px;
    box-shadow: -3px 3px 20px 0px #598dee9c;
}

button#btn-next-continue {
    background: #1b7cc0 !important;
    padding: 7px 20px;
}

.sidebar-menu-item.active > a i {
    color: #333 !important;
}

.sidebar-menu-item.active > a span.menu-title {
    color: #333 !important;
}

.sidebar-menu-item > a:hover i {
    color: #333 !important;
}

.sidebar-menu-item > a:hover span.menu-title {
    color: #000 !important;
}

.btn--activate{
   background: linear-gradient(228deg,rgb(6 189 19 / 95%),#5bcf8e);
   background-color: #fff;
   font-size: 14px;
   font-weight: 500;
   line-height: 14px;
   border-radius: 23px;
   padding: 5px 17px;
   transition: .3s;
   white-space: nowrap;
   color: #fff !important;
   border: none;
   cursor: pointer;
}
.btn--inactivate{
   background: linear-gradient(228deg,rgb(234 84 85),#ea5455c7);
   background-color: #fff;
   font-size: 14px;
   font-weight: 500;
   line-height: 14px;
   border-radius: 23px;
   padding: 5px 13px;
   transition: .3s;
   white-space: nowrap;
   color: #fff !important;
   border: none;
   cursor: pointer;
}
.footer-img img {
    height: 180px;
}

.bg_img {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 50px 30px;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg_img .logo-main-page {
    width: 600px;
    padding: 20px 30px;
    background-color: #ffffff;
    text-align: center;
    position: relative;
    z-index: 9;
    box-shadow: 0 20px 25px -5px rgb(223 223 223 / 20%), 0 10px 10px -5px rgb(247 247 247 / 28%);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.logo-main-page h4 strong {
    width: 100%;
    display: inherit;
    color: #ed1a21;
}

.form-area.bg_img.ss {
    height: 100vh;
}
.card-body.overflow-none {
    padding: 10px;
}
.activate-popup label{
    display: flow-root;
}
input.form-control.project-value-increment-expiry-date92.float-left {
    width: auto;
}
.activate-popup span {
    font-size: 14px;
    color: #212529;
}
.btn-active-save{
    padding: 4px 10px;
    background: #4fb767;
    color: #fff;
    border-radius: 4px;
}
.coupon-increment {
    margin-bottom: .5rem;
}
.expiry-date {
    display: none;
    border-top: 1px solid #e5e5e5;
    padding-top: 10px;
}
@media (min-width: 576px){
    .modal-information .modal-dialog {
        max-width: 650px;
    }
}

.validity-extension-box .coupon-expire-date93.float-left {
    width: auto;
}
.coupon-increment-promotion-box{
    margin: 10px 0 15px 0;
}
.validity-extension-box {
    margin-top: 5px;
    display: flow-root;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block !important;
  width: 60px;
  height: 25px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cdcdcd;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: #e9e9e9;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #1b7cc0;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(35px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.activate-popup select.form-control {
    height: 28px !important;
    padding: 0 10px;
}

.modal.modal-information {
    top: 10%;
}









.sidebar.capsule--rounded .sidebar__menu > .sidebar-menu-item .sidebar-submenu .sidebar-menu-item:nth-child(1)>a {
    opacity: 0;
    transform: translate(50px);
    -webkit-animation: .2s intro-submenu-animation ease-in-out .33333s;
    animation: .2s intro-submenu-animation ease-in-out .33333s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s
}

.sidebar.capsule--rounded .sidebar__menu > .sidebar-menu-item .sidebar-submenu .sidebar-menu-item:nth-child(2)>a {
    opacity: 0;
    transform: translate(50px);
    -webkit-animation: .2s intro-submenu-animation ease-in-out .33333s;
    animation: .2s intro-submenu-animation ease-in-out .33333s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s
}

.sidebar.capsule--rounded .sidebar__menu > .sidebar-menu-item .sidebar-submenu .sidebar-menu-item:nth-child(3)>a {
    opacity: 0;
    transform: translate(50px);
    -webkit-animation: .2s intro-submenu-animation ease-in-out .33333s;
    animation: .2s intro-submenu-animation ease-in-out .33333s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s
}

.sidebar.capsule--rounded .sidebar__menu > .sidebar-menu-item .sidebar-submenu .sidebar-menu-item:nth-child(4)>a {
    opacity: 0;
    transform: translate(50px);
    -webkit-animation: .2s intro-submenu-animation ease-in-out .33333s;
    animation: .2s intro-submenu-animation ease-in-out .33333s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s
}


.sidebar.capsule--rounded .sidebar__menu > .sidebar-menu-item .sidebar-submenu .sidebar-menu-item:nth-child(5)>a {
    opacity: 0;
    transform: translate(50px);
    -webkit-animation: .2s intro-submenu-animation ease-in-out .33333s;
    animation: .2s intro-submenu-animation ease-in-out .33333s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}



.sidebar.capsule--rounded .sidebar__menu > .sidebar-menu-item .sidebar-submenu .sidebar-menu-item:nth-child(6)>a {
    opacity: 0;
    transform: translate(50px);
    -webkit-animation: .2s intro-submenu-animation ease-in-out .33333s;
    animation: .2s intro-submenu-animation ease-in-out .33333s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s
}


.sidebar.capsule--rounded .sidebar__menu > .sidebar-menu-item .sidebar-submenu .sidebar-menu-item:nth-child(7)>a {
    opacity: 0;
    transform: translate(50px);
    -webkit-animation: .2s intro-submenu-animation ease-in-out .33333s;
    animation: .2s intro-submenu-animation ease-in-out .33333s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s
}


@-webkit-keyframes intro-submenu-animation {
    to {
        opacity: 1
    }
    to {
        transform: translate(0)
    }
}

@keyframes intro-submenu-animation {
    to {
        opacity: 1
    }
    to {
        transform: translate(0)
    }
}
 
.verified-check, .active-check {
    background: #54c76e;
    padding: 5px 10px 5px 5px;
    color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 6px 1px #0000002b;
}
.unverified-check, .block-check, .tatus-check-blocked {
    background: #dc3545;
    padding: 5px 10px 5px 5px;
    color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 6px 1px #0000002b;
}

.status-check-active{
    background: #45c5ff;
    padding: 5px 10px 5px 5px;
    color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 6px 1px #0000002b;
}

.icon-view {
    border-radius: 8px;
    margin-right: 8px;
    color: #1b7cc0;
    font-size: 23px;
    text-align: center;
    font-weight: 900;
    /* padding: 0 5px; */
    border: 1px solid #cfd0df;
}

.icon-view:hover {
    color: #1b7cc0;
}

.icon-view i {
    height: 25px;
    width: 32px;
    line-height: 20px;
    padding: 5px;
}

.icon-delete{
    border-radius: 8px;
    color: #dc3545;
    font-size: 23px;
    text-align: center;
    font-weight: 900;
    border: 1px solid #cfd0df;
}

.icon-delete:hover{
    color: #dc3545;
}
.icon-delete i{
    height: 23px;
    width: 33px;
    line-height: 20px;
    padding: 5px;
    text-align: center;
}
a.btn--custom {
    float: right;
    background: #1b7cc0;
    color: #fff;
    padding: 7px 20px;
    border-radius: 4px;
    font-size: 14px;
}
.sidebar-submenu a.nav-link:hover i {
    color: #fff !important;
}
.sidebar-submenu a.nav-link:hover span {
    color: #fff !important;
}

#DataTables_Table_0_processing {
    top: 0 !important;
    left: 35%  !important;
    width: 400px  !important;
    margin-left: 0  !important;
    margin-top: 0  !important;
    text-align: center  !important;
    padding: 0 0  !important;
    box-shadow: unset !important;
    z-index: 999 !important;
    background: unset !important;
}

#DataTables_Table_0_processing img {
    min-width: 400px  !important;
}
.total-payment-box {
    padding: 15px 15px;
    box-shadow: 0 0 10px 0 #00000040;
    border-radius: 14px;
    webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.total-payment-box:hover {
    -webkit-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    transform: scale(1.04, 1.04);
}
.total-payment-box p {
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: #1b7cc0;
    margin: 5px 0;
}
.total-payment-box h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 5px 0;
}
.total-payment-box h4 {
    font-size: 19px;
    font-weight: 600;
}

/*.page-wrapper {*/
/*    background: #f2f3f96b;*/
/*}*/
.coupon-main {
    margin-bottom: 5px;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    font-size: 24px;
    border-radius: 50%;
}
.coupon-main i{
    line-height: 4rem;
    color: #fff;
}
.desciption span {
    font-size: 18px;
    color: #4f4f4f;
    font-weight: 700;
}
.numbers span.amount {
    font-size: 20px;
    font-weight: 600;
    color: #333333f2;
}
#redeemedpiechart .apexcharts-tooltip-text-label, 
#redeemedpiechart .apexcharts-tooltip-text-value, 
#pendingwithdrawldealerdistpiechart .apexcharts-tooltip-text-label,
#pendingwithdrawldealerdistpiechart  .apexcharts-tooltip-text-value {
    color: #fff !important;
}
.user-list-dropdown h5 {
    font-size: 20px;
    font-weight: 600;
    color: #323232db;
    margin-bottom: 5px;
}
.user-list-dropdown h6 {
    font-size: 17px;
    font-weight: 600;
    color: #323232;
}


.scroll-prompt {
	width: 80px;
	height: auto;
}
.scroll-prompt-arrow-container {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -15px;
	animation-name: bounce;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
}
.scroll-prompt-arrow {
	animation-name: opacity;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
}
.scroll-prompt-arrow:last-child {
	animation-direction: reverse;
	margin-top: 0px;
}
.scroll-prompt-arrow > div {
	width: 15px;
	height: 15px;
	border-right: 3px solid #1b7cc0;
	border-bottom: 3px solid #1b7cc0;
	transform: rotate(225deg) translateZ(1px);
}

@keyframes opacity {
	0% {
		opacity: 0;
	}

	10% {
		opacity: 0.1;
	}

	20% {
		opacity: 0.2;
	}

	30% {
		opacity: 0.3;
	}

	40% {
		opacity: 0.4;
	}

	50% {
		opacity: 0.5;
	}

	60% {
		opacity: 0.6;
	}

	70% {
		opacity: 0.7;
	}

	80% {
		opacity: 0.8;
	}

	90% {
		opacity: 0.9;
	}

	100% {
		opacity: 1;
	}
}

@keyframes bounce {
	0% {
		transform: translateY(30px);
	}

	10% {
		transform: translateY(27px);
	}

	20% {
		transform: translateY(24px);
	}

	30% {
		transform: translateY(21px);
	}

	40% {
		transform: translateY(18px);
	}

	50% {
		transform: translateY(15px);
	}

	60% {
		transform: translateY(13px);
	}

	70% {
		transform: translateY(10px);
	}

	80% {
		transform: translateY(7px);
	}

	90% {
		transform: translateY(5px);
	}

	100% {
		transform: translateY(0);
	}
}
.user-list-dropdown .card-body {
    cursor: pointer;
} 
.add-row-dropdown {
    opacity: 0;
    display: none;
}
#dropdwon-list-main {
    animation: bounceInUp 0.9s both 0.2s;
    margin-top: 10px;
}
.card-custom {
    width: 100%;
    background: #fff;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 #00000026;
}
.user-list-dropdown .dropdown-toggle::after {
    display: none;
}
.user-list-dropdown .dropdown-menu.show {
    display: block;
    padding: 35px 30px;
    border: none;
    box-shadow: 0 0 8px 0 #00000042;
    width: 100%;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: #ffffff !important;
}
.user-list-dropdown .card-body {
    padding: 20px 15px;
    min-height: 120px;
}
.user-list-dropdown .card-body h5 {
    font-size: 18px;
}
.user-list-dropdown .card-body h6 {
    font-size: 17px;
}
.user-list-dropdown .report-main-icon img {
    height: 50px;
}
.customgradientred	{
	background: linear-gradient(45deg, #e60000, #ff4d4d) !important;
}
.whitebo	{
	border-top: 1px solid #fff !important;
}
.progress	{
	margin-bottom:20px;
	height: 4px !important;
}
.progress-bardata span	{
	font-size:12px;
}
.progress-bardata .pullright	{
	float:right !important;
}
.progress-bardata .pullleft	{
	float:left !important;
}
.bgf1	{
	background-color:#f1f1f1;
}
.customwidgetpad	{
	padding:10px 10px;
	text-align:center;
	-webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.inline-block	{
	display:inline-block;
}
.bg--100	{
	background:#f0f3e8;
}
.bg-primary-gradient {
    background: linear-gradient(to bottom right, #6259ca 0%, rgba(98, 89, 202, 0.6)100%) !important;
}
.bg-success-gradient {
    background: linear-gradient(to bottom right, #3baf26 0%, rgb(13 165 32 / 60%)100%) !important;
}
.bg-purple-gradient {
    background: linear-gradient(to bottom right, #d92086 0%, rgb(165 13 139 / 60%)100%) !important;
}
.bg-yellow-gradient{
    background: linear-gradient(to bottom right, #b1d132 0%, rgb(187 203 52 / 60%)100%) !important;
}
.bg-danger-gradient{
    background: linear-gradient(to bottom right, #cd161f 0%, rgb(215 15 15 / 60%)100%) !important;
}
.bg-info-gradient{
    background: linear-gradient(to bottom right, #2286c1 0%, rgb(13 116 165 / 60%)100%) !important;
}
.bg-dark-gradient{
    background: linear-gradient(to bottom right, #1f3fdf 0%, rgb(55 97 215 / 60%)100%) !important;
}
.bg-navy-gradient{
    background: linear-gradient(to bottom right, #f74914 0%, rgb(215 55 55 / 60%)100%) !important;
}
.title-color-custom{
    font-size: 16px;
    color: #333;
}
#chartdealer span.apexcharts-tooltip-text-label {
    color: #fff;
}
#chartdealer span.apexcharts-tooltip-text-value {
    color: #fff;
}
.megamenu-li {
	position: static;
}
.megamenu {
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	padding: 15px;
}
.megamenu-li a::after {
    display: none;
}
.user-list-dropdown .navbar {
    padding: 0;
}
.user-list-dropdown .col-md-12{
    padding-left: 5px;
}
.megamenu .dropdown-item {
    padding: 5px;
}
.user-list-dropdown .navbar-expand-lg .navbar-collapse {
    display: block !important;
}
a.icon-view-new {
    border-radius: 8px;
    margin-right: 8px;
    color: #1b7cc0;
    font-size: 23px;
    text-align: center;
    font-weight: 900;
    padding: 0 5px;
    border: 1px solid #cfd0df;
}
.add-products-from .card-body {
    overflow: hidden;
}
.btn-danger-snack-bar {
    position: absolute;
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    color: #ffff;
    background-color: rgb(220 53 69 / 90%);
    border-color: #df4957;
    width: 20%;
    right: 1%;
    top: 10%;
    z-index: 9999;
    animation: fadeInDown 0.8s both 1s;
}

.btn-danger-snack-bar .close span {
    color: #fff !important;
    opacity: 1 !important;
    font-weight: 500;
}

.btn-danger-snack-bar button.close {
    opacity: 1;
}

.btn-success-snack-bar {
    position: absolute;
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    color: #ffff;
    background-color: rgb(33 157 11);
    border-color: #219d0b;
    width: 20%;
    right: 1%;
    top: 10%;
    z-index: 9999;
    animation: fadeInDown 0.8s both 1s;
}

.btn-success-snack-bar .close span {
    color: #fff !important;
    opacity: 1 !important;
    font-weight: 500;
}

.btn-success-snack-bar button.close {
    opacity: 1;
}

.btn-info-snack-bar {
    position: absolute;
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    color: #ffff;
    background-color: #5bc0de;
    border-color: #5bc0de;
    width: 20%;
    right: 1%;
    top: 10%;
    z-index: 9999;
    animation: fadeInDown 0.8s both 1s;
}

.btn-info-snack-bar .close span {
    color: #fff !important;
    opacity: 1 !important;
    font-weight: 500;
}

.btn-info-snack-bar button.close {
    opacity: 1;
}

.btn-warning-snack-bar {
    position: absolute;
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    color: #ffff;
    background-color: #f0ad4e;
    border-color: #f0ad4e;
    width: 20%;
    right: 1%;
    top: 10%;
    z-index: 9999;
    animation: fadeInDown 0.8s both 1s;
}

.btn-warning-snack-bar .close span {
    color: #fff !important;
    opacity: 1 !important;
    font-weight: 500;
}

.btn-warning-snack-bar button.close {
    opacity: 1;
}


.right-colums{
    float: right;
    margin: 10px 0;
}
.font-size--18 td {
    font-size: 16px;
    color: #333;
}

.left-sk{
    width: 250px;
    box-shadow: 0 0 11px 2px rgb(220 220 221), 0 2px 6px 0 rgb(192 192 207 / 5%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.left-menu {
    height: 95vh;
}

.pay-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
 
.pay-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
 
.pay-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 35px;
    width: 35px;
    background-color: #d7d5d500;
    border: 1px solid #333333a8;
    border-radius: 4px;
}
 
.pay-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}
 
.pay-checkbox input:checked ~ .checkmark {
    background-color: #4da7e7;
    border: none;
}
 
.pay-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
 
.pay-checkbox input:checked ~ .checkmark:after {
    display: block;
}
 
.pay-checkbox .checkmark:after {
    left: 13px;
    top: 5px;
    width: 10px;
    height: 20px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.form-control:disabled, .form-control[readonly] {
    background-color: #f7eeee82 !important;
    opacity: 1 !important;
}
.border-none{
    border: none;
}
 

.left-menu li.card {
    box-shadow: none;
    background: none;
}


.left-menu li.card .card-header a.active {
    background-color: #e9f3f9;
    border-radius: 8px;
    color: #fff;
}


.left-menu li.card .card-header a i, .left-menu li.card .card-header a span {
    color: #fff;
}


.left-menu li.card .card-header a i.las.la-bell {
    color: #fff;
}

.left-menu li.card .card-header a.active i,
.left-menu li.card .card-header a.active span {
    color: #0a58ca;
    font-weight: 600;
}

.left-menu li.card .card-header {
    padding: 5px 10px;
    border-bottom: 0;
}

.left-menu li.card .card-header a span {
    font-size: 13px;
}

#icon {
    float: right;
    font-size: 17px;
    line-height: 30px;
}

.left-menu li.card .card-header a {
    padding: 8px 15px;
    width: 100%;
    display: block;
}
.sidebar__menu-wrapper .card-body {
    padding: 5px 10px;
}


.left-menu li.card .collapse.show {
    background: #fff;
    transition: 0.5s all linear;
}
.sidebar__menu .sidebar-submenu  li a {
    color: #000 !important;
}

.sidebar__menu .sidebar-submenu li:hover a, .sidebar__menu .sidebar-submenu li:hover a i, .sidebar__menu .sidebar-submenu li:hover a span {
    color: #1b7cc0 !important;
}
.profile-users h4 {
    font-size: 30px;
    font-weight: 700;
}
.profile-users .join-date {
    font-size: 15px;
}
.user-information hr {
    margin: 10px 0 20px;
}

.user-information h5 {
    font-size: 20px;
    font-weight: 700;
}

.user-action hr {
    margin: 10px 0 20px;
}

.user-action h5 {
    font-size: 20px;
    font-weight: 700;
}

.information-list h5{
    font-size: 20px;
    font-weight: 700;
}
.file_upload {
    height: auto !important;
}
#withdrawl_list span, #already_scan span {
    font-size: 17px;
    color: #333;
}
hr {
    margin-top: 0 !important;
}

#chartdistributorlocation .apexcharts-tooltip-y-group span {
    color: #fff;
}
#chartdealerlocation .apexcharts-tooltip-text span {
    color: #fff;
}#chartpainterlocation .apexcharts-tooltip-series-group span {
    color: #fff;
}

#chartcustomerlocation .apexcharts-tooltip-text span {
    color: #fff;
}

#pointredemptionpiechart .apexcharts-tooltip-text span {
    color: #fff;
}
#withdrawlpercentpiechart .apexcharts-tooltip-text span {
    color: #fff;
}
#couponscanchart .apexcharts-tooltip-text span {
    color: #fff;
}
#couponscanchart .apexcharts-tooltip-text span {
    color: #fff;
}
.body-wrapper.main {
    position: relative;
}
.body-wrapper.main:after {
    content: '';
    top: 0;
    right: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: opacity .15s ease-in-out;
    opacity: 1;
    visibility: visible;
    background-color: rgba(0,0,0,.5);
    pointer-events: none;
}
.badge-notify { 
    color: white !important;
}

.left-menu li.card.active a.card-link i,.left-menu li.card.active a.card-link span {
    color: #fff;
}
.scan-btn {
    background: #1276be;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
}
.scan-btn:hover {
    color: #ffff;
}
#wallet-history .modal-dialog.modal-xl {
    max-width: 1140px;
}
#point-wallet-history .modal-dialog.modal-xl {
    max-width: 1140px;
}
#withdrawl-history .modal-dialog.modal-xl {
    max-width: 1140px;
}
#withdrawl-pending-history .modal-dialog.modal-xl {
    max-width: 1140px;
}
#withdrawl-reverse-history .modal-dialog.modal-xl {
    max-width: 1140px;
}
#refund-history .modal-dialog.modal-xl {
    max-width: 1140px;
}
.card-body.enquiryList-main {
    padding: 10px;
}
.copne-btn-ths li a {
	width: 100%;
	border-radius: 2px !important;
color: #fff;}

.copne-btn-ths li {
	display: inline-block;
	max-width: 100%;
	width: calc(98% / 2 );
}
.pdfexce {
	position: relative;
	margin: 0;
	padding: 0;
	display: inline-block;
	width: 100%;
	transition: 0.5s all linear;
	margin-top: 5px;
    display: none;
}
.pdfexce ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	position: relative;
}

.pdfexce ul li {
	margin: 0;
	max-width: 100%;
	width: calc(98% / 2);
	display: inline-block;
	padding: 7px 15px;
	background: #000;
	border-radius: 2px;
	transition: 0.5s all linear;
	cursor: pointer;
   color: #fff !important;
}

.pdfexce ul li  a {
	width: 100%;
	margin: 0;
	display: inline-block;
	font-size: 14px;
	color: #fff;
	font-weight: bold;
}

.pdfexce ul li:nth-child(1) {
	background: #FF0000;
}

.pdfexce ul li:nth-child(2) {
	background: #207244;
}

.pdfexce ul li a span {
	margin-right: 10px;
	color: #fff;
}
.pdfexce.pdfexce-show {
    display: inline-block;
    transition: 0.5s all linear;
}
.text-acti {
    display: contents;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.text-acti label.switch {
    float: right;
    text-align: right;
    margin-left: 20px;
}

.text-acti span {
    margin-left: 0px;
}
.copne-btn-ths {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    display: inline-block;
}

.copne-btn-ths a {
    width: calc(98% / 2);
    border-radius: 2px !important;
    color: #fff !important;
    font-weight: bold;
}

.main-price h3 {
    font-size: 19px;
    color: #342b2bcc;
}

.main-price h4 {
    font-size: 18px
}
.close-btn {
    z-index: 99;
    padding: 15px 20px;
    background: #000000;
    color: #fff;
    position: absolute;
    right: 5%;
    cursor: pointer;top: 5%;
    opacity: 0;
    visibility: hidden;
transition: all .4s ease-in;}
.close-btn i{
    font-weight: 100;
font-size: 25px;}
.body-wrapper.main .close-btn {
    opacity: 1;
    visibility: visible;
    transition: all .4s ease-in;
}