@charset "UTF-8";
/* Font >>> */
@import url("/content/fonts/_fonts.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.0/font/bootstrap-icons.css");
@import url("/content/lib/icofont/icofont.min.css");
/* <<< Font */
/* Library >>> */
@import url("/content/lib/bootstrap/bootstrap.min.css");
@import url("/content/lib/animete/animate.min.css");
@import url("/content/lib/fancybox/jquery.fancybox.min.css");
/* <<< Library */
/* Var >>> */
/* Fonts */

.modal-dialog{
    pointer-events:auto !important;
}

.btn-style-nine {
    position: relative;
    display: inline-block;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Archivo' !important;
    color: #fff;
    text-align: center;
    padding: 14px 39px;
    border-radius: 30px;
    z-index: 1;
    border: 2px solid #fff;
}

.containerloader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    animation-delay: 1s;
    position: fixed;
    left: 55%;
    top: 60%;
    z-index: 1;
    height: 120px;
    margin: -76px 0 0 -76px;
}

.item-1 {
    width: 20px;
    height: 20px;
    background: #f583a1;
    border-radius: 50%;
    background-color: #eed968;
    margin: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50%, 75% {
        transform: scale(2.5);
    }

    78%, 100% {
        opacity: 0;
    }
}

.item-1:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #eed968;
    opacity: 0.7;
    animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
    animation-delay: 200ms;
    transition: 0.5s all ease;
    transform: scale(1);
}

.item-2 {
    width: 20px;
    height: 20px;
    background: #f583a1;
    border-radius: 50%;
    background-color: #eece68;
    margin: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50%, 75% {
        transform: scale(2.5);
    }

    78%, 100% {
        opacity: 0;
    }
}

.item-2:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #eece68;
    opacity: 0.7;
    animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
    animation-delay: 400ms;
    transition: 0.5s all ease;
    transform: scale(1);
}

.item-3 {
    width: 20px;
    height: 20px;
    background: #f583a1;
    border-radius: 50%;
    background-color: #eec368;
    margin: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50%, 75% {
        transform: scale(2.5);
    }

    78%, 100% {
        opacity: 0;
    }
}

.item-3:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #eec368;
    opacity: 0.7;
    animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
    animation-delay: 600ms;
    transition: 0.5s all ease;
    transform: scale(1);
}

.item-4 {
    width: 20px;
    height: 20px;
    background: #f583a1;
    border-radius: 50%;
    background-color: #eead68;
    margin: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50%, 75% {
        transform: scale(2.5);
    }

    78%, 100% {
        opacity: 0;
    }
}

.item-4:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #eead68;
    opacity: 0.7;
    animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
    animation-delay: 800ms;
    transition: 0.5s all ease;
    transform: scale(1);
}

.item-5 {
    width: 20px;
    height: 20px;
    background: #f583a1;
    border-radius: 50%;
    background-color: #ee8c68;
    margin: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50%, 75% {
        transform: scale(2.5);
    }

    78%, 100% {
        opacity: 0;
    }
}

.item-5:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ee8c68;
    opacity: 0.7;
    animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
    animation-delay: 1000ms;
    transition: 0.5s all ease;
    transform: scale(1);
}













/*#loader {
    position: absolute;
    left: 55%;
    top: 50%;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 18px solid;
    border-radius: 50%;
    border-top: 16px solid #fe8400;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}*/
/*a {
    color: #F26726 !important;
}*/
/*@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/

/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}


#myDiv {
    display: none;
    text-align: center;
}
.font-1 {
    font-family: 'Archivo' !important;
}

.font-2 {
    font-family: 'Archivo' !important;
}

/* Colors */
.color-white {
  color: #fff !important;
}

.color-black {
  color: #000 !important;
}

.color-orange {
  color: #fe8400 !important;
}

.color-purple {
  color: #4339f2 !important;
}

.color-text {
  color: #74798c !important;
}

.color-title {
  color: #20253a !important;
}

.color-text-table {
  color: #999999 !important;
}

.color-green {
  color: #34b53a !important;
}

.color-gray-3 {
  color: #6d7278 !important;
}

.color-red {
  color: #ff3a29 !important;
}

.color-yellow {
  color: #ffb200 !important;
}

.bg-gray {
  background-color: #a0a5ba !important;
}

.bg-orange {
  background-color: #fe8400 !important;
}

.bg-yellow {
  background-color: #ffb200 !important;
}

.bg-purple {
  background-color: #4339f2 !important;
}

.bg-gray-2 {
  background-color: #f4f5fa !important;
}

.bg-black {
  background-color: #000 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-green {
  background-color: #34b53a !important;
}

.bd-gray {
  border-color: #e4e7eb !important;
}

.bd-orange {
  border-color: #fe8400 !important;
}

.bd-purple {
  border-color: #4339f2 !important;
}

.bd-green {
  border-color: #34b53a !important;
}

/* <<< Var */
/* Mixin >>> */
/* <<< Mixin  */
/* Func >>> */
/* <<< Func */
/* Anim >>> */
@-webkit-keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}
@keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}

.anim-shake {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@-webkit-keyframes mymove {
  0% {
    top: 0px;
  }
  25% {
    top: 200px;
  }
  50% {
    top: 100px;
  }
  75% {
    top: 200px;
  }
  100% {
    top: 0px;
  }
}

@keyframes mymove {
  0% {
    top: 0px;
  }
  25% {
    top: 200px;
  }
  50% {
    top: 100px;
  }
  75% {
    top: 200px;
  }
  100% {
    top: 0px;
  }
}

@-webkit-keyframes sliderBullet {
  from {
    padding-right: 0%;
  }
  to {
    padding-right: 2%;
  }
}

@keyframes sliderBullet {
  from {
    padding-right: 0%;
  }
  to {
    padding-right: 2%;
  }
}

@-webkit-keyframes playIconBreath {
  0% {
    width: 40px;
    height: 40px;
    left: 0%;
    top: 0%;
  }
  50% {
    width: 50px;
    height: 50px;
    left: -13%;
    top: -11%;
  }
  100% {
    width: 40px;
    height: 40px;
    left: 0%;
    top: 0%;
  }
}

@keyframes playIconBreath {
  0% {
    width: 40px;
    height: 40px;
    left: 0%;
    top: 0%;
  }
  50% {
    width: 50px;
    height: 50px;
    left: -13%;
    top: -11%;
  }
  100% {
    width: 40px;
    height: 40px;
    left: 0%;
    top: 0%;
  }
}

/* <<< Anim */
/* RESET >>> */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0-modified | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* make sure to set some focus styles for accessibility */
:focus {
  outline: none;
  outline-style: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: transparent;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  max-width: 100%;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */



html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: none;
  outline-style: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0;
}

/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
  outline: none;
  outline-style: none;
  box-shadow: none;
  border-color: transparent;
}

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
button,
input,
select,
textarea {
  color: #222;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

img {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* <<< RESET */
:root {
    color: #74798c;
    font-family: 'Archivo' !important;
    background: #fff;
    font-size: 16px;
    font-size: clamp(14px, 1.11111vw, 16px);
}

@media (max-width: 480px) {
  :root {
    font-size: 14px;
    font-size: clamp(14px, 0.97222vw, 14px);
  }
  
}

.components__title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 35px;
  font-weight: bold;
}

.components * {
  margin: 15px;
}

::-moz-selection {
  color: #000;
  background: #fe8400;
}

::selection {
  color: #000;
  background: #fe8400;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #d8d8d8 #fff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: #fff;
}

*::-webkit-scrollbar-thumb {
  background-color: #d8d8d8;
  border-radius: 10px;
  border: 3px solid #ffffff;
}

strong {
  font-weight: bold !important;
}

a[href] {
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #000;
  text-decoration: none;
}

a[href]:hover {
  color: #000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-decoration: none;
}

a.underline {
  text-decoration: underline !important;
}

img {
  width: 100%;
}

.bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  top: 0;
  left: 0;
}

.btn {
  font-weight: 500;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  padding: 10px 15px;
  border-radius: 8px;
  display: inline-block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-weight: 500;
  font-size: 11px;
  font-size: clamp(10px, 0.76389vw, 12px);
}

.btn:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn:disabled {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  cursor: not-allowed;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn--transparent {
  background-color: transparent !important;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 4px 0 #00000005 !important;
          box-shadow: 0 2px 4px 0 #00000005 !important;
  border: solid 1px #e4e7eb !important;
}

.btn--transparent:hover {
  background-color: #fe8400 !important;
  color: white !important;
}

.btn--orange {
  background-color: #fe8400 !important;
  color: #fff !important;
  border: 1px solid transparent;
}
@media (max-width: 480px) {
  .btn--orange {
    margin-bottom: 15px;
  }
}

.btn--orange:hover {
  color: #fe8400;
  background-color: #fff;
  border-color: #fe8400;
}

.btn--purple {
  background-color: #4339f2 !important;
  color: #fff !important;
  border: 1px solid transparent;
}

.btn--purple:hover {
  color: #4339f2 !important;
  background-color: #fff !important;
  border-color: #4339f2;
}

.btn--green {
  background-color: #34b53a;
  color: #fff;
  border: 1px solid transparent;
}

.btn--green:hover {
  color: #34b53a;
  background-color: #fff;
  border-color: #34b53a;
}

.triangle-down {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid #6d7278;
  border-radius: 10px;
}

.icon-cross {
  color: #ff3a29;
  font-weight: bold;
}

.icon-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.icon-circle--green {
  background-color: #34b53a;
}

.icon-circle--yellow {
  background-color: #ffb200;
}

.icon-triangle-down {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid #6d7278;
  border-radius: 10px;
}

.checkbox {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  outline: none;
  background: #fff;
  border: 1px solid #000;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}

.checkbox:checked {
  background-color: #74798c;
}

.checkbox:checked::before {
  content: "\2713";
  display: block;
  text-align: center;
  color: #fff;
  position: absolute;
  font-weight: bold;
  left: 3px;
  font-size: 9px;
}

.form {
  color: #74798c;
}

.form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form .forgot-link {
  text-align: right;
  margin-bottom: 25px;
  color: #74798c;
  width: 100%;
  display: block;
}

.form input[type="text"],
.form input[type="password"],
.form input[type="email"],
.form input[type="number"],
.form select {
  width: 100%;
  padding: 15px 17px;
  margin-bottom: 15px;
  font-size: 12px;
}

.form input {
  max-height: 50px;
  z-index: 10;
  color: transparent;
  border: 1px solid #e4e7eb;
  color: #000;
  font-weight: bold;
}

.form input::-webkit-input-placeholder {
  font-weight: normal;
  color: #74798c;
}

.form input:-ms-input-placeholder {
  font-weight: normal;
  color: #74798c;
}

.form input::-ms-input-placeholder {
  font-weight: normal;
  color: #74798c;
}

.form input::placeholder {
  font-weight: normal;
  color: #74798c;
}

.form input:focus {
  outline: none !important;
  color: #000;
  border-color: #fe8400;
}

.form input:valid {
  color: #000;
}

.form input:focus + label {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  top: 11px;
  font-size: 11.2px;
  font-weight: 900;
}

.form input:valid + label {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  top: 11px;
  font-size: 11.2px;
  font-weight: 900;
  color: #000;
}

.form input.invalid:focus:invalid + label {
  top: 11px;
  font-size: 11.2px;
  font-weight: 900;
  color: red;
}

.form input.invalid:invalid + label {
  color: red;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  top: 30%;
  left: 42px;
  font-weight: 900;
}

.form input.invalid:focus:invalid {
  border-color: red;
}

.form input.invalid:invalid {
  border-color: red;
}

.form label {
  position: absolute;
  top: 30%;
  left: 42px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 5;
  font-size: 13px;
  font-weight: 500;
}

.textbox {
  border: 1px solid #000;
  height: 35px;
  padding: 4px 16px;
  color: #000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.textbox:focus {
  border-color: #74798c;
  border-left: 3px solid #74798c;
  color: #74798c;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.text {
  color: #74798c;
  line-height: 1.5;
}

.link {
  color: #74798c;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.link:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.title {
  font-size: 32px;
  font-size: clamp(24px, 2.22222vw, 40px);
  font-weight: bold;
}

.title--underline {
  text-decoration: underline;
}

.desc {
  font-size: 14px;
  font-size: clamp(12px, 0.97222vw, 16px);
}

.date {
  font-size: 14px;
  font-size: clamp(12px, 0.97222vw, 16px);
}

.detail {
  color: #74798c;
}

.readmore {
  text-decoration: underline;
  letter-spacing: 1.85px;
  color: #fff;
  font-weight: bold;
}

.name {
    font-size: 16px;
    font-size: clamp(14px, 1.11111vw, 18px);
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Archivo' !important;
    margin-bottom: 1.73611vw;
}

.ta-right {
  text-align: right !important;
}

.ta-left {
  text-align: left !important;
}

.tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #e4e7eb;
  border-radius: 30px;
  padding: 5px 14px;
  margin: 0 4px;
  color: #74798c;
  font-size: 12px;
  font-size: clamp(10px, 0.83333vw, 14px);
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.tag:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border: 1px solid #fe8400;
}

.tag--selected:empty {
  display: none;
}

.hide-font {
  font-size: 0 !important;
}

.login {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.login-left {
  background-color: #fe8400;
  width: 50vw;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  position: relative;
}

@media (max-width: 768px) {
  .login-left {
    display: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}

.login-left .bg-img {
  opacity: 0.2;
}

.login-left__text {
  z-index: 1;
  text-align: center;
  color: #fff;
}

.login-left__title {
    font-family: 'Archivo' !important;
}

.login-left__desc {
  padding: 0 15%;
}

.login-right {
  height: 100%;
  width: 50vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 11.80556vw;
}

@media (max-width: 768px) {
  .login-right {
    width: 100%;
  }
}

.login-right__text {
  color: #000;
}

.login-right__logo {
  max-width: 230px;
  width: 14.93056pxvw;
  min-width: 190px;
  margin-bottom: 4.16667vw;
}

.login-right__title {
  font-size: 22px;
  font-size: clamp(20px, 1.52778vw, 24px);
  color: #20253a;
}

.login-right__desc {
  font-size: 14px;
  font-size: clamp(12px, 0.97222vw, 16px);
  margin-bottom: 2.63889vw;
  color: #20253a;
}

#menu-btn {
  text-decoration: none;
  color: #20253a;
  cursor: pointer;
  font-size: 32px;
}

#menu-btn.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}



.menu-main {
  max-width: 275px;
  width: 17.70833vw;
  min-width: 235px;
  padding-top: 15px;
  padding-left: 35px;
  padding-right: 25px;
  padding-bottom: 15px;
  font-size: 14px;
  font-size: clamp(12px, 0.97222vw, 16px);
  height: 100%;
  background-color: #fff;
}

.menu-main.disabled {
  max-width: 65px;
  width: 65px;
  min-width: 65px;
  padding-left: 0;
  padding-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu-main.disabled .logo .disabled {
  display: block;
}

.menu-main.disabled .logo .active {
  display: none;
}

.menu-main.disabled ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.menu-main.disabled ul li {
  position: relative;
}


.menu-main.disabled ul li.active .menu-main-dropdown {
  display: none;
}

.menu-main.disabled ul li a {
  font-size: 0;
  display: block;
}

.menu-main.disabled ul li a span {
  display: none;
}

.menu-main.disabled ul li a img {
  margin-right: 0;
}

.menu-main__logo {
  border-bottom: 1px solid #e4e7eb;
  padding-bottom: 15px;
  margin-bottom: 35px;
  height: 53px;
}
.mobil-menu{
  display: none;
}

@media (max-width: 580px) {
  .menu-main__logo {
    height: 40px;
    margin-bottom: 0;
  }
  .menu-main{
    display: none;
  }
  .menu-main.disabled{
    display: none;
  }
  .menu-main.active{
    display: none;
  }
  .menu-btn.active{
    display: none;
  }
  .mobil-menu{
    display: flex;
  }
  .navbar-collapse {
    display: flex;
    padding: 0 85px;
  }
  ul li {
    padding: 5px 0;
  }

}


.navbar-nav  li a img {
  width: 10%;
}
.menu-main__logo img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.menu-main__logo .disabled {
  display: none;
}

.menu-main__logo .active {
  display: block;
}

.menu-main ul li {
  padding: 12px 0;
  cursor: pointer;
}

.menu-main ul li .menu-main-dropdown {
  height: 0;
  padding: 0;
  padding-left: 3.5rem;
  overflow: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.menu-main ul li.active .menu-main-dropdown {
  height: auto;
  display: block;
  padding: 1rem 0;
  padding-bottom: 0;
  padding-left: 3.5rem;
}

.menu-main ul li.active .menu-main-dropdown li {
  padding: 6px 0;
}

.menu-main ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #74798c !important;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  vertical-align: middle;
}

.menu-main ul li a.active {
  color: #fe8400 !important;
}

.menu-main ul li a:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #000;
}

.menu-main ul li a:hover img {
  -webkit-filter: invert(43%) sepia(46%) saturate(4373%) hue-rotate(1deg) brightness(101%) contrast(108%);
          filter: invert(43%) sepia(46%) saturate(4373%) hue-rotate(1deg) brightness(101%) contrast(108%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.menu-main ul li a.active img {
  -webkit-filter: invert(43%) sepia(46%) saturate(4373%) hue-rotate(1deg) brightness(101%) contrast(108%);
          filter: invert(43%) sepia(46%) saturate(4373%) hue-rotate(1deg) brightness(101%) contrast(108%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.menu-main ul li a img {
  height: 18px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -o-object-fit: contain;
     object-fit: contain;
  width: 20px;
  margin-right: 20px;
}

.dashboard {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-y: hidden;
}

.dashboard-main {
  width: 100%;
  height: 100%;
  background-color: #f5f6fa;
  overflow: hidden;
}

.dashboard-main__top-bar {
  max-height: 80px;
  height: 4.86111vw;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}

@media (max-width: 500px) {
  .dashboard-main__top-bar {
    max-height: 80px;
    height: 4.86111vw;
    min-height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #fff;
  }
  
}


.dashboard-main__top-bar select {
  border: 1px solid #e4e7eb;
  -webkit-box-shadow: 0 2px 4px 0 #00000005;
          box-shadow: 0 2px 4px 0 #00000005;
  border-radius: 5px;
  padding: 14px 24px;
  font-size: 14px;
  color: #74798c;
  position: relative;
}
@media (max-width: 500px) {
  .dashboard-main__top-bar select {
    width: 270px;
    padding: 10px 0;
    font-size: 10px;
  }
  .dataTables_wrapper .dataTables_filter{
    margin: 0 10px;
  }
}

.dashboard-main__top-bar select::after {
  content: "▼";
  font-size: 1rem;
  top: 6px;
  right: 10px;
  position: absolute;
}

.dashboard-main__top-bar .profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 52px;
}

@media (max-width: 480px) {
  .profile__notf {
    display: none;
  }
}

.dashboard-main__top-bar .profile__img {
  border-radius: 50%;
  margin: 0 20px;
  height: 32px;
  width: 32px;
}
@media(max-width: 500px) {
  .dashboard-main__top-bar .profile__img {
    margin: 0 10px;
  }
}

@media (max-width: 500px) {
  .profile__name {
    padding: 0;
  }
  .profile__name span {
    display: none;
  }
}

.dashboard-main__top-bar .profile__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.dashboard-main__body {
  padding: 15px;
  overflow-y: auto;
  height: 100%;
  height: calc(100% - 70px);
}

.dashboard-filter {
  width: 100%;
  min-height: 125px;
  height: auto;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 4px 0 #00000005;
          box-shadow: 0 2px 4px 0 #00000005;
  border-radius: 3px;
  margin-bottom: 17px;
  padding: 24px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (max-width: 480px) {
  .dashboard-filter  {
    padding: 24px 12px;
  }
}
.dashboard-filter-order {
  margin-bottom: 0;
  padding: 0;
  padding-bottom: 24px;
  height: unset;
}

.dashboard-filter-order .filter-group {
  margin-bottom: 3px;
}

.dashboard-filter-order .filter__tag {
  margin-bottom: 5px;
}

.dashboard-filter__title {
  color: #20253a;
  width: 100%;
  font-size: 16px;
  font-size: clamp(14px, 1.11111vw, 18px);
  margin-bottom: 16px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .dashboard-filter__title {
    margin-top: 30px;
  }
}

.dashboard-filter__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dashboard-filter__wrap--date {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.dashboard-filter__input-wrap {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.dashboard-filter__input-wrap label {
  font-size: 12px;
  font-size: clamp(12px, 0.83333vw, 14px);
  margin-bottom: 0.5rem;
}

.dashboard-order {
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 4px 0 #00000005;
          box-shadow: 0 2px 4px 0 #00000005;
  border-radius: 3px;
}

.dashboard-order__head {
  padding: 25px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e4e7eb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dashboard-order__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dashboard-order__form img {
  height: 17px;
}

.dashboard-order-info {
  color: #74798c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-top: 16px;
  padding-bottom: 22px;
  padding-right: 30px;
  font-size: 10px;
  font-size: clamp(9px, 0.69444vw, 11px);
}
@media (max-width: 470px) {
  .dashboard-order-info {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    justify-content: space-between;
  }
}

.dashboard-order-info__el {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5px;
}
@media (max-width: 470px) {
  .dashboard-order-info__el {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .dashboard-filter__input-wrap {
    margin-left: 0 !important;
  }
}


.dashboard-order-info__el i {
  margin-right: 6px;
}

.dashboard-order-info__el i.bi-x-lg::before {
  font-weight: bold !important;
}

.dashboard-order__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 22px;
  padding-right: 28px;
  padding-left: 24px;
  padding-bottom: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-shadow: 0 2px 4px 0 #00000005;
          box-shadow: 0 2px 4px 0 #00000005;
}

@media (max-width: 1240px) {
  .dashboard-order__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: baseline;
        -ms-flex-pack: baseline;
            justify-content: baseline;
  }
}

.dashboard-pagination {
  max-height: 50px;
  height: 3.125vw;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  font-size: 9px;
  font-size: clamp(8px, 0.625vw, 10px);
}

.dashboard-pagination span {
  margin: 0 15px;
}

.table {
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin-bottom: 25px;
  border: 1px solid #e4e7eb;
  border-radius: 9px;
  padding: 11px 22px;
}
@media (max-width: 420px) {
  .table {
    width: 371px;
    overflow-x: scroll;
    margin: 0;
    padding: 0;
  }
  .dashboard-main__top-bar .profile{
    padding-right: 0px;
  }
}
@media (max-width: 376px) {
  .table {
    width: 333px;
    overflow-x: scroll;
    margin: 0;
    padding: 0;
  }
  .dashboard-main__top-bar .profile{
    padding-right: 0px;
  }
}



.table table {
  width: 100%;
  color: #999;
  text-align: center;
}

.table table .tr-modal {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.table table .tr-modal:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: #fe8400;
  color: #fff;
}

.table table i {
  font-size: 12px;
}

.table table i.bi-x-lg::before {
  font-weight: bold !important;
}

.table table tr {
  border-top: 1px solid #e4e7eb;
}

.table table tr:nth-child(even) {
  background-color: #fafafa;
}

.table table td {
  padding: 10px 9px;
}

.table table td:first-child {
  text-align: left;
}

.table table thead tr {
  border: none;
}

.table table thead th {
  border: none;
  padding: 10px 9px;
  font-size: 13px;
  font-size: clamp(12px, 0.90278vw, 14px);
}

.table table thead th:first-child {
  text-align: left;
}

.table .td-pdf {
  text-align: center;
}

.table .td-pdf a i {
  font-size: 2.5rem;
}

.table .odd-active .td-pdf a i {
  -webkit-filter: invert(100%) sepia(0%) saturate(7046%) hue-rotate(138deg) brightness(105%) contrast(101%);
          filter: invert(100%) sepia(0%) saturate(7046%) hue-rotate(138deg) brightness(105%) contrast(101%);
}

.table__wrap-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 1rem;
}

.table-accordion {
  max-width: 100%;
  width: 100%;
  padding: 0;
}

@media (max-width: 282px) {
  .navbar-collapse {
    display: flex;
    padding: 0 45px;
  }
  ul li a  span{
    padding: 0 0;
    font-size: 13px;
  }
  
 

}

@media (max-width: 376px) {
  .table-accordion {
    width: 335px;
    overflow-x: scroll;
    margin: 0;
    padding: 0;
  }
  ul li a  span{
    padding: 0 0;
    font-size: 13px;
  }
  
}


@media (max-width: 420px) {
  .table-accordion {
    width: 375px;
    overflow-x: scroll;
    margin: 0;
    padding: 0;
  }
  ul li a span{
    padding: 0 0;
  }
}

@media (max-width: 490px) {
  .chart-box {
    margin-top: 40%;
    margin-bottom: 10%;
  }
}


.table-accordion > #table-main {
  max-width: 100%;
  width: 100%;
  font-size: 13px;
}

.table-accordion > #table-main > thead th {
  text-align: left;
}

.table-accordion > #table-main > tbody > tr {
  position: relative;
  cursor: pointer;
  height: 56px;
  vertical-align: middle;
  text-align: left;
}

.table-accordion > #table-main > tbody > tr::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 16px;
  width: 24px;
  height: 24px;
  background-size: 24px;
  background-image: url(/content/images/icon/plus-circle-fill.svg) !important;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.table-accordion > #table-main > tbody > tr.odd-active {
  color: white;
  position: relative;
  border: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.table-accordion > #table-main > tbody > tr.odd-active::after {
  background-image: url(/content/images/icon/dash-circle-fill.svg) !important;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.table-accordion > #table-main > tbody > tr.odd-active td {
  background-color: #fe8400;
}

.table-accordion > #table-main > tbody > tr.odd-active td:first-child {
  border-top-left-radius: 20px;
}

.table-accordion > #table-main > tbody > tr.odd-active td:last-child {
  border-top-right-radius: 20px;
}

.table-accordion > #table-main > tbody > tr > td {
  padding-left: 0;
  padding-right: 0;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
  text-align: left;
}

.table-accordion > #table-main .tr-accordion {
  display: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.table-accordion > #table-main .tr-accordion::after {
  display: none;
}

.table-accordion > #table-main .tr-accordion.even-active {
  display: table-row;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.table-accordion > #table-main .tr-accordion .dashboard-filter {
  min-height: auto !important;
  padding: 8px;
}

.table-accordion > #table-main .tr-accordion .filter-group-top {
  margin-bottom: 0px;
}

.table-accordion > #table-main .tr-accordion .filter-group-bottom .filter__tag {
  margin-bottom: 5px;
}

.table-accordion > #table-main .tr-accordion > td {
  width: 100%;
  background: white;
}

.table-accordion-in {
  max-width: 100%;
  width: 100%;
  padding: 0;
  border: none;
  max-height: 20.83333vw;
  overflow: auto;
  margin-bottom: 0;
}

.table-accordion-in table {
  max-width: 100%;
  width: 100%;
  background-color: white;
}

.table-irsaliye-detail tr {
  cursor: pointer;
}

.filter__left {
  -webkit-box-flex: 1.8;
      -ms-flex: 1.8;
          flex: 1.8;
}

@media (max-width: 470px) {
  .search-box {
    margin-top: 20px;
  }
}


.filter__left--date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 470px) {
  .filter__left--date {
    flex-direction: column;
  }
}
.filter__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 480px) {
  .filter__right {
    display: flex;
    flex-direction: row;
    margin: 0 0;
  }
  .filter__right .btn, .filter__right input{
    margin-right: 15px;
    margin-bottom: 15px;
    margin-top: 15px;
  }
}


.filter__right .btn,
.filter__right input {
  margin-right: 15px;
  margin-bottom: 15px;
}

.filter-accordion__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.filter-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 470px) {
  .filter-group {
    gap: 10px 0;
    width: 101%;
    justify-content: flex-start;
  }
}
.filter-group-top {
  margin-bottom: 24px;
}

.filter-group-bottom .filter__tag {
  margin-bottom: 15px;
}

.dropdown {
  position: relative;
  font-size: 14px;
  color: #333;
}
@media (max-width: 470px) {
  .dropdown {
    font-size: 12px;
  }
}

.dropdown .dropdown-list {
  padding: 12px;
  background: #fff;
  position: absolute;
  top: 38px;
  left: 2px;
  right: 2px;
  -webkit-box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.15);
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transition: -webkit-transform 0.15s ease-in-out 0.15s;
  transition: -webkit-transform 0.15s ease-in-out 0.15s;
  transition: transform 0.15s ease-in-out 0.15s;
  transition: transform 0.15s ease-in-out 0.15s, -webkit-transform 0.15s ease-in-out 0.15s;
  max-height: 66vh;
  width: 20vw;
  overflow-y: scroll;
  z-index: 10;
}
@media (max-width: 470px) {
  .dropdown .dropdown-list {
    padding: 0;
    width: 90%;
    left: 15px;
  }
}

.dropdown .dropdown-option {
  display: block;
  padding: 8px 12px;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}
@media (max-width: 470px) {
  .dropdown .dropdown-option {
   display: flex;
   padding: 8px 10px;
  }
}

.dropdown .dropdown-label {
  display: block;
  background: #fff;
  line-height: 1;
  cursor: pointer;
  padding: 10px 15px;
  margin-bottom: 5px;
}

.dropdown .dropdown-label span {
  display: none;
}

.dropdown .dropdown-label span.active {
  display: block;
}

.dropdown .dropdown-label:before {
  content: "▼";
  float: right;
}

.dropdown .dropdown-label.all-selected {
  background: #fe8400;
  color: #fff;
}

.dropdown .dropdown-label.any-selected {
  border: 1px solid #fe8400;
}

.dropdown.on .dropdown-list {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.dropdown.on .dropdown-list .dropdown-option {
  opacity: 1;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.dropdown.on .dropdown-label:before {
  content: "▲";
}

.dropdown [type="checkbox"] {
  position: relative;
  top: -1px;
  margin-right: 4px;
}

.all-site-links {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.all-site-links h1 {
  font-size: 48px;
  font-weight: bold;
}

.all-site-links a {
  display: block;
  padding: 15px;
  font-weight: bold;
  text-decoration: underline;
}

.all-site-links a:hover {
  color: #fe8400;
}

.box {
  background-color: white;
  border-radius: 3.8px;
  -webkit-box-shadow: 0 1px 3px 0 #3f3f4426, 0 0 0 1px #3f3f440c;
          box-shadow: 0 1px 3px 0 #3f3f4426, 0 0 0 1px #3f3f440c;
  margin-bottom: 24px;
  color: #20253a;
}

.box-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 24px;
}

.box-head {
  padding: 22px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.box__refresh {
  cursor: pointer;
  color: #6d7278;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.box__refresh:hover {
  color: #fe8400;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.box__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.box__title {
  font-size: 16px;
  font-size: clamp(14px, 1.11111vw, 18px);
  font-weight: 500;
}

.box__name {
  font-size: 12px;
  font-size: clamp(12px, 0.83333vw, 14px);
  letter-spacing: 1px solid #e4e7eb;
  font-weight: 500;
  margin-bottom: 5px;
}

.box__price {
  font-size: 24px;
  font-size: clamp(20px, 1.66667vw, 28px);
  margin-bottom: 18px;
  font-weight: 500;
}

.box__icon {
  max-height: 75px;
  height: 4.16667vw;
  min-height: 55px;
  max-width: 75px;
  width: 4.16667vw;
  min-width: 55px;
  border-radius: 50%;
  padding: 22%;
  background: #fe8400;
  font-size: 24px;
  color: white;
  text-align: center;
  line-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.box__icon img {
  -webkit-filter: invert(0%) sepia(306%) saturate(0) hue-rotate(150deg) brightness(150%) contrast(100%);
          filter: invert(0%) sepia(306%) saturate(0) hue-rotate(150deg) brightness(150%) contrast(100%);
}

.box__date, .box__loc, .box__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-size: clamp(12px, 0.83333vw, 14px);
  letter-spacing: -0.04px;
  color: #66788a;
  margin-bottom: 5px;
}

.box__date i, .box__loc i, .box__info i {
  margin-right: 5px;
}

.box__btn .btn {
  padding: 6px 12px;
  color: #66788a;
}

.box-notification-body {
  max-height: 768px;
  height: 41.66667vw;
  min-height: 500px;
  overflow-y: auto;
  padding: 0;
  display: block;
}

.box-notification__line {
  padding: 17px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #e4e7eb;
}

.box-notification__img {
  border-radius: 50%;
}

.box-notification__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.box-notification__title {
  font-size: 14px;
  font-size: clamp(12px, 0.97222vw, 16px);
  color: #20253a;
  margin-bottom: 6px;
  font-weight: 500;
}

.box-notification__desc {
  font-size: 14px;
  font-size: clamp(12px, 0.97222vw, 16px);
  color: #7f7f7f;
}

.box-notification__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-size: clamp(12px, 0.83333vw, 14px);
  color: #7f7f7f;
}

.box-card__text {
  color: white;
  font-size: 24px;
  font-size: clamp(22px, 1.66667vw, 26px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-weight: 500;
  line-height: 1.3;
}

.transition-none {
  -webkit-transition: none !important;
  transition: none !important;
}

.search {
  border: 1px solid #e4e7eb;
  -webkit-box-shadow: 0 2px 4px 0 #00000005;
  box-shadow: 0 2px 4px 0 #00000005;
  border-radius: 5px;
  font-size: 14px;
  font-size: clamp(12px, 0.97222vw, 16px);
  color: #74798c;
  margin-right: 15px;
  padding: 2px 5px;
  height: 30px;
}

.modal-table tr td {
  font-weight: normal;
  vertical-align: middle;
  padding: 5px;
}

.modal-table tr td:first-child {
  font-weight: bold;
}

.input {
  border: 1px solid #e4e7eb;
  -webkit-box-shadow: 0 2px 4px 0 #00000005;
  box-shadow: 0 2px 4px 0 #00000005;
  border-radius: 5px;
  font-size: 14px;
  font-size: clamp(12px, 0.97222vw, 16px);
  color: #74798c;
  margin-right: 15px;
  padding: 2px 5px;
  height: 30px;
}
/*# sourceMappingURL=style.css.map */








.swiper {
  width: 100%;
  height: 50%;
}
@media (max-width: 480px) {
  .swiper {
    height: 30% !important;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: rgb(202, 67, 49);
  object-fit: cover;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}


.swiper .mySwiper .swiper-wrapper .swiper-slide{
  object-fit: cover;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}



.swiper-title {
    font-size: 25px;
    line-height: 1.27;
    letter-spacing: -1px;
    padding: 7% 0;
    color: white;
    font-family: 'Archivo' !important;
}


.swiper-desc {
    color: white;
    line-height: 1.45;
    letter-spacing: -0.5px;
    padding: 0% 10%;
    display: flex;
    align-items: center;
    height: 40%;
    font-family: 'Archivo' !important;
}

@media (max-width: 480px) {
  .swiper-button-next::after, .swiper-button-prev::after {
    font-size: 14px !important;
  }
}

.swiper-button-next::after{
  color: white;
}

.swiper-button-prev::after{
  color: white;
}


.box-notification-body {
  max-height: 768px;
    height: 11.66667vw;
    min-height: 292px;
  overflow-y: auto;
  padding: 0;
  display: block;
}

.box-notification__line{
  padding: 13px 20px;
}

.form-group{
  padding: 10px;
}

.menu-main{
  overflow-y: auto;
}

.sorting{
  padding: 0 10px;
}

@media (max-width: 480px) {
  .dashboard-filter__wrap {
    display: inline-table;
  }

  .dashboard-order__wrap{
    display: inline-table;
    padding: 20px 0;
  }

  .dashboard-filter{
    display: inline-table;
  }

  .dashboard-order{
    display: inline-table;
  }
}

@media (max-width: 490px) {
  .box2 {
    z-index: 99;
  }
}



@media (max-width: 480px) {
  .dataTables_filter {
    text-align: left !important;
  }
}

@media (max-width: 480px) {
  .form-control {
    width: 60%;
    margin-left: 10px;
    margin-top: 20px;
  }
 
}





