/**
 * Variables declared here can be overridden by consuming applications, with
 * the help of the `!default` flag.
 *
 * @example
 *     // overriding $hoverColor
 *     $hoverColor: rgba(red, 0.05);
 *
 *     // overriding image path
 *     $flagsImagePath: "images/";
 *
 *     // import the scss file after the overrides
 *     @import "bower_component/intl-tel-input/src/css/intlTelInput";
 */
.intl-tel-input {
    position: relative;
    display: inline-block;
}
.intl-tel-input * {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.intl-tel-input .hide {
    display: none;
}
.intl-tel-input .v-hide {
    visibility: hidden;
}
.intl-tel-input input,
.intl-tel-input input[type="text"],
.intl-tel-input input[type="tel"] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-inline-end: 36px;
    margin-inline-end: 0;
}
.intl-tel-input .flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    inset-inline-end: 0;
    padding: 1px;
}
.intl-tel-input .selected-flag {
    z-index: 1;
    position: relative;
    width: 80px;
    height: 100%;
    padding: 0 0 0 15px;
}
.intl-tel-input .selected-flag .iti-flag {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.intl-tel-input .selected-flag .iti-arrow {
    position: absolute;
    top: 50%;
    margin-top: -2px;
    inset-inline-end: 6px; /* This will be adjusted for each sdc class */
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid var(--extracted-color-1);
}
.intl-tel-input .selected-flag .iti-arrow.up {
    border-top: none;
    border-bottom: 4px solid var(--extracted-color-1);
}
.intl-tel-input .country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 4px;
    margin: 0;
    box-shadow: var(--normal-shadow) var(--normal-shadow-color);
    background-color: var(--popover);
    border: 1px solid var(--border);
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
    border-radius: var(--radius-md);
}
.intl-tel-input .country-list.dropup {
    bottom: 100%;
    margin-bottom: -1px;
}
.intl-tel-input .country-list .flag-box {
    display: inline-block;
    width: 20px;
}
@media (max-width: 500px) {
    .intl-tel-input .country-list {
        white-space: normal;
    }
}
.intl-tel-input .country-list .divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid var(--border);
}
.intl-tel-input .country-list .country {
    padding: 6px 8px;
    border-radius: var(--radius-sm);
}
.intl-tel-input .country-list .country .dial-code {
    color: var(--extracted-color-2);
}
.intl-tel-input .country-list .country.highlight {
    background-color: var(--accent);
}
.intl-tel-input .country-list .flag-box,
.intl-tel-input .country-list .country-name,
.intl-tel-input .country-list .dial-code {
    vertical-align: middle;
}
.intl-tel-input .country-list .flag-box,
.intl-tel-input .country-list .country-name {
    margin-inline-end: 6px;
}
.intl-tel-input.allow-dropdown input,
.intl-tel-input.allow-dropdown input[type="text"],
.intl-tel-input.allow-dropdown input[type="tel"],
.intl-tel-input.separate-dial-code input,
.intl-tel-input.separate-dial-code input[type="text"],
.intl-tel-input.separate-dial-code input[type="tel"] {
    padding-inline-end: 15px;
    padding-inline-start: 52px;
    margin-inline-start: 0;
}
.intl-tel-input.allow-dropdown .flag-container,
.intl-tel-input.separate-dial-code .flag-container {
    inset-inline-end: auto;
    inset-inline-start: 2px;
    top: 2px;
    bottom: 2px;
}
.intl-tel-input.allow-dropdown .selected-flag,
.intl-tel-input.separate-dial-code .selected-flag {
    width: 46px;
}
.intl-tel-input.allow-dropdown .flag-container:hover {
    cursor: pointer;
}
.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
    background-color: rgba(255, 255, 255, 0.1);
}
.intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,
.intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {
    cursor: default;
}
.intl-tel-input.allow-dropdown
input[disabled]
+ .flag-container:hover
.selected-flag,
.intl-tel-input.allow-dropdown
input[readonly]
+ .flag-container:hover
.selected-flag {
    background-color: transparent;
}
.intl-tel-input.separate-dial-code .selected-flag {
    background-color: rgba(255, 255, 255, 0.05);
    display: table;
    transition: background-color 0.15s var(--transition-function-1);
}
.intl-tel-input.separate-dial-code .selected-dial-code {
    display: table-cell;
    vertical-align: middle;
    padding-inline-start: 28px;
    font-size: var(--text-sm);
}
/* Base arrow styles */
.intl-tel-input .selected-flag .iti-arrow {
    position: absolute;
    top: 50%;
    margin-top: -2px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid var(--extracted-color-1);
}

/* sdc-2 (base) */
.intl-tel-input.separate-dial-code.iti-sdc-2 input,
.intl-tel-input.separate-dial-code.iti-sdc-2 input[type="text"],
.intl-tel-input.separate-dial-code.iti-sdc-2 input[type="tel"] {
    padding-inline-start: 90px;
}
.intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {
    width: 88px;
    padding: 0 20px 0 15px; /* Added right padding for arrow space */
}
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type="text"],
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type="tel"] {
    padding-inline-start: 90px;
}
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {
    width: 80px;
    padding: 0 20px 0 15px; /* Added right padding for arrow space */
    border-radius: calc(var(--radius-sm) - 2px);
}
/* Adjusted arrow for sdc-2 */
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag .iti-arrow {
    inset-inline-end: 8px; /* Reduced from 10px to account for padding */
}

/* sdc-3 (increased by ~10%) */
.intl-tel-input.separate-dial-code.iti-sdc-3 input,
.intl-tel-input.separate-dial-code.iti-sdc-3 input[type="text"],
.intl-tel-input.separate-dial-code.iti-sdc-3 input[type="tel"] {
    padding-inline-start: 102px;
}
.intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {
    width: 97px;
    padding: 0 22px 0 15px; /* Added right padding for arrow space */
}
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type="text"],
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type="tel"] {
    padding-inline-start: 102px;
}
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
    width: 88px;
    padding: 0 22px 0 15px; /* Added right padding for arrow space */
    border-radius: calc(var(--radius-sm) - 2px);
}
/* Adjusted arrow for sdc-3 */
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag .iti-arrow {
    inset-inline-end: 10px; /* Reduced from 12px to account for padding */
}

/* sdc-4 (increased by ~15%) */
.intl-tel-input.separate-dial-code.iti-sdc-4 input,
.intl-tel-input.separate-dial-code.iti-sdc-4 input[type="text"],
.intl-tel-input.separate-dial-code.iti-sdc-4 input[type="tel"] {
    padding-inline-start: 114px;
}
.intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {
    width: 101px;
    padding: 0 24px 0 15px; /* Added right padding for arrow space */
}
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type="text"],
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type="tel"] {
    padding-inline-start: 114px;
}
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {
    width: 92px;
    padding: 0 24px 0 15px; /* Added right padding for arrow space */
    border-radius: calc(var(--radius-sm) - 2px);
}
/* Adjusted arrow for sdc-4 */
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag .iti-arrow {
    inset-inline-end: 12px; /* Reduced from 14px to account for padding */
}

/* sdc-5 (increased by ~20%) */
.intl-tel-input.separate-dial-code.iti-sdc-5 input,
.intl-tel-input.separate-dial-code.iti-sdc-5 input[type="text"],
.intl-tel-input.separate-dial-code.iti-sdc-5 input[type="tel"] {
    padding-inline-start: 122px;
}
.intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {
    width: 106px;
    padding: 0 26px 0 15px; /* Added right padding for arrow space */
}
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type="text"],
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type="tel"] {
    padding-inline-start: 122px;
}
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {
    width: 96px;
    padding: 0 26px 0 15px; /* Added right padding for arrow space */
    border-radius: calc(var(--radius-sm) - 2px);
}
/* Adjusted arrow for sdc-5 */
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag .iti-arrow {
    inset-inline-end: 14px; /* Reduced from 16px to account for padding */
}

.intl-tel-input.iti-container {
    position: absolute;
    top: -1000px;
    inset-inline-start: -1000px;
    z-index: 1060;
    padding: 1px;
}
.intl-tel-input.iti-container:hover {
    cursor: pointer;
}

.iti-mobile .intl-tel-input.iti-container {
    top: 30px;
    bottom: 30px;
    inset-inline-start: 30px;
    inset-inline-end: 30px;
    position: fixed;
}

.iti-mobile .intl-tel-input .country-list {
    max-height: 100%;
    width: 100%;
}
.iti-mobile .intl-tel-input .country-list .country {
    padding: 10px 10px;
    line-height: 1.5em;
}

.iti-flag {
    width: 20px;
}
.iti-flag.be {
    width: 18px;
}
.iti-flag.ch {
    width: 15px;
}
.iti-flag.mc {
    width: 19px;
}
.iti-flag.ne {
    width: 18px;
}
.iti-flag.np {
    width: 13px;
}
.iti-flag.va {
    width: 15px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2 / 1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {
    .iti-flag {
        background-size: 5630px 15px;
    }
}
.iti-flag.ac {
    height: 10px;
    background-position: 0px 0px;
}
.iti-flag.ad {
    height: 14px;
    background-position: -22px 0px;
}
.iti-flag.ae {
    height: 10px;
    background-position: -44px 0px;
}
.iti-flag.af {
    height: 14px;
    background-position: -66px 0px;
}
.iti-flag.ag {
    height: 14px;
    background-position: -88px 0px;
}
.iti-flag.ai {
    height: 10px;
    background-position: -110px 0px;
}
.iti-flag.al {
    height: 15px;
    background-position: -132px 0px;
}
.iti-flag.am {
    height: 10px;
    background-position: -154px 0px;
}
.iti-flag.ao {
    height: 14px;
    background-position: -176px 0px;
}
.iti-flag.aq {
    height: 14px;
    background-position: -198px 0px;
}
.iti-flag.ar {
    height: 13px;
    background-position: -220px 0px;
}
.iti-flag.as {
    height: 10px;
    background-position: -242px 0px;
}
.iti-flag.at {
    height: 14px;
    background-position: -264px 0px;
}
.iti-flag.au {
    height: 10px;
    background-position: -286px 0px;
}
.iti-flag.aw {
    height: 14px;
    background-position: -308px 0px;
}
.iti-flag.ax {
    height: 13px;
    background-position: -330px 0px;
}
.iti-flag.az {
    height: 10px;
    background-position: -352px 0px;
}
.iti-flag.ba {
    height: 10px;
    background-position: -374px 0px;
}
.iti-flag.bb {
    height: 14px;
    background-position: -396px 0px;
}
.iti-flag.bd {
    height: 12px;
    background-position: -418px 0px;
}
.iti-flag.be {
    height: 15px;
    background-position: -440px 0px;
}
.iti-flag.bf {
    height: 14px;
    background-position: -460px 0px;
}
.iti-flag.bg {
    height: 12px;
    background-position: -482px 0px;
}
.iti-flag.bh {
    height: 12px;
    background-position: -504px 0px;
}
.iti-flag.bi {
    height: 12px;
    background-position: -526px 0px;
}
.iti-flag.bj {
    height: 14px;
    background-position: -548px 0px;
}
.iti-flag.bl {
    height: 14px;
    background-position: -570px 0px;
}
.iti-flag.bm {
    height: 10px;
    background-position: -592px 0px;
}
.iti-flag.bn {
    height: 10px;
    background-position: -614px 0px;
}
.iti-flag.bo {
    height: 14px;
    background-position: -636px 0px;
}
.iti-flag.bq {
    height: 14px;
    background-position: -658px 0px;
}
.iti-flag.br {
    height: 14px;
    background-position: -680px 0px;
}
.iti-flag.bs {
    height: 10px;
    background-position: -702px 0px;
}
.iti-flag.bt {
    height: 14px;
    background-position: -724px 0px;
}
.iti-flag.bv {
    height: 15px;
    background-position: -746px 0px;
}
.iti-flag.bw {
    height: 14px;
    background-position: -768px 0px;
}
.iti-flag.by {
    height: 10px;
    background-position: -790px 0px;
}
.iti-flag.bz {
    height: 14px;
    background-position: -812px 0px;
}
.iti-flag.ca {
    height: 10px;
    background-position: -834px 0px;
}
.iti-flag.cc {
    height: 10px;
    background-position: -856px 0px;
}
.iti-flag.cd {
    height: 15px;
    background-position: -878px 0px;
}
.iti-flag.cf {
    height: 14px;
    background-position: -900px 0px;
}
.iti-flag.cg {
    height: 14px;
    background-position: -922px 0px;
}
.iti-flag.ch {
    height: 15px;
    background-position: -944px 0px;
}
.iti-flag.ci {
    height: 14px;
    background-position: -961px 0px;
}
.iti-flag.ck {
    height: 10px;
    background-position: -983px 0px;
}
.iti-flag.cl {
    height: 14px;
    background-position: -1005px 0px;
}
.iti-flag.cm {
    height: 14px;
    background-position: -1027px 0px;
}
.iti-flag.cn {
    height: 14px;
    background-position: -1049px 0px;
}
.iti-flag.co {
    height: 14px;
    background-position: -1071px 0px;
}
.iti-flag.cp {
    height: 14px;
    background-position: -1093px 0px;
}
.iti-flag.cr {
    height: 12px;
    background-position: -1115px 0px;
}
.iti-flag.cu {
    height: 10px;
    background-position: -1137px 0px;
}
.iti-flag.cv {
    height: 12px;
    background-position: -1159px 0px;
}
.iti-flag.cw {
    height: 14px;
    background-position: -1181px 0px;
}
.iti-flag.cx {
    height: 10px;
    background-position: -1203px 0px;
}
.iti-flag.cy {
    height: 13px;
    background-position: -1225px 0px;
}
.iti-flag.cz {
    height: 14px;
    background-position: -1247px 0px;
}
.iti-flag.de {
    height: 12px;
    background-position: -1269px 0px;
}
.iti-flag.dg {
    height: 10px;
    background-position: -1291px 0px;
}
.iti-flag.dj {
    height: 14px;
    background-position: -1313px 0px;
}
.iti-flag.dk {
    height: 15px;
    background-position: -1335px 0px;
}
.iti-flag.dm {
    height: 10px;
    background-position: -1357px 0px;
}
.iti-flag.do {
    height: 13px;
    background-position: -1379px 0px;
}
.iti-flag.dz {
    height: 14px;
    background-position: -1401px 0px;
}
.iti-flag.ea {
    height: 14px;
    background-position: -1423px 0px;
}
.iti-flag.ec {
    height: 14px;
    background-position: -1445px 0px;
}
.iti-flag.ee {
    height: 13px;
    background-position: -1467px 0px;
}
.iti-flag.eg {
    height: 14px;
    background-position: -1489px 0px;
}
.iti-flag.eh {
    height: 10px;
    background-position: -1511px 0px;
}
.iti-flag.er {
    height: 10px;
    background-position: -1533px 0px;
}
.iti-flag.es {
    height: 14px;
    background-position: -1555px 0px;
}
.iti-flag.et {
    height: 10px;
    background-position: -1577px 0px;
}
.iti-flag.eu {
    height: 14px;
    background-position: -1599px 0px;
}
.iti-flag.fi {
    height: 12px;
    background-position: -1621px 0px;
}
.iti-flag.fj {
    height: 10px;
    background-position: -1643px 0px;
}
.iti-flag.fk {
    height: 10px;
    background-position: -1665px 0px;
}
.iti-flag.fm {
    height: 11px;
    background-position: -1687px 0px;
}
.iti-flag.fo {
    height: 15px;
    background-position: -1709px 0px;
}
.iti-flag.fr {
    height: 14px;
    background-position: -1731px 0px;
}
.iti-flag.ga {
    height: 15px;
    background-position: -1753px 0px;
}
.iti-flag.gb {
    height: 10px;
    background-position: -1775px 0px;
}
.iti-flag.gd {
    height: 12px;
    background-position: -1797px 0px;
}
.iti-flag.ge {
    height: 14px;
    background-position: -1819px 0px;
}
.iti-flag.gf {
    height: 14px;
    background-position: -1841px 0px;
}
.iti-flag.gg {
    height: 14px;
    background-position: -1863px 0px;
}
.iti-flag.gh {
    height: 14px;
    background-position: -1885px 0px;
}
.iti-flag.gi {
    height: 10px;
    background-position: -1907px 0px;
}
.iti-flag.gl {
    height: 14px;
    background-position: -1929px 0px;
}
.iti-flag.gm {
    height: 14px;
    background-position: -1951px 0px;
}
.iti-flag.gn {
    height: 14px;
    background-position: -1973px 0px;
}
.iti-flag.gp {
    height: 14px;
    background-position: -1995px 0px;
}
.iti-flag.gq {
    height: 14px;
    background-position: -2017px 0px;
}
.iti-flag.gr {
    height: 14px;
    background-position: -2039px 0px;
}
.iti-flag.gs {
    height: 10px;
    background-position: -2061px 0px;
}
.iti-flag.gt {
    height: 13px;
    background-position: -2083px 0px;
}
.iti-flag.gu {
    height: 11px;
    background-position: -2105px 0px;
}
.iti-flag.gw {
    height: 10px;
    background-position: -2127px 0px;
}
.iti-flag.gy {
    height: 12px;
    background-position: -2149px 0px;
}
.iti-flag.hk {
    height: 14px;
    background-position: -2171px 0px;
}
.iti-flag.hm {
    height: 10px;
    background-position: -2193px 0px;
}
.iti-flag.hn {
    height: 10px;
    background-position: -2215px 0px;
}
.iti-flag.hr {
    height: 10px;
    background-position: -2237px 0px;
}
.iti-flag.ht {
    height: 12px;
    background-position: -2259px 0px;
}
.iti-flag.hu {
    height: 10px;
    background-position: -2281px 0px;
}
.iti-flag.ic {
    height: 14px;
    background-position: -2303px 0px;
}
.iti-flag.id {
    height: 14px;
    background-position: -2325px 0px;
}
.iti-flag.ie {
    height: 10px;
    background-position: -2347px 0px;
}
.iti-flag.il {
    height: 15px;
    background-position: -2369px 0px;
}
.iti-flag.im {
    height: 10px;
    background-position: -2391px 0px;
}
.iti-flag.in {
    height: 14px;
    background-position: -2413px 0px;
}
.iti-flag.io {
    height: 10px;
    background-position: -2435px 0px;
}
.iti-flag.iq {
    height: 14px;
    background-position: -2457px 0px;
}
.iti-flag.ir {
    height: 12px;
    background-position: -2479px 0px;
}
.iti-flag.is {
    height: 15px;
    background-position: -2501px 0px;
}
.iti-flag.it {
    height: 14px;
    background-position: -2523px 0px;
}
.iti-flag.je {
    height: 12px;
    background-position: -2545px 0px;
}
.iti-flag.jm {
    height: 10px;
    background-position: -2567px 0px;
}
.iti-flag.jo {
    height: 10px;
    background-position: -2589px 0px;
}
.iti-flag.jp {
    height: 14px;
    background-position: -2611px 0px;
}
.iti-flag.ke {
    height: 14px;
    background-position: -2633px 0px;
}
.iti-flag.kg {
    height: 12px;
    background-position: -2655px 0px;
}
.iti-flag.kh {
    height: 13px;
    background-position: -2677px 0px;
}
.iti-flag.ki {
    height: 10px;
    background-position: -2699px 0px;
}
.iti-flag.km {
    height: 12px;
    background-position: -2721px 0px;
}
.iti-flag.kn {
    height: 14px;
    background-position: -2743px 0px;
}
.iti-flag.kp {
    height: 10px;
    background-position: -2765px 0px;
}
.iti-flag.kr {
    height: 14px;
    background-position: -2787px 0px;
}
.iti-flag.kw {
    height: 10px;
    background-position: -2809px 0px;
}
.iti-flag.ky {
    height: 10px;
    background-position: -2831px 0px;
}
.iti-flag.kz {
    height: 10px;
    background-position: -2853px 0px;
}
.iti-flag.la {
    height: 14px;
    background-position: -2875px 0px;
}
.iti-flag.lb {
    height: 14px;
    background-position: -2897px 0px;
}
.iti-flag.lc {
    height: 10px;
    background-position: -2919px 0px;
}
.iti-flag.li {
    height: 12px;
    background-position: -2941px 0px;
}
.iti-flag.lk {
    height: 10px;
    background-position: -2963px 0px;
}
.iti-flag.lr {
    height: 11px;
    background-position: -2985px 0px;
}
.iti-flag.ls {
    height: 14px;
    background-position: -3007px 0px;
}
.iti-flag.lt {
    height: 12px;
    background-position: -3029px 0px;
}
.iti-flag.lu {
    height: 12px;
    background-position: -3051px 0px;
}
.iti-flag.lv {
    height: 10px;
    background-position: -3073px 0px;
}
.iti-flag.ly {
    height: 10px;
    background-position: -3095px 0px;
}
.iti-flag.ma {
    height: 14px;
    background-position: -3117px 0px;
}
.iti-flag.mc {
    height: 15px;
    background-position: -3139px 0px;
}
.iti-flag.md {
    height: 10px;
    background-position: -3160px 0px;
}
.iti-flag.me {
    height: 10px;
    background-position: -3182px 0px;
}
.iti-flag.mf {
    height: 14px;
    background-position: -3204px 0px;
}
.iti-flag.mg {
    height: 14px;
    background-position: -3226px 0px;
}
.iti-flag.mh {
    height: 11px;
    background-position: -3248px 0px;
}
.iti-flag.mk {
    height: 10px;
    background-position: -3270px 0px;
}
.iti-flag.ml {
    height: 14px;
    background-position: -3292px 0px;
}
.iti-flag.mm {
    height: 14px;
    background-position: -3314px 0px;
}
.iti-flag.mn {
    height: 10px;
    background-position: -3336px 0px;
}
.iti-flag.mo {
    height: 14px;
    background-position: -3358px 0px;
}
.iti-flag.mp {
    height: 10px;
    background-position: -3380px 0px;
}
.iti-flag.mq {
    height: 14px;
    background-position: -3402px 0px;
}
.iti-flag.mr {
    height: 14px;
    background-position: -3424px 0px;
}
.iti-flag.ms {
    height: 10px;
    background-position: -3446px 0px;
}
.iti-flag.mt {
    height: 14px;
    background-position: -3468px 0px;
}
.iti-flag.mu {
    height: 14px;
    background-position: -3490px 0px;
}
.iti-flag.mv {
    height: 14px;
    background-position: -3512px 0px;
}
.iti-flag.mw {
    height: 14px;
    background-position: -3534px 0px;
}
.iti-flag.mx {
    height: 12px;
    background-position: -3556px 0px;
}
.iti-flag.my {
    height: 10px;
    background-position: -3578px 0px;
}
.iti-flag.mz {
    height: 14px;
    background-position: -3600px 0px;
}
.iti-flag.na {
    height: 14px;
    background-position: -3622px 0px;
}
.iti-flag.nc {
    height: 10px;
    background-position: -3644px 0px;
}
.iti-flag.ne {
    height: 15px;
    background-position: -3666px 0px;
}
.iti-flag.nf {
    height: 10px;
    background-position: -3686px 0px;
}
.iti-flag.ng {
    height: 10px;
    background-position: -3708px 0px;
}
.iti-flag.ni {
    height: 12px;
    background-position: -3730px 0px;
}
.iti-flag.nl {
    height: 14px;
    background-position: -3752px 0px;
}
.iti-flag.no {
    height: 15px;
    background-position: -3774px 0px;
}
.iti-flag.np {
    height: 15px;
    background-position: -3796px 0px;
}
.iti-flag.nr {
    height: 10px;
    background-position: -3811px 0px;
}
.iti-flag.nu {
    height: 10px;
    background-position: -3833px 0px;
}
.iti-flag.nz {
    height: 10px;
    background-position: -3855px 0px;
}
.iti-flag.om {
    height: 10px;
    background-position: -3877px 0px;
}
.iti-flag.pa {
    height: 14px;
    background-position: -3899px 0px;
}
.iti-flag.pe {
    height: 14px;
    background-position: -3921px 0px;
}
.iti-flag.pf {
    height: 14px;
    background-position: -3943px 0px;
}
.iti-flag.pg {
    height: 15px;
    background-position: -3965px 0px;
}
.iti-flag.ph {
    height: 10px;
    background-position: -3987px 0px;
}
.iti-flag.pk {
    height: 14px;
    background-position: -4009px 0px;
}
.iti-flag.pl {
    height: 13px;
    background-position: -4031px 0px;
}
.iti-flag.pm {
    height: 14px;
    background-position: -4053px 0px;
}
.iti-flag.pn {
    height: 10px;
    background-position: -4075px 0px;
}
.iti-flag.pr {
    height: 14px;
    background-position: -4097px 0px;
}
.iti-flag.ps {
    height: 10px;
    background-position: -4119px 0px;
}
.iti-flag.pt {
    height: 14px;
    background-position: -4141px 0px;
}
.iti-flag.pw {
    height: 13px;
    background-position: -4163px 0px;
}
.iti-flag.py {
    height: 11px;
    background-position: -4185px 0px;
}
.iti-flag.qa {
    height: 8px;
    background-position: -4207px 0px;
}
.iti-flag.re {
    height: 14px;
    background-position: -4229px 0px;
}
.iti-flag.ro {
    height: 14px;
    background-position: -4251px 0px;
}
.iti-flag.rs {
    height: 14px;
    background-position: -4273px 0px;
}
.iti-flag.ru {
    height: 14px;
    background-position: -4295px 0px;
}
.iti-flag.rw {
    height: 14px;
    background-position: -4317px 0px;
}
.iti-flag.sa {
    height: 14px;
    background-position: -4339px 0px;
}
.iti-flag.sb {
    height: 10px;
    background-position: -4361px 0px;
}
.iti-flag.sc {
    height: 10px;
    background-position: -4383px 0px;
}
.iti-flag.sd {
    height: 10px;
    background-position: -4405px 0px;
}
.iti-flag.se {
    height: 13px;
    background-position: -4427px 0px;
}
.iti-flag.sg {
    height: 14px;
    background-position: -4449px 0px;
}
.iti-flag.sh {
    height: 10px;
    background-position: -4471px 0px;
}
.iti-flag.si {
    height: 10px;
    background-position: -4493px 0px;
}
.iti-flag.sj {
    height: 15px;
    background-position: -4515px 0px;
}
.iti-flag.sk {
    height: 14px;
    background-position: -4537px 0px;
}
.iti-flag.sl {
    height: 14px;
    background-position: -4559px 0px;
}
.iti-flag.sm {
    height: 15px;
    background-position: -4581px 0px;
}
.iti-flag.sn {
    height: 14px;
    background-position: -4603px 0px;
}
.iti-flag.so {
    height: 14px;
    background-position: -4625px 0px;
}
.iti-flag.sr {
    height: 14px;
    background-position: -4647px 0px;
}
.iti-flag.ss {
    height: 10px;
    background-position: -4669px 0px;
}
.iti-flag.st {
    height: 10px;
    background-position: -4691px 0px;
}
.iti-flag.sv {
    height: 12px;
    background-position: -4713px 0px;
}
.iti-flag.sx {
    height: 14px;
    background-position: -4735px 0px;
}
.iti-flag.sy {
    height: 14px;
    background-position: -4757px 0px;
}
.iti-flag.sz {
    height: 14px;
    background-position: -4779px 0px;
}
.iti-flag.ta {
    height: 10px;
    background-position: -4801px 0px;
}
.iti-flag.tc {
    height: 10px;
    background-position: -4823px 0px;
}
.iti-flag.td {
    height: 14px;
    background-position: -4845px 0px;
}
.iti-flag.tf {
    height: 14px;
    background-position: -4867px 0px;
}
.iti-flag.tg {
    height: 13px;
    background-position: -4889px 0px;
}
.iti-flag.th {
    height: 14px;
    background-position: -4911px 0px;
}
.iti-flag.tj {
    height: 10px;
    background-position: -4933px 0px;
}
.iti-flag.tk {
    height: 10px;
    background-position: -4955px 0px;
}
.iti-flag.tl {
    height: 10px;
    background-position: -4977px 0px;
}
.iti-flag.tm {
    height: 14px;
    background-position: -4999px 0px;
}
.iti-flag.tn {
    height: 14px;
    background-position: -5021px 0px;
}
.iti-flag.to {
    height: 10px;
    background-position: -5043px 0px;
}
.iti-flag.tr {
    height: 14px;
    background-position: -5065px 0px;
}
.iti-flag.tt {
    height: 12px;
    background-position: -5087px 0px;
}
.iti-flag.tv {
    height: 10px;
    background-position: -5109px 0px;
}
.iti-flag.tw {
    height: 14px;
    background-position: -5131px 0px;
}
.iti-flag.tz {
    height: 14px;
    background-position: -5153px 0px;
}
.iti-flag.ua {
    height: 14px;
    background-position: -5175px 0px;
}
.iti-flag.ug {
    height: 14px;
    background-position: -5197px 0px;
}
.iti-flag.um {
    height: 11px;
    background-position: -5219px 0px;
}
.iti-flag.us {
    height: 11px;
    background-position: -5241px 0px;
}
.iti-flag.uy {
    height: 14px;
    background-position: -5263px 0px;
}
.iti-flag.uz {
    height: 10px;
    background-position: -5285px 0px;
}
.iti-flag.va {
    height: 15px;
    background-position: -5307px 0px;
}
.iti-flag.vc {
    height: 14px;
    background-position: -5324px 0px;
}
.iti-flag.ve {
    height: 14px;
    background-position: -5346px 0px;
}
.iti-flag.vg {
    height: 10px;
    background-position: -5368px 0px;
}
.iti-flag.vi {
    height: 14px;
    background-position: -5390px 0px;
}
.iti-flag.vn {
    height: 14px;
    background-position: -5412px 0px;
}
.iti-flag.vu {
    height: 12px;
    background-position: -5434px 0px;
}
.iti-flag.wf {
    height: 14px;
    background-position: -5456px 0px;
}
.iti-flag.ws {
    height: 10px;
    background-position: -5478px 0px;
}
.iti-flag.xk {
    height: 15px;
    background-position: -5500px 0px;
}
.iti-flag.ye {
    height: 14px;
    background-position: -5522px 0px;
}
.iti-flag.yt {
    height: 14px;
    background-position: -5544px 0px;
}
.iti-flag.za {
    height: 14px;
    background-position: -5566px 0px;
}
.iti-flag.zm {
    height: 14px;
    background-position: -5588px 0px;
}
.iti-flag.zw {
    height: 10px;
    background-position: -5610px 0px;
}

.iti-flag {
    width: 20px;
    height: 15px;
    box-shadow: 0px 0px 1px 0px var(--extracted-color-3);
    background-image: url("../img/flags.png");
    background-repeat: no-repeat;
    background-color: var(--extracted-color-4);
    background-position: 20px 0;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2 / 1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {
    .iti-flag {
        background-image: url("../img/flags@2x.png");
    }
}

.iti-flag.np {
    background-color: transparent;
}

/**
 * WHMCS Telephone Country Code Dropdown
 *
 * Using https://github.com/jackocnr/intl-tel-input
 *
 * @copyright Copyright (c) WHMCS Limited 2005-2017
 * @license http://www.whmcs.com/license/ WHMCS Eula
 */

.intl-tel-input {
    width: 100%;
}

/**
  * bootstrap-switch - Turn checkboxes and radio buttons into toggle switches.
  *
  * @version v4.0.0-alpha.1
  * @homepage http://www.bootstrap-switch.org
  * @author Mattia Larentis <mattia@larentis.eu> (http://larentis.eu)
  * @license Apache-2.0
  */

.bootstrap-switch {
    display: inline-block;
    direction: ltr;
    cursor: pointer;
    border-radius: 0.25rem;
    border: 1px solid;
    border-color: var(--border);
    position: relative;
    text-align: left;
    overflow: hidden;
    line-height: 8px;
    z-index: 0;
    -webkit-user-select: none;
    user-select: none;
    vertical-align: middle;
    background-color: var(--input);
    transition: border-color 0.15s ease-in-out;
}
.bootstrap-switch .bootstrap-switch-container {
    display: inline-flex;
    top: 0;
    border-radius: 0.25rem;
    transform: translate3d(0, 0, 0);
}
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off,
.bootstrap-switch .bootstrap-switch-label {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block !important;
    height: 100%;
    line-height: 1.25;
    padding: 0.5rem 1rem;
    font-size: var(--text-sm);
    border-radius: 0;
}
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off {
    text-align: center;
    z-index: 1;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
    color: var(--white);
    background-color: var(--primary-600);
    border-color: var(--primary-600);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary:hover,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary:hover {
    color: var(--extracted-color-5);
    background-color: var(--extracted-color-6);
    border-color: var(--extracted-color-7);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary:focus,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary.focus,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary:focus,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary.focus {
    box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary.disabled,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary:disabled,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary.disabled,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary:disabled {
    background-color: var(--extracted-color-8);
    border-color: var(--extracted-color-8);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary:active,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary.active,
.show
> .bootstrap-switch
.bootstrap-switch-handle-on.bootstrap-switch-primary.dropdown-toggle,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary:active,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary.active,
.show
> .bootstrap-switch
.bootstrap-switch-handle-off.bootstrap-switch-primary.dropdown-toggle {
    color: var(--extracted-color-5);
    background-color: var(--extracted-color-6);
    background-image: none;
    border-color: var(--extracted-color-7);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-secondary,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-secondary {
    color: var(--extracted-color-9);
    background-color: var(--extracted-color-5);
    border-color: var(--extracted-color-10);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-secondary:hover,
.bootstrap-switch
.bootstrap-switch-handle-off.bootstrap-switch-secondary:hover {
    color: var(--extracted-color-9);
    background-color: var(--extracted-color-11);
    border-color: var(--extracted-color-12);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-secondary:focus,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-secondary.focus,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-secondary:focus,
.bootstrap-switch
.bootstrap-switch-handle-off.bootstrap-switch-secondary.focus {
    box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
}
.bootstrap-switch
.bootstrap-switch-handle-on.bootstrap-switch-secondary.disabled,
.bootstrap-switch
.bootstrap-switch-handle-on.bootstrap-switch-secondary:disabled,
.bootstrap-switch
.bootstrap-switch-handle-off.bootstrap-switch-secondary.disabled,
.bootstrap-switch
.bootstrap-switch-handle-off.bootstrap-switch-secondary:disabled {
    background-color: var(--extracted-color-5);
    border-color: var(--extracted-color-10);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-secondary:active,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-secondary.active,
.show
> .bootstrap-switch
.bootstrap-switch-handle-on.bootstrap-switch-secondary.dropdown-toggle,
.bootstrap-switch
.bootstrap-switch-handle-off.bootstrap-switch-secondary:active,
.bootstrap-switch
.bootstrap-switch-handle-off.bootstrap-switch-secondary.active,
.show
> .bootstrap-switch
.bootstrap-switch-handle-off.bootstrap-switch-secondary.dropdown-toggle {
    color: var(--extracted-color-9);
    background-color: var(--extracted-color-11);
    background-image: none;
    border-color: var(--extracted-color-12);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
    color: var(--extracted-color-5);
    background-color: var(--extracted-color-13);
    border-color: var(--extracted-color-13);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info:hover,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info:hover {
    color: var(--extracted-color-5);
    background-color: var(--extracted-color-14);
    border-color: var(--extracted-color-15);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info:focus,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info.focus,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info:focus,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info.focus {
    box-shadow: 0 0 0 2px rgba(91, 192, 222, 0.5);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info.disabled,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info:disabled,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info.disabled,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info:disabled {
    background-color: var(--extracted-color-13);
    border-color: var(--extracted-color-13);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info:active,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info.active,
.show
> .bootstrap-switch
.bootstrap-switch-handle-on.bootstrap-switch-info.dropdown-toggle,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info:active,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info.active,
.show
> .bootstrap-switch
.bootstrap-switch-handle-off.bootstrap-switch-info.dropdown-toggle {
    color: var(--extracted-color-5);
    background-color: var(--extracted-color-14);
    background-image: none;
    border-color: var(--extracted-color-15);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
    color: var(--extracted-color-5);
    background-color: var(--extracted-color-16);
    border-color: var(--extracted-color-16);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success:hover,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success:hover {
    color: var(--extracted-color-5);
    background-color: var(--extracted-color-17);
    border-color: var(--extracted-color-18);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success:focus,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success.focus,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success:focus,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success.focus {
    box-shadow: 0 0 0 2px rgba(92, 184, 92, 0.5);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success.disabled,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success:disabled,
.bootstrap-switch
.bootstrap-switch-handle-off.bootstrap-switch-success.disabled,
.bootstrap-switch
.bootstrap-switch-handle-off.bootstrap-switch-success:disabled {
    background-color: var(--extracted-color-16);
    border-color: var(--extracted-color-16);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success:active,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success.active,
.show
> .bootstrap-switch
.bootstrap-switch-handle-on.bootstrap-switch-success.dropdown-toggle,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success:active,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success.active,
.show
> .bootstrap-switch
.bootstrap-switch-handle-off.bootstrap-switch-success.dropdown-toggle {
    color: var(--extracted-color-5);
    background-color: var(--extracted-color-17);
    background-image: none;
    border-color: var(--extracted-color-18);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
    color: var(--extracted-color-5);
    background-color: var(--extracted-color-19);
    border-color: var(--extracted-color-19);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning:hover,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning:hover {
    color: var(--extracted-color-5);
    background-color: var(--extracted-color-20);
    border-color: var(--extracted-color-21);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning:focus,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning.focus,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning:focus,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning.focus {
    box-shadow: 0 0 0 2px rgba(240, 173, 78, 0.5);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning.disabled,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning:disabled,
.bootstrap-switch
.bootstrap-switch-handle-off.bootstrap-switch-warning.disabled,
.bootstrap-switch
.bootstrap-switch-handle-off.bootstrap-switch-warning:disabled {
    background-color: var(--extracted-color-19);
    border-color: var(--extracted-color-19);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning:active,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning.active,
.show
> .bootstrap-switch
.bootstrap-switch-handle-on.bootstrap-switch-warning.dropdown-toggle,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning:active,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning.active,
.show
> .bootstrap-switch
.bootstrap-switch-handle-off.bootstrap-switch-warning.dropdown-toggle {
    color: var(--extracted-color-5);
    background-color: var(--extracted-color-20);
    background-image: none;
    border-color: var(--extracted-color-21);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
    color: var(--extracted-color-5);
    background-color: var(--extracted-color-22);
    border-color: var(--extracted-color-22);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger:hover,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger:hover {
    color: var(--extracted-color-5);
    background-color: var(--extracted-color-23);
    border-color: var(--extracted-color-24);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger:focus,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger.focus,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger:focus,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger.focus {
    box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.5);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger.disabled,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger:disabled,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger.disabled,
.bootstrap-switch
.bootstrap-switch-handle-off.bootstrap-switch-danger:disabled {
    background-color: var(--extracted-color-22);
    border-color: var(--extracted-color-22);
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger:active,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger.active,
.show
> .bootstrap-switch
.bootstrap-switch-handle-on.bootstrap-switch-danger.dropdown-toggle,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger:active,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger.active,
.show
> .bootstrap-switch
.bootstrap-switch-handle-off.bootstrap-switch-danger.dropdown-toggle {
    color: var(--extracted-color-5);
    background-color: var(--extracted-color-23);
    background-image: none;
    border-color: var(--extracted-color-24);
}
.bootstrap-switch .bootstrap-switch-label {
    text-align: center;
    margin-top: -1px;
    margin-bottom: -1px;
    z-index: 100;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}
.bootstrap-switch .bootstrap-switch-handle-on {
    border-end-start-radius: 0.25rem;
    border-start-start-radius: 0.25rem;
}
.bootstrap-switch .bootstrap-switch-handle-off {
    border-end-end-radius: 0.25rem;
    border-start-end-radius: 0.25rem;
}
.bootstrap-switch input[type="radio"],
.bootstrap-switch input[type="checkbox"] {
    position: absolute !important;
    top: 0;
    inset-inline-start: 0;
    opacity: 0;
    z-index: -1;
}
.bootstrap-switch.bootstrap-switch-mini {
    min-width: 71px;
}
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}
.bootstrap-switch.bootstrap-switch-small {
    min-width: 79px;
}
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}
.bootstrap-switch.bootstrap-switch-large {
    min-width: 120px;
}
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
}
.bootstrap-switch.bootstrap-switch-disabled,
.bootstrap-switch.bootstrap-switch-readonly,
.bootstrap-switch.bootstrap-switch-indeterminate {
    cursor: default !important;
}
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label {
    opacity: 0.5;
    cursor: default !important;
}
.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
    transition: margin-inline-start 0.5s;
}
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {
    border-end-start-radius: 0;
    border-start-start-radius: 0;
    border-end-end-radius: 0.25rem;
    border-start-end-radius: 0.25rem;
}
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {
    border-end-end-radius: 0;
    border-start-end-radius: 0;
    border-end-start-radius: 0.25rem;
    border-start-start-radius: 0.25rem;
}
.bootstrap-switch.bootstrap-switch-focused {
    box-shadow: 0 0 0 2px var(--border);
}
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off
.bootstrap-switch-label {
    border-end-end-radius: 0.25rem;
    border-start-end-radius: 0.25rem;
}
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on
.bootstrap-switch-label {
    border-end-start-radius: 0.25rem;
    border-start-start-radius: 0.25rem;
}

.md-editor {
    display: block;
    border: 1px solid var(--extracted-color-25);
}
.md-editor .md-footer,
.md-editor > .md-header {
    display: block;
    padding: 6px 4px;
    background: var(--primary);
}
.md-editor > .md-header {
    margin: 0;
}
.md-editor > .md-preview {
    background: var(--extracted-color-5);
    border-top: 1px dashed var(--extracted-color-25);
    border-bottom: 1px dashed var(--extracted-color-25);
    min-height: 10px;
    overflow: auto;
}
.md-editor > textarea {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
    font-size: 14px;
    outline: 0;
    margin: 0;
    display: block;
    padding: 0;
    width: 100%;
    border: 0;
    border-top: 1px dashed var(--extracted-color-25);
    border-bottom: 1px dashed var(--extracted-color-25);
    border-radius: 0;
    box-shadow: none;
    background: var(--extracted-color-26);
}
.md-editor > textarea:focus {
    box-shadow: none;
    background: var(--extracted-color-5);
}
.md-editor.active {
    border-color: var(--extracted-color-27);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}
.md-editor .md-controls {
    float: inline-end;
    padding: 3px;
}
.md-editor .md-controls .md-control {
    inset-inline-end: 5px;
    color: var(--extracted-color-28);
    padding: 3px 3px 3px 10px;
}
.md-editor .md-controls .md-control:hover {
    color: var(--extracted-color-29);
}
.md-editor.md-fullscreen-mode {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    z-index: 99999;
    padding: 60px 30px 15px;
    background: var(--extracted-color-5) !important;
    border: 0 !important;
}
.md-editor.md-fullscreen-mode .md-footer {
    display: none;
}
.md-editor.md-fullscreen-mode .md-input,
.md-editor.md-fullscreen-mode .md-preview {
    margin: 0 auto !important;
    height: 100% !important;
    font-size: 20px !important;
    padding: 20px !important;
    color: var(--extracted-color-2);
    line-height: 1.6em !important;
    resize: none !important;
    box-shadow: none !important;
    background: var(--extracted-color-5) !important;
    border: 0 !important;
}
.md-editor.md-fullscreen-mode .md-preview {
    color: var(--extracted-color-29);
    overflow: auto;
}
.md-editor.md-fullscreen-mode .md-input:focus,
.md-editor.md-fullscreen-mode .md-input:hover {
    color: var(--extracted-color-29);
    background: var(--extracted-color-5) !important;
}
.md-editor.md-fullscreen-mode .md-header {
    background: 0 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 20px;
}
.md-editor.md-fullscreen-mode .btn-group {
    float: none;
}
.md-editor.md-fullscreen-mode .btn {
    border: 0;
    background: 0 0;
    color: var(--extracted-color-30);
}
.md-editor.md-fullscreen-mode .btn.active,
.md-editor.md-fullscreen-mode .btn:active,
.md-editor.md-fullscreen-mode .btn:focus,
.md-editor.md-fullscreen-mode .btn:hover {
    box-shadow: none;
    color: var(--extracted-color-29);
}
.md-editor.md-fullscreen-mode .md-fullscreen-controls {
    position: absolute;
    top: 20px;
    inset-inline-end: 20px;
    text-align: right;
    z-index: 1002;
    display: block;
}
.md-editor.md-fullscreen-mode .md-fullscreen-controls a {
    color: var(--extracted-color-30);
    clear: right;
    margin: 10px;
    width: 30px;
    height: 30px;
    text-align: center;
}
.md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {
    color: var(--extracted-color-29);
    text-decoration: none;
}
.md-editor.md-fullscreen-mode .md-editor {
    height: 100% !important;
    position: relative;
}
.md-editor .md-fullscreen-controls {
    display: none;
}
.md-nooverflow {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

table.dataTable td.dt-control {
    text-align: center;
    cursor: pointer;
}
table.dataTable td.dt-control:before {
    height: 1em;
    width: 1em;
    margin-top: -9px;
    display: inline-block;
    color: white;
    border: 0.15em solid white;
    border-radius: 1em;
    box-shadow: 0 0 0.2em var(--extracted-color-31);
    box-sizing: content-box;
    text-align: center;
    text-indent: 0 !important;
    font-family: "Courier New", Courier, monospace;
    line-height: 1em;
    content: "+";
    background-color: var(--extracted-color-32);
}
table.dataTable tr.dt-hasChild td.dt-control:before {
    content: "-";
    background-color: var(--extracted-color-33);
}

table.dataTable thead > tr > th.sorting:not(.order-head),
table.dataTable thead > tr > th.sorting_asc:not(.order-head),
table.dataTable thead > tr > th.sorting_desc:not(.order-head),
table.dataTable thead > tr > th.sorting_asc_disabled:not(.order-head),
table.dataTable thead > tr > th.sorting_desc_disabled:not(.order-head),
table.dataTable thead > tr > td.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting_asc_disabled,
table.dataTable thead > tr > td.sorting_desc_disabled {
    cursor: pointer;
    position: relative;
    padding-inline-end: 26px;
}
table.dataTable thead > tr > th.sorting:before,
table.dataTable thead > tr > th.sorting:after,
table.dataTable thead > tr > th.sorting_asc:before,
table.dataTable thead > tr > th.sorting_asc:after,
table.dataTable thead > tr > th.sorting_desc:before,
table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > th.sorting_asc_disabled:after,
table.dataTable thead > tr > th.sorting_desc_disabled:before,
table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
    position: absolute;
    display: block;
    opacity: 0.125;
    inset-inline-end: 10px;
    line-height: 9px;
    font-size: 0.8em;
}
table.dataTable thead > tr > th.sorting:before,
table.dataTable thead > tr > th.sorting_asc:before,
table.dataTable thead > tr > th.sorting_desc:before,
table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > th.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:before {
    bottom: 50%;
    content: "в–І";
}
table.dataTable thead > tr > th.sorting:after,
table.dataTable thead > tr > th.sorting_asc:after,
table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > th.sorting_asc_disabled:after,
table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
    top: 50%;
    content: "в–ј";
}
table.dataTable thead > tr > th.sorting_asc:before,
table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:after {
    opacity: 0.6;
}
table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting_asc_disabled:before {
    display: none;
}
table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
    outline: none;
}

div.dataTables_scrollBody table.dataTable thead > tr > th:before,
div.dataTables_scrollBody table.dataTable thead > tr > th:after,
div.dataTables_scrollBody table.dataTable thead > tr > td:before,
div.dataTables_scrollBody table.dataTable thead > tr > td:after {
    display: none;
}

div.dataTables_processing {
    position: absolute;
    top: 50%;
    inset-inline-start: 50%;
    width: 200px;
    margin-inline-start: -100px;
    margin-top: -26px;
    text-align: center;
    padding: 2px;
}
div.dataTables_processing > div:last-child {
    position: relative;
    width: 80px;
    height: 15px;
    margin: 1em auto;
}
div.dataTables_processing > div:last-child > div {
    position: absolute;
    top: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(2, 117, 216, 0.9);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
div.dataTables_processing > div:last-child > div:nth-child(1) {
    inset-inline-start: 8px;
    animation: datatables-loader-1 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(2) {
    inset-inline-start: 8px;
    animation: datatables-loader-2 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(3) {
    inset-inline-start: 32px;
    animation: datatables-loader-2 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(4) {
    inset-inline-start: 56px;
    animation: datatables-loader-3 0.6s infinite;
}

@keyframes datatables-loader-1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes datatables-loader-3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes datatables-loader-2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}
table.dataTable.nowrap th,
table.dataTable.nowrap td {
    white-space: nowrap;
}
table.dataTable th.dt-left,
table.dataTable td.dt-left {
    text-align: left;
}
table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
    text-align: center;
}
table.dataTable th.dt-right,
table.dataTable td.dt-right {
    text-align: right;
}
table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
    text-align: justify;
}
table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
    white-space: nowrap;
}
table.dataTable thead th,
table.dataTable thead td,
table.dataTable tfoot th,
table.dataTable tfoot td {
    text-align: left;
}
table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
    text-align: left;
}
table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
    text-align: center;
}
table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
    text-align: right;
}
table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
    text-align: justify;
}
table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
    white-space: nowrap;
}
table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
    text-align: left;
}
table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
    text-align: center;
}
table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
    text-align: right;
}
table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
    text-align: justify;
}
table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
    white-space: nowrap;
}

table.dataTable td.dataTables_empty,
table.dataTable th.dataTables_empty {
    text-align: center;
}
table.dataTable.nowrap th,
table.dataTable.nowrap td {
    white-space: nowrap;
}
table.dataTable.table-striped > tbody > tr:nth-of-type(2n + 1) {
    background-color: transparent;
}
table.dataTable > tbody > tr {
    background-color: transparent;
}
table.dataTable > tbody > tr.selected > * {
    box-shadow: inset 0 0 0 9999px rgba(2, 117, 216, 0.9);
    color: white;
}
table.dataTable > tbody > tr.selected a {
    color: var(--extracted-color-34);
}
table.dataTable.table-striped > tbody > tr.odd > * {
    box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.05);
}
table.dataTable.table-striped > tbody > tr.odd.selected > * {
    box-shadow: inset 0 0 0 9999px rgba(2, 117, 216, 0.95);
}
table.dataTable.table-hover > tbody > tr:hover > * {
    box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.075);
}
table.dataTable.table-hover > tbody > tr.selected:hover > * {
    box-shadow: inset 0 0 0 9999px rgba(2, 117, 216, 0.975);
}

div.dataTables_wrapper div.dataTables_length label {
    font-weight: normal;
    text-align: left;
    white-space: nowrap;
}
div.dataTables_wrapper div.dataTables_length select {
    width: auto;
    display: inline-block;
}
div.dataTables_wrapper div.dataTables_filter {
    text-align: right;
}
div.dataTables_wrapper div.dataTables_filter label {
    font-weight: normal;
    white-space: nowrap;
    text-align: left;
}
div.dataTables_wrapper div.dataTables_info {
    padding-bottom: 1rem;
    padding-top: 0.5rem;
}
div.dataTables_wrapper div.dataTables_processing {
    position: absolute;
    top: 50%;
    inset-inline-start: 50%;
    width: 200px;
    margin-inline-start: -100px;
    margin-top: -26px;
    text-align: center;
    padding: 1em 0;
}

div.dataTables_scrollHead table.dataTable {
    margin-bottom: 0 !important;
}

div.dataTables_scrollBody > table {
    border-top: none;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
div.dataTables_scrollBody > table > thead .sorting:before,
div.dataTables_scrollBody > table > thead .sorting_asc:before,
div.dataTables_scrollBody > table > thead .sorting_desc:before,
div.dataTables_scrollBody > table > thead .sorting:after,
div.dataTables_scrollBody > table > thead .sorting_asc:after,
div.dataTables_scrollBody > table > thead .sorting_desc:after {
    display: none;
}
div.dataTables_scrollBody > table > tbody tr:first-child th,
div.dataTables_scrollBody > table > tbody tr:first-child td {
    border-top: none;
}

div.dataTables_scrollFoot > .dataTables_scrollFootInner {
    box-sizing: content-box;
}
div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {
    margin-top: 0 !important;
    border-top: none;
}

table.dataTable.table-sm > thead > tr > th:not(.sorting_disabled) {
    padding-inline-end: 20px;
}

table.table-bordered.dataTable {
    border-right-width: 0;
}
table.table-bordered.dataTable th,
table.table-bordered.dataTable td {
    border-left-width: 0;
}
table.table-bordered.dataTable th:last-child,
table.table-bordered.dataTable th:last-child,
table.table-bordered.dataTable td:last-child,
table.table-bordered.dataTable td:last-child {
    border-right-width: 1px;
}
table.table-bordered.dataTable tbody th,
table.table-bordered.dataTable tbody td {
    border-bottom-width: 0;
}

div.dataTables_scrollHead table.table-bordered {
    border-bottom-width: 0;
}

div.table-responsive > div.dataTables_wrapper > div.row {
    margin: 0;
}
div.table-responsive
> div.dataTables_wrapper
> div.row
> div[class^="col-"]:first-child {
    padding-inline-start: 0;
}
div.table-responsive
> div.dataTables_wrapper
> div.row
> div[class^="col-"]:last-child {
    padding-inline-end: 0;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty {
    cursor: default !important;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before {
    display: none !important;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control {
    position: relative;
    padding-inline-start: 30px;
    cursor: pointer;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
    top: 50%;
    inset-inline-start: 5px;
    height: 1em;
    width: 1em;
    margin-top: -9px;
    display: block;
    position: absolute;
    color: white;
    border: 0.15em solid white;
    border-radius: 1em;
    box-shadow: 0 0 0.2em var(--extracted-color-31);
    box-sizing: content-box;
    text-align: center;
    text-indent: 0 !important;
    font-family: "Courier New", Courier, monospace;
    line-height: 1em;
    content: "+";
    background-color: var(--extracted-color-8);
}
table.dataTable.dtr-inline.collapsed
> tbody
> tr.parent
> td.dtr-control:before,
table.dataTable.dtr-inline.collapsed
> tbody
> tr.parent
> th.dtr-control:before {
    content: "-";
    background-color: var(--extracted-color-33);
}
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td.dtr-control,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th.dtr-control {
    padding-inline-start: 27px;
}
table.dataTable.dtr-inline.collapsed.compact
> tbody
> tr
> td.dtr-control:before,
table.dataTable.dtr-inline.collapsed.compact
> tbody
> tr
> th.dtr-control:before {
    inset-inline-start: 4px;
    height: 14px;
    width: 14px;
    border-radius: 14px;
    line-height: 14px;
    text-indent: 3px;
}
table.dataTable.dtr-column > tbody > tr > td.dtr-control,
table.dataTable.dtr-column > tbody > tr > th.dtr-control,
table.dataTable.dtr-column > tbody > tr > td.control,
table.dataTable.dtr-column > tbody > tr > th.control {
    position: relative;
    cursor: pointer;
}
table.dataTable.dtr-column > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-column > tbody > tr > th.dtr-control:before,
table.dataTable.dtr-column > tbody > tr > td.control:before,
table.dataTable.dtr-column > tbody > tr > th.control:before {
    top: 50%;
    inset-inline-start: 50%;
    height: 0.8em;
    width: 0.8em;
    margin-top: -0.5em;
    margin-inline-start: -0.5em;
    display: block;
    position: absolute;
    color: white;
    border: 0.15em solid white;
    border-radius: 1em;
    box-shadow: 0 0 0.2em var(--extracted-color-31);
    box-sizing: content-box;
    text-align: center;
    text-indent: 0 !important;
    font-family: "Courier New", Courier, monospace;
    line-height: 1em;
    content: "+";
    background-color: var(--extracted-color-8);
}
table.dataTable.dtr-column > tbody > tr.parent td.dtr-control:before,
table.dataTable.dtr-column > tbody > tr.parent th.dtr-control:before,
table.dataTable.dtr-column > tbody > tr.parent td.control:before,
table.dataTable.dtr-column > tbody > tr.parent th.control:before {
    content: "-";
    background-color: var(--extracted-color-33);
}
table.dataTable > tbody > tr.child {
    padding: 0.5em 1em;
}
table.dataTable > tbody > tr.child:hover {
    background: transparent !important;
}
table.dataTable > tbody > tr.child ul.dtr-details {
    display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
table.dataTable > tbody > tr.child ul.dtr-details > li {
    border-bottom: 1px solid var(--extracted-color-35);
    padding: 0.5em 0;
}
table.dataTable > tbody > tr.child ul.dtr-details > li:first-child {
    padding-top: 0;
}
table.dataTable > tbody > tr.child ul.dtr-details > li:last-child {
    border-bottom: none;
}
table.dataTable > tbody > tr.child span.dtr-title {
    display: inline-block;
    min-width: 75px;
    font-weight: bold;
}
div.dtr-modal {
    position: fixed;
    box-sizing: border-box;
    top: 0;
    inset-inline-start: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
    padding: 10em 1em;
}
div.dtr-modal div.dtr-modal-display {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    bottom: 0;
    inset-inline-end: 0;
    width: 50%;
    height: 50%;
    overflow: auto;
    margin: auto;
    z-index: 102;
    overflow: auto;
    background-color: var(--extracted-color-36);
    border: 1px solid black;
    border-radius: 0.5em;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}
div.dtr-modal div.dtr-modal-content {
    position: relative;
    padding: 1em;
}
div.dtr-modal div.dtr-modal-close {
    position: absolute;
    top: 6px;
    inset-inline-end: 6px;
    width: 22px;
    height: 22px;
    border: 1px solid var(--extracted-color-37);
    background-color: var(--extracted-color-38);
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    z-index: 12;
}
div.dtr-modal div.dtr-modal-close:hover {
    background-color: var(--extracted-color-37);
}
div.dtr-modal div.dtr-modal-background {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    bottom: 0;
    z-index: 101;
    background: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 767px) {
    div.dtr-modal div.dtr-modal-display {
        width: 95%;
    }
}
div.dtr-bs-modal table.table tr:first-child td {
    border-top: none;
}

.multiselect-container {
    position: absolute;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.multiselect-container::-webkit-scrollbar {
    width: 8px;
    background: var(--background);
    border-radius: var(--radius-lg);
}
.multiselect-container::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: var(--radius-lg);
}
.multiselect-container .input-group {
    margin: 5px;
}
.multiselect-container > li {
    padding: 0;
}
.multiselect-container > li > a.multiselect-all label {
    font-weight: 700;
}
.multiselect-container > li.multiselect-group label {
    margin: 0;
    padding: 3px 20px 3px 20px;
    height: 100%;
    font-weight: 700;
}
.multiselect-container > li.multiselect-group-clickable label {
    cursor: pointer;
}
.multiselect-container > li > a:not([href]) {
    display: flex;
    padding: calc(var(--space-1) * 1.5) calc(var(--space-1) * 2);
    min-width: 220px;
    align-items: center;
    border-radius: var(--theme-radius);
    color: var(--popover-foreground);
    transition: all 0.15s var(--transition-function-1);
    column-gap: 0.75rem;
    text-decoration: none !important;
}
.multiselect-container > li.active > a:not([href]),
.multiselect-container > li > a:not([href]):hover {
    background: var(--accent);
    color: var(--accent-foreground);
    cursor: pointer;
}
.multiselect-container > li > a > label.radio,
.multiselect-container > li > a > label.checkbox {
    margin: 0;
    display: flex;
    align-items: center;
    column-gap: 0.785rem;
    width: 100%;
    cursor: pointer;
}
.btn-group > .btn-group:nth-child(2) > .multiselect.btn {
    border-start-start-radius: 4px;
    border-end-start-radius: 4px;
}
.form-inline .multiselect-container label.checkbox,
.form-inline .multiselect-container label.radio {
    padding: 3px 20px 3px 40px;
}
.form-inline .multiselect-container li a label.checkbox input[type="checkbox"],
.form-inline .multiselect-container li a label.radio input[type="radio"] {
    margin-inline-start: -20px;
    margin-inline-end: 0;
}
/* Preload images */
body:after {
    content: url(../images/close.png) url(../images/loading.gif)
    url(../images/prev.png) url(../images/next.png);
    display: none;
}

.lightboxOverlay {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    z-index: 9999;
    background-color: black;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
    display: none;
}

.lightbox {
    position: absolute;
    inset-inline-start: 0;
    width: 100%;
    z-index: 10000;
    text-align: center;
    line-height: 0;
    font-weight: normal;
}

.lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    border-radius: 3px;
}

.lightbox a img {
    border: none;
}

.lb-outerContainer {
    position: relative;
    background-color: white;
    zoom: 1;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 4px;
}

.lb-outerContainer:after {
    content: "";
    display: table;
    clear: both;
}

.lb-container {
    padding: 4px;
}

.lb-loader {
    position: absolute;
    top: 43%;
    inset-inline-start: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}

.lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}

.lb-container > .nav {
    inset-inline-start: 0;
}

.lb-nav a {
    outline: none;
    background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev,
.lb-next {
    height: 100%;
    cursor: pointer;
    display: block;
}

.lb-nav a.lb-prev {
    width: 34%;
    inset-inline-start: 0;
    float: inline-start;
    background: url(../images/prev.png) left 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

.lb-nav a.lb-next {
    width: 64%;
    inset-inline-end: 0;
    float: inline-end;
    background: url(../images/next.png) right 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

.lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    zoom: 1;
    width: 100%;
    -moz-border-radius-bottomleft: 4px;
    -webkit-border-end-start-radius: 4px;
    border-end-start-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -webkit-border-end-end-radius: 4px;
    border-end-end-radius: 4px;
}

.lb-dataContainer:after {
    content: "";
    display: table;
    clear: both;
}

.lb-data {
    padding: 0 4px;
    color: var(--extracted-color-10);
}

.lb-data .lb-details {
    width: 85%;
    float: inline-start;
    text-align: left;
    line-height: 1.1em;
}

.lb-data .lb-caption {
    font-size: 13px;
    font-weight: bold;
    line-height: 1em;
}

.lb-data .lb-number {
    display: block;
    clear: left;
    padding-bottom: 1em;
    font-size: 12px;
    color: var(--extracted-color-2);
}

.lb-data .lb-close {
    display: block;
    float: inline-end;
    width: 30px;
    height: 30px;
    background: url(../images/close.png) top right no-repeat;
    text-align: right;
    outline: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

/* iCheck plugin Square skin, blue
----------------------------------- */
.icheckbox_square-blue,
.iradio_square-blue {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 22px;
    height: 22px;
    background: url(blue.png) no-repeat;
    border: none;
    cursor: pointer;
}

.icheckbox_square-blue {
    background-position: 0 0;
}
.icheckbox_square-blue.hover {
    background-position: -24px 0;
}
.icheckbox_square-blue.checked {
    background-position: -48px 0;
}
.icheckbox_square-blue.disabled {
    background-position: -72px 0;
    cursor: default;
}
.icheckbox_square-blue.checked.disabled {
    background-position: -96px 0;
}

.iradio_square-blue {
    background-position: -120px 0;
}
.iradio_square-blue.hover {
    background-position: -144px 0;
}
.iradio_square-blue.checked {
    background-position: -168px 0;
}
.iradio_square-blue.disabled {
    background-position: -192px 0;
    cursor: default;
}
.iradio_square-blue.checked.disabled {
    background-position: -216px 0;
}

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4),
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi),
(min-resolution: 1.25dppx) {
    .icheckbox_square-blue,
    .iradio_square-blue {
        background-image: url(blue@2x.png);
        -webkit-background-size: 240px 24px;
        background-size: 240px 24px;
    }
}
.captcha-overlay-badge {
    position: fixed;
    bottom: 20px;
    inset-inline-end: 20px;
    z-index: 9999;
    cursor: pointer;
}

.captcha-overlay-badge-hidden {
    display: none;
}

.captcha-overlay-badge img {
    width: 60px;
    height: auto;
}

.captcha-overlay-popup {
    display: none;
    position: fixed;
    bottom: 80px;
    inset-inline-end: 20px;
    background-color: var(--extracted-color-5);
    border: 1px solid var(--extracted-color-10);
    padding: 10px;
    width: 300px;
    z-index: 9998;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* paymentGatewayInput */
#paymentGatewayInput .form-group,
.fieldgroup-creditcard .form-group {
    margin-bottom: 1rem;
}