/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}
/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}
.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}
.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}
.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}
/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}
.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}
/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
.ps {
    position: relative;
}
.flashtoast-container {
    max-width: 300px;
    min-width: 300px;
    position: fixed;
    z-index: 3000;
}

/* positions */
.flashtoast-container.top-right {
    top: 18px;
    right: 28px;
}

.flashtoast-container.top-left {
    top: 18px;
    left: 28px;
}

.flashtoast-container.bottom-left {
    bottom: 18px;
    left: 28px;
}

.flashtoast-container.bottom-right {
    bottom: 18px;
    right: 28px;
}

.flashtoast-container.center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flashtoast-title {
    font-weight: 700
}

.flashtoast-message {
    -ms-word-wrap: break-word;
    word-wrap: break-word
}

.flashtoast-message a,
.flashtoast-message label {
    color: #FFF
}

.flashtoast-message a:hover {
    color: #CCC;
    text-decoration: none
}

.flashtoast-close-button {
    position: relative;
    right: -.3em;
    top: -.3em;
    float: right;
    font-size: 20px;
    font-weight: 700;
    color: #FFF;
    -webkit-text-shadow: 0 1px 0 #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: .8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
    line-height: 1
}

.flashtoast-close-button:focus,
.flashtoast-close-button:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .4;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    filter: alpha(opacity=40)
}

.rtl .flashtoast-close-button {
    left: -.3em;
    float: left;
    right: .3em
}

button.flashtoast-close-button {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none
}

.flashtoast-top-center {
    top: 0;
    right: 0;
    width: 100%
}

.flashtoast-bottom-center {
    bottom: 0;
    right: 0;
    width: 100%
}

.flashtoast-top-full-width {
    top: 0;
    right: 0;
    width: 100%
}

.flashtoast-bottom-full-width {
    bottom: 0;
    right: 0;
    width: 100%
}

.flashtoast-top-left {
    top: 12px;
    left: 12px
}

.flashtoast-top-right {
    top: 12px;
    right: 12px
}

.flashtoast-bottom-right {
    right: 12px;
    bottom: 12px
}

.flashtoast-bottom-left {
    bottom: 12px;
    left: 12px
}

#flashtoast-container {
    /* position: static;
    z-index: 999999; */
    pointer-events: none
}

#flashtoast-container * {
    box-sizing: border-box
}

#flashtoast-container>div {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    border-radius: 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    box-shadow: 0 0 12px #999;
    color: #FFF;
    opacity: .8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80)
}

#flashtoast-container>div.rtl {
    direction: rtl;
    padding: 15px 50px 15px 15px;
    background-position: right 15px center
}

#flashtoast-container>div:hover {
    box-shadow: 0 0 12px #000;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    filter: alpha(opacity=100);
    cursor: pointer
}

#flashtoast-container>.flashtoast-info {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=) !important
}

#flashtoast-container>.flashtoast-error {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=) !important
}

#flashtoast-container>.flashtoast-success {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==) !important
}

#flashtoast-container>.flashtoast-warning {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=) !important
}

#flashtoast-container.flashtoast-bottom-center>div,
#flashtoast-container.flashtoast-top-center>div {
    width: 300px;
    margin-left: auto;
    margin-right: auto
}

#flashtoast-container.flashtoast-bottom-full-width>div,
#flashtoast-container.flashtoast-top-full-width>div {
    width: 96%;
    margin-left: auto;
    margin-right: auto
}

.flashtoast {
    background-color: #030303
}

.flashtoast-success {
    background-color: #51A351
}

.flashtoast-error {
    background-color: #BD362F
}

.flashtoast-info {
    background-color: #2F96B4
}

.flashtoast-warning {
    background-color: #F89406
}

.flashtoast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #000;
    opacity: .4;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    filter: alpha(opacity=40)
}

@media all and (max-width:240px) {
    #flashtoast-container>div {
        padding: 8px 8px 8px 50px;
        width: 11em
    }

    #flashtoast-container>div.rtl {
        padding: 8px 50px 8px 8px
    }

    #flashtoast-container .flashtoast-close-button {
        right: -.2em;
        top: -.2em
    }

    #flashtoast-container .rtl .flashtoast-close-button {
        left: -.2em;
        right: .2em
    }
}

@media all and (min-width:241px) and (max-width:480px) {
    #flashtoast-container>div {
        padding: 8px 8px 8px 50px;
        width: 18em
    }

    #flashtoast-container>div.rtl {
        padding: 8px 50px 8px 8px
    }

    #flashtoast-container .flashtoast-close-button {
        right: -.2em;
        top: -.2em
    }

    #flashtoast-container .rtl .flashtoast-close-button {
        left: -.2em;
        right: .2em
    }
}

@media all and (min-width:481px) and (max-width:768px) {
    #flashtoast-container>div {
        padding: 15px 15px 15px 50px;
        width: 25em
    }

    #flashtoast-container>div.rtl {
        padding: 15px 50px 15px 15px
    }
}



#flashtoast-container>div {
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    filter: alpha(opacity=100);
    max-width: none;
    border-radius: 0.286rem;
}

#flashtoast-container>div,
#flashtoast-container>div:hover {
    box-shadow: 0 2px 20px 0 rgba(34, 41, 47, 0.08);
}

#flashtoast-container>.flashtoast {
    background-image: none !important;
}

.flashtoast {
    background-color: #fff;
    color: #6e6b7b !important;
}

.flashtoast .flashtoast-close-button {
    color: #6e6b7b;
    font-size: 1.75rem;
    font-weight: 400;
    top: 0;
    right: 0;
    text-shadow: none;
}

.flashtoast .flashtoast-close-button:focus {
    outline: none;
}

.flashtoast .flashtoast-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.75;
}

.flashtoast .flashtoast-progress {
    opacity: 1;
}

.flashtoast:before {
    content: '';
    height: 24px;
    width: 24px;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    left: 1.25rem;
    background-size: 1rem;
    background-repeat: no-repeat;
    background-position: center;
}

.flashtoast.rtl:before {
    right: 1.25rem;
}

.flashtoast-success .flashtoast-title {
    color: #28c76f;
}

.flashtoast-success .flashtoast-progress {
    background-color: #28c76f;
}

.flashtoast-success:before {
    background-color: #28c76f;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.flashtoast-error .flashtoast-title {
    color: #ea5455;
}

.flashtoast-error .flashtoast-progress {
    background-color: #ea5455;
}

.flashtoast-error:before {
    background-color: #ea5455;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

.flashtoast-info .flashtoast-title {
    color: #00cfe8;
}

.flashtoast-info .flashtoast-progress {
    background-color: #00cfe8;
}

.flashtoast-info:before {
    background-color: #00cfe8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-info'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='16' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'%3E%3C/line%3E%3C/svg%3E");
}

.flashtoast-warning .flashtoast-title {
    color: #ff9f43;
}

.flashtoast-warning .flashtoast-progress {
    background-color: #ff9f43;
}

.flashtoast-warning:before {
    background-color: #ff9f43;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-alert-triangle'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'%3E%3C/path%3E%3Cline x1='12' y1='9' x2='12' y2='13'%3E%3C/line%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'%3E%3C/line%3E%3C/svg%3E");
}

.flashtoast-top-left {
    top: 1.3rem;
    left: 2rem;
}

.flashtoast-top-right {
    top: 1.3rem;
    right: 2rem;
}

.flashtoast-top-center,
.flashtoast-top-full-width {
    top: 1.3rem;
    width: 100% !important;
}

.flashtoast-bottom-left {
    bottom: 1.3rem;
    left: 2rem;
}

.flashtoast-bottom-right {
    bottom: 1.3rem;
    right: 2rem;
}

.flashtoast-bottom-center,
.flashtoast-bottom-full-width {
    bottom: 1.3rem;
    width: 100% !important;
}

@media (max-width: 480px) and (min-width: 241px) {
    #flashtoast-container>.flashtoast:after {
        top: 0.95rem;
    }

    #flashtoast-container>.flashtoast .flashtoast-close-button {
        top: 0;
        right: -1px;
    }

    #flashtoast-container>div {
        width: 20rem;
    }

    .flashtoast-top-left {
        left: 1rem;
    }

    #flashtoast-container.flashtoast-top-center,
    #flashtoast-container.flashtoast-bottom-center {
        right: 1rem;
    }

    #flashtoast-container.flashtoast-top-center>div,
    #flashtoast-container.flashtoast-bottom-center>div {
        width: 20rem !important;
    }

    .flashtoast-top-full-width,
    .flashtoast-bottom-full-width {
        right: 0;
        left: 0;
        width: 93%;
    }

    .flashtoast-top-full-width>div,
    .flashtoast-bottom-full-width>div {
        width: 100%;
    }

    .flashtoast-bottom-left {
        left: 1rem;
        bottom: 0.75rem;
    }

    .flashtoast-bottom-right {
        right: 2.25rem;
        bottom: 0.75rem;
    }

    .flashtoast-bottom-center,
    .flashtoast-bottom-full-width {
        bottom: 0.75rem;
    }

    [data-textdirection='rtl'] #flashtoast-container>div {
        padding-right: 8px;
    }
}

.dark-layout #flashtoast-container>div,
.dark-layout #flashtoast-container>div:hover {
    box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.24);
}

.dark-layout #flashtoast-container .flashtoast {
    background-color: #283046;
    color: #b4b7bd !important;
}

.dark-layout #flashtoast-container .flashtoast .flashtoast-close-button {
    color: #b4b7bd;
}

@media (max-width: 575.98px) {
    [data-textdirection='rtl'] .flashtoast .flashtoast-close-button {
        top: 0.55rem !important;
        right: 0.5rem !important;
    }
}

[data-textdirection='rtl'] .flashtoast-top-left {
    left: 1rem;
    right: auto;
}

[data-textdirection='rtl'] .flashtoast-top-right {
    right: 3rem;
    left: auto;
}

[data-textdirection='rtl'] .flashtoast-bottom-left {
    left: 1em;
    right: auto;
}

[data-textdirection='rtl'] .flashtoast-bottom-right {
    right: 3rem;
    left: auto;
}

[data-textdirection='rtl'] .flashtoast-top-full-width#flashtoast-container>div,
[data-textdirection='rtl'] .flashtoast-bottom-full-width#flashtoast-container>div {
    left: 0;
    right: 0;
}

/* Animations starts */
/* top right */
.top-right-enter-active {
    transition: all 0.3s ease;
}

.top-right-enter-from,
.top-right-leave-to {
    opacity: 0;
    transform: translateX(300px);
}

/* bottom right */
.bottom-right-enter-active {
    transition: all 0.3s ease;
}

.bottom-right-enter-from,
.bottom-right-leave-to {
    opacity: 0;
    transform: translateX(300px);
}

/* bottom left */
.bottom-left-enter-active {
    transition: all 0.3s ease;
}

.bottom-left-enter-from,
.bottom-left-leave-to {
    opacity: 0;
    transform: translateX(-300px);
}

/* top left */
.top-left-enter-active {
    transition: all 0.3s ease;
}

.top-left-enter-from,
.top-left-leave-to {
    opacity: 0;
    transform: translateX(-300px);
}

/* Animations ends */

/**
    Support for SASS is deprecated as of v3.18.

    The files remain here if your build is dependent on them
    but they will not receive updates in future releases. All
    SASS variables have been translated into CSS variables, so
    migration should be quite simple if you'd like to move over.

    In v4, these files will be removed.
 */
.v-select {
  position: relative;
  font-family: inherit;
}

.v-select,
.v-select * {
  box-sizing: border-box;
}

/* KeyFrames */
@-webkit-keyframes vSelectSpinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes vSelectSpinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Dropdown Default Transition */
.vs__fade-enter-active,
.vs__fade-leave-active {
  pointer-events: none;
  transition: opacity 0.15s cubic-bezier(1, 0.5, 0.8, 1);
}

.vs__fade-enter,
.vs__fade-leave-to {
  opacity: 0;
}

/** Component States */
/*
 * Disabled
 *
 * When the component is disabled, all interaction
 * should be prevented. Here we modify the bg color,
 * and change the cursor displayed on the interactive
 * components.
 */
.vs--disabled .vs__dropdown-toggle,
.vs--disabled .vs__clear,
.vs--disabled .vs__search,
.vs--disabled .vs__selected,
.vs--disabled .vs__open-indicator {
  cursor: not-allowed;
  background-color: rgb(248, 248, 248);
}

/*
 *  RTL - Right to Left Support
 *
 *  Because we're using a flexbox layout, the `dir="rtl"`
 *  HTML attribute does most of the work for us by
 *  rearranging the child elements visually.
 */
.v-select[dir=rtl] .vs__actions {
  padding: 0 3px 0 6px;
}
.v-select[dir=rtl] .vs__clear {
  margin-left: 6px;
  margin-right: 0;
}
.v-select[dir=rtl] .vs__deselect {
  margin-left: 0;
  margin-right: 2px;
}
.v-select[dir=rtl] .vs__dropdown-menu {
  text-align: right;
}

/**
    Dropdown Toggle

    The dropdown toggle is the primary wrapper of the component. It
    has two direct descendants: .vs__selected-options, and .vs__actions.

    .vs__selected-options holds the .vs__selected's as well as the
    main search input.

    .vs__actions holds the clear button and dropdown toggle.
 */
.vs__dropdown-toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  padding: 0 0 4px 0;
  background: none;
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-radius: 4px;
  white-space: normal;
}

.vs__selected-options {
  display: flex;
  flex-basis: 100%;
  flex-grow: 1;
  flex-wrap: wrap;
  padding: 0 2px;
  position: relative;
}

.vs__actions {
  display: flex;
  align-items: center;
  padding: 4px 6px 0 3px;
}

/* Dropdown Toggle States */
.vs--searchable .vs__dropdown-toggle {
  cursor: text;
}

.vs--unsearchable .vs__dropdown-toggle {
  cursor: pointer;
}

.vs--open .vs__dropdown-toggle {
  border-bottom-color: transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.vs__open-indicator {
  fill: rgba(60, 60, 60, 0.5);
  transform: scale(1);
  transition: transform 150ms cubic-bezier(1, -0.115, 0.975, 0.855);
  transition-timing-function: cubic-bezier(1, -0.115, 0.975, 0.855);
}

.vs--open .vs__open-indicator {
  transform: rotate(180deg) scale(1);
}

.vs--loading .vs__open-indicator {
  opacity: 0;
}

/* Clear Button */
.vs__clear {
  fill: rgba(60, 60, 60, 0.5);
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  margin-right: 8px;
}

/* Dropdown Menu */
.vs__dropdown-menu {
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 1000;
  padding: 5px 0;
  margin: 0;
  width: 100%;
  max-height: 350px;
  min-width: 160px;
  overflow-y: auto;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-top-style: none;
  border-radius: 0 0 4px 4px;
  text-align: left;
  list-style: none;
  background: #fff;
}

.vs__no-options {
  text-align: center;
}

/* List Items */
.vs__dropdown-option {
  line-height: 1.42857143;
  /* Normalize line height */
  display: block;
  padding: 3px 20px;
  clear: both;
  color: #333;
  /* Overrides most CSS frameworks */
  white-space: nowrap;
  cursor: pointer;
}

.vs__dropdown-option--highlight {
  background: #5897fb;
  color: #fff;
}

.vs__dropdown-option--deselect {
  background: #fb5858;
  color: #fff;
}

.vs__dropdown-option--disabled {
  background: inherit;
  color: rgba(60, 60, 60, 0.5);
  cursor: inherit;
}

/* Selected Tags */
.vs__selected {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-radius: 4px;
  color: #333;
  line-height: 1.4;
  margin: 4px 2px 0px 2px;
  padding: 0 0.25em;
  z-index: 0;
}

.vs__deselect {
  display: inline-flex;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-left: 4px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
  fill: rgba(60, 60, 60, 0.5);
  text-shadow: 0 1px 0 #fff;
}

/* States */
.vs--single .vs__selected {
  background-color: transparent;
  border-color: transparent;
}
.vs--single.vs--open .vs__selected, .vs--single.vs--loading .vs__selected {
  position: absolute;
  opacity: 0.4;
}
.vs--single.vs--searching .vs__selected {
  display: none;
}

/* Search Input */
/**
 * Super weird bug... If this declaration is grouped
 * below, the cancel button will still appear in chrome.
 * If it's up here on it's own, it'll hide it.
 */
.vs__search::-webkit-search-cancel-button {
  display: none;
}

.vs__search::-webkit-search-decoration,
.vs__search::-webkit-search-results-button,
.vs__search::-webkit-search-results-decoration,
.vs__search::-ms-clear {
  display: none;
}

.vs__search,
.vs__search:focus {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 1.4;
  font-size: 1em;
  border: 1px solid transparent;
  border-left: none;
  outline: none;
  margin: 4px 0 0 0;
  padding: 0 7px;
  background: none;
  box-shadow: none;
  width: 0;
  max-width: 100%;
  flex-grow: 1;
  z-index: 1;
}

.vs__search::-moz-placeholder {
  color: inherit;
}

.vs__search:-ms-input-placeholder {
  color: inherit;
}

.vs__search::placeholder {
  color: inherit;
}

/**
    States
 */
.vs--unsearchable .vs__search {
  opacity: 1;
}
.vs--unsearchable:not(.vs--disabled) .vs__search {
  cursor: pointer;
}

.vs--single.vs--searching:not(.vs--open):not(.vs--loading) .vs__search {
  opacity: 0.2;
}

/* Loading Spinner */
.vs__spinner {
  align-self: center;
  opacity: 0;
  font-size: 5px;
  text-indent: -9999em;
  overflow: hidden;
  border-top: 0.9em solid rgba(100, 100, 100, 0.1);
  border-right: 0.9em solid rgba(100, 100, 100, 0.1);
  border-bottom: 0.9em solid rgba(100, 100, 100, 0.1);
  border-left: 0.9em solid rgba(60, 60, 60, 0.45);
  transform: translateZ(0);
  -webkit-animation: vSelectSpinner 1.1s infinite linear;
          animation: vSelectSpinner 1.1s infinite linear;
  transition: opacity 0.1s;
}

.vs__spinner,
.vs__spinner:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}

/* Loading Spinner States */
.vs--loading .vs__spinner {
  opacity: 1;
}

.custom-v-select .vs__search::-moz-placeholder {
  background: #ffffff;
  border: none;
  color: #676d7d;
}

.custom-v-select .vs__search:-ms-input-placeholder {
  background: #ffffff;
  border: none;
  color: #676d7d;
}

.custom-v-select .vs__search::placeholder {
  background: #ffffff;
  border: none;
  color: #676d7d;
}

.custom-v-select .vs__dropdown-toggle,
.custom-v-select .vs__dropdown-menu {
  width: 100%;
  padding: 0.4rem 0.2rem;
  font-weight: 400;
  color: #6e6b7b;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #d8d6de;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.custom-v-select .vs__dropdown-toggle .vs__selected,
.custom-v-select .vs__dropdown-toggle .vs__search,
.custom-v-select .vs__dropdown-toggle .vs__search:focus,
.custom-v-select .vs__dropdown-toggle .vs__actions,
.custom-v-select .vs__dropdown-menu .vs__selected,
.custom-v-select .vs__dropdown-menu .vs__search,
.custom-v-select .vs__dropdown-menu .vs__search:focus,
.custom-v-select .vs__dropdown-menu .vs__actions {
  color: #6e6b7b;
}
.custom-v-select .vs__dropdown-toggle .vs__dropdown-option,
.custom-v-select .vs__dropdown-menu .vs__dropdown-option {
  color: #6e6b7b;
}
.custom-v-select .vs__dropdown-toggle .vs__dropdown-option--highlight,
.custom-v-select .vs__dropdown-menu .vs__dropdown-option--highlight {
  background-color: #7367f0;
  color: #ffffff !important;
}

.dark-layout .custom-v-select .vs__search::-moz-placeholder {
  background: #283046;
}

.dark-layout .custom-v-select .vs__search:-ms-input-placeholder {
  background: #283046;
}

.dark-layout .custom-v-select .vs__search::placeholder {
  background: #283046;
}
.dark-layout .custom-v-select .vs__dropdown-toggle,
.dark-layout .custom-v-select .vs__dropdown-menu {
  color: #b4b7bd !important;
  background-color: #283046;
  border-color: #404656;
}
.dark-layout .custom-v-select .vs__dropdown-toggle .vs__selected,
.dark-layout .custom-v-select .vs__dropdown-toggle .vs__search,
.dark-layout .custom-v-select .vs__dropdown-toggle .vs__search:focus,
.dark-layout .custom-v-select .vs__dropdown-toggle .vs__actions,
.dark-layout .custom-v-select .vs__dropdown-menu .vs__selected,
.dark-layout .custom-v-select .vs__dropdown-menu .vs__search,
.dark-layout .custom-v-select .vs__dropdown-menu .vs__search:focus,
.dark-layout .custom-v-select .vs__dropdown-menu .vs__actions {
  color: #b4b7bd;
}
.dark-layout .vs__open-indicator,
.dark-layout .vs__clear {
  fill: rgb(141, 144, 149);
}
.dark-layout .custom-v-select .vs__dropdown-toggle .vs__dropdown-option,
.dark-layout .custom-v-select .vs__dropdown-menu .vs__dropdown-option {
  color: #b4b7bd;
}

.dark-layout .custom-v-select .vs__selected {
  color: #b4b7bd !important;
}

.selected-primary-color .custom-v-select .vs__dropdown-toggle {
  color: #ffffff !important;
  background-color: #7366f0 !important;
}
.selected-primary-color .custom-v-select .vs__selected {
  color: #ffffff !important;
}

.selected-primary-color-multiple .vs__selected {
  background-color: #7365f0;
  border: 1px solid rgb(254, 254, 254);
  color: #ffffff !important;
}

.dark-layout .selected-primary-color-multiple .vs__selected {
  background-color: #7365f0;
  border: 1px solid rgb(254, 254, 254);
  color: #ffffff !important;
}

.invalid-feedback {
  display: inline-block !important;
}

.bg-extra-success {
  background-color: #0f9e67;
}

.wh-16 {
  width: 16px;
  height: 16px;
}

.lh-1px {
  line-height: 7px;
}

.header-grade-view {
  height: 4px !important;
  width: 25px;
  display: inline-block;
}

.m-1px {
  margin: 1px auto;
}

.patch-grade {
  display: inline-block;
  min-width: 25px;
  min-height: 25px;
  font-size: 10px;
  padding: 5px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 15px;
}

.report-card-header .school-info .logo {
  margin-right: 15px;
  float: left;
}
.report-card-header .school-info .logo img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
.report-card-header .school-info .info {
  float: left;
  margin-top: 13px;
}
.report-card-header .school-info .info .school-name {
  font-size: 25px;
}
.report-card-header .school-info .info .school-description {
  font-size: 17px;
}
.report-card-header .profile-section {
  text-align: right;
}
.report-card-header .profile-section .avatar {
  margin-bottom: 0.5rem;
}

.custom-css-chart {
  height: 30px;
  justify-content: center;
  text-align: center;
}
.custom-css-chart .custom-css-bg {
  width: 20px;
  position: relative;
}
.custom-css-chart .custom-css-bg .custom-css-chart-text {
  font-size: 10px;
  position: absolute;
  left: 0;
  right: 0;
}
.custom-css-chart .custom-css-bg .custom-css-ratio {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-left: 1px solid;
  border-right: 1px solid;
}

.custom-css-chart.quick-analysis {
  height: 170px;
}
.custom-css-chart.quick-analysis .quick-analysis-bg {
  width: 25px;
}
.custom-css-chart.quick-analysis .fn-size {
  font-size: 15px;
  font-weight: bold;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -27px;
}

.custom-css-chart .custom-css-bg .custom-css-ratio {
  border-color: #ffffff;
}

.dark-layout .custom-css-chart .custom-css-bg .custom-css-ratio {
  border-color: #161d31;
}

.average-mark {
  padding: 5px;
  font-family: system-ui;
}
.average-mark .average-mark-header-text {
  font-size: 19px;
  color: #2fab99;
}
.average-mark .percentage-graph-bg {
  text-align: center !important;
}
.average-mark .percentage-graph-bg .percentage-graph-border-box {
  width: 80%;
  height: 153px;
  border: 3px solid #a5be6d;
  position: relative;
}
.average-mark .percentage-graph-bg .percentage-graph-border-box .percentage-graph-inner-box {
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
}
.average-mark .custom-grade-bg {
  padding: 30px 0px 0px 0px;
  text-align: center;
}
.average-mark .custom-grade-bg .custom-css-grade {
  width: 50px;
  height: 50px;
  line-height: 38px;
  border-radius: 50%;
  font-size: 20px !important;
}
.average-mark .custom-grade-bg .fn-21px {
  font-size: 21px;
}
.average-mark .custom-grade-bg .vl {
  border-left: 3px solid #dcdcdc;
  height: 48px;
  margin-top: 15px;
}
.average-mark .custom-grade-bg .pt-17px {
  padding: 17px 0 0 0;
}
.average-mark .custom-grade-bg .fn-15px {
  font-size: 15px;
}

.marks-boundary {
  padding: 5px 0px 0px 20px;
  font-family: system-ui;
}
.marks-boundary .marks-boundary-header-text {
  font-size: 19px;
  color: #2fab99;
}
.marks-boundary .fn-21px {
  font-size: 21px;
}
.marks-boundary .fn-15px {
  font-size: 15px;
}

.tally-mark-css {
  padding: 5px 0px 0px 20px;
  font-family: system-ui;
}
.tally-mark-css .tally-mark-header-text {
  font-size: 19px;
  color: #2fab99;
}

.pride-css {
  padding: 5px;
  font-family: system-ui;
}
.pride-css .pride-header-text {
  font-size: 19px;
  color: #2fab99;
}
.pride-css .custom-list-icon {
  width: 25px;
  height: 25px;
  line-height: 16px;
  border-radius: 50%;
  background-color: #7e61a7;
  font-size: 15px !important;
}
.pride-css .custom-list-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
}

.help-css {
  padding: 5px 0px 0px 20px;
  font-family: system-ui;
}
.help-css .hepl-header-text {
  font-size: 19px;
  color: #2fab99;
}
.help-css .custom-list-icon {
  width: 25px;
  height: 25px;
  line-height: 16px;
  border-radius: 50%;
  background-color: #9b3d38;
  font-size: 15px !important;
}
.help-css .custom-list-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
}

.students-ratio-css,
.dark-layout .students-ratio-css {
  padding: 5px 0px 0px 20px;
  font-family: system-ui;
}
.students-ratio-css .ratio-header-text *,
.dark-layout .students-ratio-css .ratio-header-text * {
  font-size: 19px;
  color: #2fab99;
}
.students-ratio-css .student-ratio-red-text-css *,
.dark-layout .students-ratio-css .student-ratio-red-text-css * {
  font-size: 17px;
  color: #934335;
}
.students-ratio-css .student-ratio-green-text-css *,
.dark-layout .students-ratio-css .student-ratio-green-text-css * {
  font-size: 17px;
  color: #9bbc52;
}
.students-ratio-css .no-th-br th,
.dark-layout .students-ratio-css .no-th-br th {
  border: none !important;
}

.dark-layout .students-ratio-css .text-muted * {
  color: #676d7d !important;
}

.progress-br-3px {
  border-right: 2px solid;
}

.progress-bl-3px {
  border-left: 2px solid;
}

.progress-br-3px,
.progress-bl-3px {
  border-color: #ebe9f1;
}

.dark-layout .progress-br-3px,
.dark-layout .progress-bl-3px {
  border-color: #3b4253;
}

#toast-container .toast {
  box-shadow: -20px 19px 20px 0 rgba(0, 0, 0, 0.08);
}

.dark-layout #toast-container .toast {
  box-shadow: -20px 16px 24px 0 rgba(0, 0, 0, 0.24) !important;
}

.footer-fixed footer.footer-light {
  box-shadow: -1px -2px 24px 0 rgba(0, 0, 0, 0.1);
}

.dark-layout .footer-fixed footer.footer-light {
  box-shadow: 0px -20px 24px 0 rgba(0, 0, 0, 0.1);
}

.loading-bg {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  display: flex;
}
.loading-bg .relative {
  position: relative;
  width: 100%;
  height: 100%;
}
.loading-bg .relative .absolute-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.loading-bg span {
  font-size: 50px;
}

.fs-15px {
  font-size: 15px !important;
}

.user-avatar.account {
  width: 90px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
}

.avatar-32 {
  width: 32px;
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* radio buttons statrs*/
.custom-radios div {
  display: inline-block;
}
.custom-radios .radio_btn_box {
  margin-right: 5px;
}

.custom-radios input[type=radio] {
  display: none;
}

.custom-radios input[type=radio] + label {
  color: #5a5c69;
  font-size: 14px;
  margin-bottom: 10px;
}

.custom-radios input[type=radio] + label span {
  display: inline-block;
  width: auto;
  min-height: 60px;
  margin: 0 1px 0 0;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 0.358rem;
  /* border: 1px solid #cccccc; */
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  background: #fff;
  font-weight: 800;
  font-size: 25px;
  padding: 10px 45px 0;
  color: #636363;
}

.dark-layout .custom-radios input[type=radio].primary + label span {
  background-color: #293145;
  color: #7164eb;
}
.dark-layout .card-body .custom-radios input[type=radio] + label span {
  background-color: #313a4c;
  color: #7164eb;
}

.custom-radios input[type=radio].primary:checked + label span {
  background-color: #7367f0;
  color: #ffffff;
}

.custom-radios input[type=radio].success:checked + label span {
  background-color: #29c76f;
  color: #ffffff;
}

.custom-radios input[type=radio].danger:checked + label span {
  background-color: #ea5354;
  color: #ffffff;
}

.custom-radios input[type=radio].warning:checked + label span {
  background-color: #ff9e43;
  color: #ffffff;
}

.custom-radios input[type=radio].info:checked + label span {
  background-color: #00cfe7;
  color: #ffffff;
}

.custom-radios input[type=radio].has-icon:checked + label span {
  background-size: 30px;
  background-position: right 5px top 5px;
  background-repeat: no-repeat;
  /* border-top-right-radius: 18px; */
}

.custom-radios {
  position: relative;
}

.radio_btn_text {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
}

/* small sm */
.custom-radios.sm input[type=radio] + label span {
  min-height: 30px;
  font-weight: 500;
  padding: 0.8rem 1.9rem;
  font-size: 1rem;
}

.custom-radios.xs input[type=radio] + label span {
  min-height: 30px;
  font-weight: 500;
  padding: 0.8rem 1.9rem;
  font-size: 0.8rem;
}

.custom-radios input[type=radio].has-icon + label span {
  font-weight: 500;
  font-size: 17px;
  padding: 16px 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.d-flex.same-size-100px input[type=radio].has-icon + label span {
  height: 100px;
}

.d-flex.same-size-100px input[type=radio].has-icon + label {
  height: 100px;
  width: 100%;
}

/* radio buttons ends*/
.mt-2px {
  margin-top: 2px;
}

.table-plus-count {
  display: flex;
  align-items: center;
}
.table-plus-count i {
  font-size: 19px;
  margin-left: 2px;
}

.box-wh20px {
  width: 20px;
  height: 20px;
}

.mb-8px {
  margin-bottom: 8px;
}

.text_own_size {
  font-size: 15px;
}

.own_lineHeight {
  line-height: 2.5;
}

.bg-light-gray {
  background-color: #f3f2f7;
}

.dark-layout .bg-light-gray {
  background-color: #333d55;
}

.light-gray-border {
  border: 1px solid #e6e5e5;
}

.dark-layout .light-gray-border {
  border: 1px solid #333d55 !important;
}

.of-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.inline-block {
  display: inline-block;
}

.no-br {
  border-radius: 0;
}

.custom-cascading {
  content: "\e64c";
  padding: 6px;
  background-color: yellowgreen;
  border-radius: 50px;
  color: #fff;
  margin-left: 57px;
}

.bg-green {
  border-color: #34c57a;
  color: #fff;
  transition: 1s ease-in-out;
}
.bg-green:hover {
  box-shadow: 0 0 20px 0 #34c57a inset, 0 0 2px 1px #34c57a;
}

.bg-blue {
  border-color: #7367f0;
  color: #fff;
  transition: 1s ease-in-out;
}
.bg-blue:hover {
  box-shadow: 0 0 20px 0 #7367f0 inset, 0 0 2px 1px #7367f0;
}

.bg-red {
  border-color: #e74a3b;
  color: #fff;
  transition: 1s ease-in-out;
}
.bg-red:hover {
  box-shadow: 0 0 20px 0 #e74a3b inset, 0 0 2px 1px #e74a3b;
}

.bg-yellow {
  border-color: #ffaf63;
  color: #fff;
  transition: 1s ease-in-out;
}
.bg-yellow:hover {
  box-shadow: 0 0 20px 0 #ffaf63 inset, 0 0 2px 1px #ffaf63;
}

.demo-inline-spacing {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: -13px;
}

.m-label-left {
  font-size: 1rem;
  position: static;
  margin-left: 18px;
}

.custom-size-checkbox {
  background-color: #28c76f;
  font-weight: bolder;
  border-radius: 50px;
  text-align: center;
  color: white;
  /* padding: 4px 1px 4px 1px; */
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 23px;
  font-size: 10px;
}
.custom-size-checkbox i {
  font-size: 16px;
  line-height: inherit;
}

.light-gray-lr-border {
  border-left: 1px solid #ddd9e8;
  border-right: 1px solid #ddd9e8;
}

.dark-layout .light-gray-lr-border {
  border-color: #444c5e;
}

.text-grade {
  font-size: 9px;
  font-weight: bolder;
}

::-moz-selection {
  background: #7367f0;
  color: #ffffff;
}

::selection {
  background: #7367f0;
  color: #ffffff;
}

.p-5px {
  padding: 5px !important;
}

.m-1px {
  margin: 1px !important;
}

.mh-40px {
  min-height: 40px !important;
}

.lh-8px {
  line-height: 8px;
}

.fs-10px {
  font-size: 10px;
}

.pb-2p5 {
  padding-bottom: 2.5rem;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #22292f;
}

.offcanvas-backdrop.fade {
  opacity: 0;
}

.offcanvas-backdrop.show {
  opacity: 0.5;
}

.relative-behave {
  position: relative;
}
.relative-behave .abs-middle {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
}
.relative-behave .abs-middle * {
  font-size: 14px !important;
}
.relative-behave .abs-rt--5 {
  position: absolute;
  right: -5px;
  top: -5px;
}
.relative-behave .abs-rt--5 * {
  font-size: 14px !important;
}
.relative-behave .abs-r-32-t--5 {
  position: absolute;
  right: 32px;
  top: -5px;
}
.relative-behave .abs-r-32-t--5 * {
  font-size: 14px !important;
}
.relative-behave .abs-rt-10 {
  position: absolute;
  right: 10px;
  top: 10px;
}

.bg-primary.text-white * {
  color: #ffffff;
}

.cp {
  cursor: pointer;
}

.vuecal__view-btn--active {
  background: hsl(246deg, 82%, 67%) !important;
  color: #ffffff !important;
}

.vuecal__title-bar button {
  color: #7366f0 !important;
}
.vuecal__title-bar .angle {
  color: #7366f0 !important;
}

.w-250px {
  width: 250px;
}

.dark-layout .quillWrapper .ql-toolbar.ql-snow * {
  color: #7366f0;
}
.dark-layout .quillWrapper .ql-snow .ql-stroke {
  stroke: #7366f0;
}

.mt-0p6 {
  margin-top: 0.6rem;
}

.profile-card-header {
  width: 100%;
  min-height: 100px;
  border-top-left-radius: 0.428rem;
  border-top-right-radius: 0.428rem;
}
.profile-card-header .dropdown button {
  color: #ffffff;
}
.profile-card-header .dropdown button i {
  font-weight: 900;
}

.profile-page-header {
  width: 100%;
  min-height: 134px;
}

#user-profile .profile-header .profile-img-container {
  bottom: -1.3rem !important;
}

.profile-tabs .nav-link {
  color: #625f6e;
}
.profile-tabs .nav-link:hover,
.profile-tabs .nav-link:focus {
  color: #6d62e4;
}
.profile-tabs .nav-link.router-link-exact-active {
  color: #6d62e4;
  -webkit-text-decoration-color: #7367f0;
          text-decoration-color: #7367f0;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
}

.dark-layout .nav-link {
  color: #ffffff;
}

.pt-6px {
  padding-top: 6px;
}

.chart-size-380px {
  height: 380px;
}

.chart-size-300px {
  height: 300px;
}

.fs-1rem {
  font-size: 1rem !important;
}

a.disabled {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: #cccccc;
}

.pagination-sm .page-item:first-child .page-link,
.pagination-sm .page-item:last-child .page-link,
.pagination-sm .page-item:last-child .page-link .active {
  border-radius: 5rem;
}

.form-single-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.form-single-image-full-display {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.nadra-image {
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 992px) {
  .bs-stepper.vertical .bs-stepper-header {
    display: table;
  }
  .bs-stepper.vertical .bs-stepper-header .step {
    display: table-cell;
  }
}
@media screen and (max-width: 767px) {
  .bs-stepper.vertical .bs-stepper-header {
    display: block !important;
  }
  .bs-stepper.vertical .bs-stepper-header .step {
    display: block;
  }

  .profile-header ul.nav {
    display: block;
  }

  .ms-sm-10px {
    margin-left: 10px;
  }

  .profile-title h2 {
    font-size: 1rem !important;
    margin-bottom: 2px !important;
  }
  .profile-title p {
    font-size: 0.7rem;
  }
}
.font-size {
  font-size: 10px !important;
}

.absoluted-img {
  position: absolute;
  width: 100%;
  height: 900px;
}

.custom-auth-wrapper {
  display: flex;
  flex-basis: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 0) !important;
  width: 100%;
}

.card {
  box-shadow: 12px 12px 16px 0 rgba(0, 0, 0, 0.25), -8px -8px 12px 0 rgba(255, 255, 255, 0.3);
}

.input-fields-css {
  position: relative;
  display: inline-block;
}

.search-input {
  padding-left: 30px;
  /* Create space for the icon on the right */
  width: 200px;
}

.search-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  /* Adjust the size of the icon */
  height: 10px;
}

.video-actions {
  position: absolute;
  top: -26px;
  right: 20px;
}

.lesson-actions {
  position: absolute !important;
  top: -67px !important;
  right: -1130px !important;
}

.object-fit-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
