html {
  margin  : 0;
  padding : 0;
}

body {
  margin      : 0;
  padding     : 0;
  font-family : Trebuchet MS,Tahoma,Arial,sans-serif;
  font-size   : 16px;
}

/* List style */

ul {
  margin  : 0;
  padding : 0;
}

ul > li {
  margin     : 0;
  padding    : 0;
  list-style : none;
}

/* Font style */

.kr-mono {
  font-family : 'Roboto Mono',
                'Roboto',
                monospace,
                sans-serif;
}

/* Scrollbar webkit */

::-webkit-scrollbar {
  width  : 5px;
  height : 5px;
}

::-webkit-scrollbar-button {
  width  : 0px;
  height : 0px;
}

::-webkit-scrollbar-thumb {
  border        : 0px none #ffffff;
  border-radius : 31px;
  background    : #343c4c;
}

::-webkit-scrollbar-thumb:hover {
  background : #343c4c;
}

::-webkit-scrollbar-thumb:active {
  background : #353c4c;
}

::-webkit-scrollbar-track {
  border        : 0px none #ffffff;
  border-radius : 50px;
  background    : #181f2c;
}

::-webkit-scrollbar-track:hover {
  background : #181f2c;
}

::-webkit-scrollbar-track:active {
  background : #181f2c;
}

::-webkit-scrollbar-corner {
  background : #181f2c;
}

/* Button */

.btn {
  display            : flex;
  -moz-appearance    : none;
  -o-appearance      : none;
  -webkit-appearance : none;
  width              : 107px;
  height             : 39px;
  color              : #fff;
  border             : none;
  border-radius      : 3px;
  background         : #363c4f;
  outline            : none;
  text-decoration    : none;
  align-items        : center;
  font-size          : 15px;
  justify-content    : center;
  cursor             : pointer;
}

.btn-table {
  -moz-appearance    : none;
  -o-appearance      : none;
  -webkit-appearance : none;
  width              : 107px;
  height             : 39px;
  color              : #fff;
  border             : none;
  border-radius      : 3px;
  background         : #363c4f;
  outline            : none;
  text-decoration    : none;
  align-items        : center;
  font-size          : 15px;
  justify-content    : center;
  cursor             : pointer;
}

.btn.btn-small, .btn-table.btn-small {
  font-size: 13px;
  height: 27px;
}

.btn.btn-exsmall, .btn-table.btn-exsmall {
  width: 66px;
  font-size: 11px;
  height: 18px;
}

.btn.btn-xssmall {
  font-size: 12px;
  height: 25px;
}

.btn.btn-big {
  font-size: 15px;
  height: 41px;
  text-transform: uppercase;
}

.btn.btn-autowidth, .btn-table.btn-autowidth {
  width   : auto;
  padding : 0px 10px;
}

.btn:hover {
  background : #3f4559;
}

.btn.btn-orange {
  background : #ff7700;
}

.btn.btn-orange:hover {
  background : #fe8114;
}

.btn.btn-green {
  background: #26a054;
}

.btn.btn-blue {
  background: #066fdc;
}

.btn.btn-black {
  background: #000;
}

.btn.btn-red {
  background: #e30f0f;
}

.btn.btn-red:hover {
  background: #cf1010;
}

.btn.btn-green {
  background: #29c359;
}

.btn.btn-green:hover {
  background: #29c359;
}

.btn.btn-lightred {
  background: #db4931;
}



.btn-shadow.btn-blue {
  background : #006cff;
}

.btn-shadow.btn-blue:hover {
  background : #1461fe;
}

.btn-shadow {
  display            : flex;
  -moz-appearance    : none;
  -o-appearance      : none;
  -webkit-appearance : none;
  height             : 39px;
  padding            : 0px 21px;
  color              : #fff;
  border             : none;
  border-radius      : 3px;
  background         : #ff7700;
  outline            : none;
  box-shadow         : 0px 5px 15px 0px #ff770052;
  text-decoration    : none;
  align-items        : center;
  font-size          : 13px;
  font-weight        : 700;
  justify-content    : center;
  cursor             : pointer;
}

.btn-shadow:hover {
  background : #fe8114;
}

.btn-shadow.btn-grey {
  background : #a6a7a7;
  box-shadow : 0px 5px 15px 0px #a6a7a752;
}

.btn-shadow.btn-grey:hover {
  background : #969798;
}

.btn-shadow.btn-black {
  background : #262626;
  box-shadow : 0px 5px 15px 0px #26262652;
}

.btn-shadow.btn-black:hover {
  background : #232323;
}

/* Loading */

.sk-folding-cube {
  position          : relative;
  width             : 40px;
  height            : 40px;
  margin            : 20px auto;
  -webkit-transform : rotateZ(45deg);
  transform         : rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  position          : relative;
  width             : 50%;
  height            : 50%;
  float             : left;
  -ms-transform     : scale(1.1);
  -webkit-transform : scale(1.1);
  transform         : scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content                  : '';
  position                 : absolute;
  top                      : 0;
  left                     : 0;
  width                    : 100%;
  height                   : 100%;
  background-color         : #333;
  -webkit-animation        : sk-foldCubeAngle 1.8s infinite linear both;
  animation                : sk-foldCubeAngle 1.8s infinite linear both;
  -ms-transform-origin     : 100% 100%;
  -webkit-transform-origin : 100% 100%;
  transform-origin         : 100% 100%;
}

.sk-folding-cube.sk-folding-cube-orange .sk-cube:before {
  background-color : #ff7700;
}

.sk-folding-cube.sk-folding-cube-white .sk-cube:before {
  background-color : #fff;
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform : scale(1.1) rotateZ(90deg);
  transform         : scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform : scale(1.1) rotateZ(180deg);
  transform         : scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform : scale(1.1) rotateZ(270deg);
  transform         : scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay : 0.3s;
  animation-delay         : 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay : 0.55s;
  animation-delay         : 0.55s;
}

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay : 0.85s;
  animation-delay         : 0.85s;
}

@-webkit-keyframes sk-foldCubeAngle {
  0%,
  10% {
    opacity           : 0;
    -webkit-transform : perspective(140px) rotateX(-180deg);
    transform         : perspective(140px) rotateX(-180deg);
  }

  25%,
  75% {
    opacity           : 1;
    -webkit-transform : perspective(140px) rotateX(0deg);
    transform         : perspective(140px) rotateX(0deg);
  }

  90%,
  100% {
    opacity           : 0;
    -webkit-transform : perspective(140px) rotateY(180deg);
    transform         : perspective(140px) rotateY(180deg);
  }
}

@keyframes sk-foldCubeAngle {
  0%,
  10% {
    opacity           : 0;
    -webkit-transform : perspective(140px) rotateX(-180deg);
    transform         : perspective(140px) rotateX(-180deg);
  }

  25%,
  75% {
    opacity           : 1;
    -webkit-transform : perspective(140px) rotateX(0deg);
    transform         : perspective(140px) rotateX(0deg);
  }

  90%,
  100% {
    opacity           : 0;
    -webkit-transform : perspective(140px) rotateY(180deg);
    transform         : perspective(140px) rotateY(180deg);
  }
}

/* Other loading */
.spinner {
  width: 40px;
  height: 40px;
  margin: 100px auto;
  background-color: rgba(244, 246, 249,0.4);

  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

.spinner.spinner-dark {
  background-color:rgba(86, 86, 86, 0.4);
}

@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}

/* Chosen */

.chosen-container-single .chosen-single {
  height        : 40px;
  padding       : 0 0 0 12px;
  border        : 1px solid #e1e3e6;
  border-radius : 2px;
  background    : #fff;
  box-shadow    : none;
}

.chosen-container-single .chosen-single span {
  margin-top : 7px;
  font-size  : 15px;
}

.chosen-container-single .chosen-single div {
  top    : 8px;
  right  : 12px;
  width  : 10px;
  height : 25px;
}

/* Message */

section.kr-msg {
  display         : none;
  margin-bottom   : 15px;
  padding         : 12px 0px;
  color           : #fff;
  background      : #3ed064;
  text-align      : center;
  align-items     : center;
  justify-content : center;
  border-radius: 2px;
  box-shadow: 0px 2px 5px #00000036;
}

section.kr-msg.kr-msg-error {
  background : #e54747;
}

section.kr-msg.kr-msg-infos {
  background : #32373f;
}

section.kr-msg.kr-msg-warning {
  background : #ef6c00;
}

/* Auto fill */

input:-webkit-autofill,
input:-webkit-autofill:focus input:-webkit-autofill,
input:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:focus,
select:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus {
  -webkit-box-shadow : 0 0 0 30px white inset;
}

/* Dropzone */

.dz-preview {
  display : none;
}

/* Alert */

section.kr-notif-alt {
  z-index        : 99999999999;
  display        : flex;
  position       : absolute;
  bottom         : 80px;
  left           : 40px;
  flex-direction : column-reverse;
}

section.kr-notif-alt > div {
  display        : flex;
  width          : 300px;
  margin-top     : 10px;
  border-top     : 3px solid #22aa5a;
  background     : #29c368;
  box-shadow     : 0px 2px 5px 0px #00000052;
  flex-direction : column;
}

section.kr-notif-alt > div > header {
  display         : flex;
  padding         : 7px 7px 7px 10px;
  align-items     : center;
  justify-content : space-between;
}

section.kr-notif-alt > div > header > div {
  display         : flex;
  width           : 25px;
  height          : 25px;
  background      : rgba(0,0,0,0.1);
  align-items     : center;
  justify-content : center;
  cursor          : pointer;
}

section.kr-notif-alt > div > header > span {
  color       : #fff;
  font-weight : 500;
}

section.kr-notif-alt > div > header > div > svg {
  width  : 20px;
  height : 20px;
  fill   : #fff;
}

section.kr-notif-alt > div > div {
  padding : 10px;
  color   : #fff;
}

section.kr-notif-alt > div.kr-notif-alt-err {
  border-top-color : #bf1616;
  background       : #df2323;
}

section.kr-notif-alt > div.kr-notif-alt-crypto {
  display: flex; align-items: stretch;
}

section.kr-notif-alt > div.kr-notif-alt-crypto {
  background: #1d2435 !important;
  border-top: none !important;
  display: flex; align-items: center;
  flex-direction: row;
  height: 80px;
  padding: 15px 15px 15px 21px;
  box-sizing: border-box;
}

section.kr-notif-alt > div.kr-notif-alt-crypto > div:first-child {
  width: 32px; height: 32px;
  display: flex; justify-content: center; align-items: center;
  margin-right: 15px;
  padding: 0;
}

section.kr-notif-alt > div.kr-notif-alt-crypto > div:first-child > img {
  width: 100%; height: 100%; filter: invert(1) brightness(1);
}

section.kr-notif-alt > div.kr-notif-alt-crypto > div:last-child {
  position: relative;
  flex:1;
  padding: 0;
}

section.kr-notif-alt > div.kr-notif-alt-crypto > div:last-child > div.kr-notif-alt-crypto-close {
  position: absolute;
  top:-5px; right:-5px;
  fill:#fff;
  width: 15px; height: 15px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0.6;
}

section.kr-notif-alt > div.kr-notif-alt-crypto > div:last-child > div.kr-notif-alt-crypto-close:hover {
  opacity: 1;
}

section.kr-notif-alt > div.kr-notif-alt-crypto > div:last-child > div.kr-notif-alt-crypto-desc {
  display: flex; flex-direction: column;
  position: relative;
}

section.kr-notif-alt > div.kr-notif-alt-crypto > div:last-child > div.kr-notif-alt-crypto-desc > label {
  margin-bottom: 1px;
  font-size: 16px;
}

section.kr-notif-alt > div.kr-notif-alt-crypto > div:last-child > div.kr-notif-alt-crypto-desc > span {
  font-weight: 100;
  font-size: 21px;
}

section.kr-notif-alt > div.kr-notif-alt-crypto > div:last-child > div.kr-notif-alt-crypto-desc > i {
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 4px;
  position: absolute;
  bottom: 0; right:0;
  opacity: 0.8;
}

section.kr-notif-alt > div.kr-notif-alt-crypto.kr-notif-alt-crypto-buy > div:last-child > div.kr-notif-alt-crypto-desc > span {
  color:#29c359;
}

/* Date picker */
.datepicker {
  z-index: 9999999999999 !important;
}

/* Loading screen */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;

  z-index: 999999999999;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #181f2c;
  display: flex;
  justify-content: center; align-items: center;
  overflow: hidden;
}

.pace .pace-progress {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;

  max-width: 350px;
  position: fixed;
  z-index: 2000;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 5px;
  width: 100%;
  background: #29d;
  transform: none !important;
}

.pace.pace-inactive {
  display: none;
}

/* Cookie popup */
div.kr-cookie-approval {
  position: absolute;
  bottom: 20px; left:20px;
  width: 250px;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0px 5px 15px #00000021;
  z-index: 99999999;
  display: flex; flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  display: none;
}

div.kr-cookie-approval > svg {
  width: 60px; height: 60px;
  margin: 10px 0px 20px 0px;
  fill:#000;
}

div.kr-cookie-approval > span {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
}

div.kr-cookie-approval > p {
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
  margin: 17px 0px; padding: 0;
}

/* Infos popup */
section.kr-adm-notif-popup {
  position: absolute;
  top:0; left:0; right:0;
  bottom: 0;
  z-index: 999999;
  display: flex; justify-content: center; align-items: center;
  background: rgba(0, 0, 0, 0.35);
}

section.kr-adm-notif-popup > section {
  width: 500px;
  height: 600px;
  border-radius  : 2px;
  background     : #fff;
  box-shadow     : 0px 1px 3px 0px #10141dc2;
  box-sizing: border-box;
  padding: 15px;
  overflow: auto;
}

section.kr-adm-notif-popup > section > h2 {
  text-align: center;
  margin: 15px 0px; padding: 0;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
}

section.kr-adm-notif-popup > section > div {
  color:#555;
}

section.kr-adm-notif-popup > section > footer {
  display: flex; justify-content: flex-end;
  margin-top: 20px;
}

/* Contact zone */
section.kr-contact-zone {
  position: absolute;
  z-index: 99999999;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.15);
  display: flex; justify-content: center; align-items: center;
}

section.kr-contact-zone > section {
  width: 750px;
  height: 400px;
  background: #f4f6f9;
  display: flex; align-items: stretch;
  box-shadow: 0px 2px 5px #00000061;
}

section.kr-contact-zone > section > div {
  flex:1;
}

section.kr-contact-zone > section > div.kr-contact-zone-image {
  background-image: url('../img/other/contact.png');
}

section.kr-contact-zone > section > div:last-child {
  display: flex; flex-direction: column;
  align-items: stretch;
}

section.kr-contact-zone > section > div:last-child > header {
  display: flex; justify-content: flex-end; align-items: center;
  padding: 10px;
  margin-bottom: 10px;
}

section.kr-contact-zone > section > div:last-child > header > div {
  width: 20px; height: 20px;
  display: flex; justify-content: center; align-items: center;
  cursor: pointer;
}

section.kr-contact-zone > section > div:last-child > header > div > svg {
  width: 100%; height: 100%;
}

section.kr-contact-zone > section > div:last-child > h2 {
  font-weight: 500;
  margin: 0; padding: 0;
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-right: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 5px;
}

section.kr-contact-zone > section > div:last-child > ul {
  margin-bottom: 20px;
  padding-right: 15px;
}

section.kr-contact-zone > section > div:last-child > ul > li {
  display: flex; justify-content: space-between;
  align-items: flex-start;
  font-size: 14px;
  margin-bottom: 10px;
}

section.kr-contact-zone > section > div:last-child > ul > li > span:first-child {
  text-transform: uppercase;
  font-weight: 500;
}
section.kr-contact-zone > section > div:last-child > ul > li > span:last-child {
  text-align: right;
}

section.kr-contact-zone > section > div:last-child > ul > li a {
  color:#000;
}

/* Lightbox */
.lightboxOverlay {
  z-index: 9999999 !important;
}

.lightbox {
  z-index: 9999999999999999 !important;
}

/* Datepicker */
.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em;
}

.daterangepicker:before, .daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
  float: none;
}

.daterangepicker.single .drp-selected {
  display: none;
}

.daterangepicker.show-calendar .drp-calendar {
  display: block;
}

.daterangepicker.show-calendar .drp-buttons {
  display: block;
}

.daterangepicker.auto-apply .drp-buttons {
  display: none;
}

.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px;
}

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
  padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}

.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.daterangepicker .calendar-table {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
}

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}

.daterangepicker td.week, .daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}

.daterangepicker td.in-range {
  background-color: #ebf4f8;
  border-color: transparent;
  color: #000;
  border-radius: 0;
}

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: #357ebd;
  border-color: transparent;
  color: #fff;
}

.daterangepicker th.month {
  width: auto;
}

.daterangepicker td.disabled, .daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
}

.daterangepicker.show-ranges .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #eee;
}

.daterangepicker .ranges li.active {
  background-color: #08c;
  color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto; }
    .daterangepicker .ranges ul {
      width: 140px; }
    .daterangepicker.single .ranges ul {
      width: 100%; }
    .daterangepicker.single .drp-calendar.left {
      clear: none; }
    .daterangepicker.single.ltr .ranges, .daterangepicker.single.ltr .drp-calendar {
      float: left; }
    .daterangepicker.single.rtl .ranges, .daterangepicker.single.rtl .drp-calendar {
      float: right; }
    .daterangepicker.ltr {
      direction: ltr;
      text-align: left; }
      .daterangepicker.ltr .drp-calendar.left {
        clear: left;
        margin-right: 0; }
        .daterangepicker.ltr .drp-calendar.left .calendar-table {
          border-right: none;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
      .daterangepicker.ltr .drp-calendar.right {
        margin-left: 0; }
        .daterangepicker.ltr .drp-calendar.right .calendar-table {
          border-left: none;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
      .daterangepicker.ltr .drp-calendar.left .calendar-table {
        padding-right: 8px; }
      .daterangepicker.ltr .ranges, .daterangepicker.ltr .drp-calendar {
        float: left; }
    .daterangepicker.rtl {
      direction: rtl;
      text-align: right; }
      .daterangepicker.rtl .drp-calendar.left {
        clear: right;
        margin-left: 0; }
        .daterangepicker.rtl .drp-calendar.left .calendar-table {
          border-left: none;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
      .daterangepicker.rtl .drp-calendar.right {
        margin-right: 0; }
        .daterangepicker.rtl .drp-calendar.right .calendar-table {
          border-right: none;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
      .daterangepicker.rtl .drp-calendar.left .calendar-table {
        padding-left: 12px; }
      .daterangepicker.rtl .ranges, .daterangepicker.rtl .drp-calendar {
        text-align: right;
        float: right; } }
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto; }
  .daterangepicker.ltr .ranges {
    float: left; }
  .daterangepicker.rtl .ranges {
    float: right; }
  .daterangepicker .drp-calendar.left {
    clear: none !important; } }

    /*  sweetalert2 */
    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
      overflow-y: hidden;
    }

    body.swal2-shown.swal2-height-auto {
      height: 100% !important;
    }

/* Selectize */
.selectize-input {
  box-shadow: none !important;
}

.selectize-control.multi .selectize-input > div {
  background: #fe8114 !important;
  padding: 4px 7px !important;
  color:#fff !important;
  border-radius: 2px;
}
