.noty_bar {
    position: relative;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate(0, 0) scale(1, 1);
    transform: translate(0, 0) scale(1, 1);
    -webkit-font-smoothing: subpixel-antialiased;
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1)
}

.noty_body {
    padding: .9375rem 1.25rem
}

.noty_close_with_button .noty_body {
    padding-right: 2.5rem
}

.noty_buttons {
    padding: .9375rem 1.25rem;
    padding-top: 0;
    text-align: right
}

#noty_layout__bottom,
#noty_layout__bottomCenter,
#noty_layout__bottomLeft,
#noty_layout__bottomRight,
#noty_layout__center,
#noty_layout__centerLeft,
#noty_layout__centerRight,
#noty_layout__top,
#noty_layout__topCenter,
#noty_layout__topLeft,
#noty_layout__topRight,
.noty_layout_mixin {
    position: fixed;
    margin: 0;
    padding: 0;
    z-index: 1050;
    -webkit-transform: translateZ(0) scale(1, 1);
    transform: translateZ(0) scale(1, 1);
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    max-width: 90%
}

#noty_layout__top {
    top: 0;
    left: 5%;
    width: 90%
}

#noty_layout__top .noty_bar:first-child {
    margin-top: 1.25rem
}

#noty_layout__topLeft {
    top: 1.25rem;
    left: 1.25rem;
    width: 20rem
}

#noty_layout__topCenter {
    top: 5%;
    left: 50%;
    width: 20rem;
    -webkit-transform: translate(-50%) translateZ(0) scale(1, 1);
    transform: translate(-50%) translateZ(0) scale(1, 1)
}

#noty_layout__topRight {
    top: 1.25rem;
    right: 1.25rem;
    width: 35rem
}

#noty_layout__center {
    top: 50%;
    left: 50%;
    /*width: 20rem;*/
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1, 1);
    transform: translate(-50%, -50%) translateZ(0) scale(1, 1)
}

#noty_layout__centerLeft {
    top: 50%;
    left: 1.25rem;
    width: 20rem;
    -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1);
    transform: translate(0, -50%) translateZ(0) scale(1, 1)
}

#noty_layout__centerRight {
    top: 50%;
    right: 1.25rem;
    width: 20rem;
    -webkit-transform: translate(0, -50%) translateZ(0) scale(1, 1);
    transform: translate(0, -50%) translateZ(0) scale(1, 1)
}

#noty_layout__bottom {
    bottom: 0;
    left: 5%;
    width: 90%
}

#noty_layout__bottom .noty_bar:last-child {
    margin-bottom: 1.25rem
}

#noty_layout__bottomLeft {
    bottom: 1.25rem;
    left: 1.25rem;
    width: 20rem
}

#noty_layout__bottomCenter {
    bottom: 5%;
    left: 50%;
    width: 20rem;
    -webkit-transform: translate(calc(-50% - 1px)) translateZ(0) scale(1, 1);
    transform: translate(calc(-50% - 1px)) translateZ(0) scale(1, 1)
}

#noty_layout__bottomRight {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 20rem
}

.noty_progressbar {
    display: none
}

.noty_has_timeout.noty_has_progressbar .noty_progressbar {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: .1875rem;
    width: 100%;
    background-color: rgba(0, 0, 0, .25)
}

.noty_effects_open {
    opacity: 0;
    -webkit-transform: translate(50%);
    transform: translate(50%);
    -webkit-animation: noty_anim_in .5s cubic-bezier(.68, -.55, .265, 1.55);
    animation: noty_anim_in .5s cubic-bezier(.68, -.55, .265, 1.55);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.noty_effects_close {
    -webkit-animation: noty_anim_out .5s cubic-bezier(.68, -.55, .265, 1.55);
    animation: noty_anim_out .5s cubic-bezier(.68, -.55, .265, 1.55);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.noty_fix_effects_height {
    -webkit-animation: noty_anim_height 75ms ease-out;
    animation: noty_anim_height 75ms ease-out
}

.noty_close_with_click {
    cursor: pointer
}

.noty_close_button {
    position: absolute;
    top: .9375rem;
    right: 1.25rem;
    background-color: transparent;
    font-size: 1.25003rem;
    font-weight: 400;
    color: inherit;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    opacity: .75;
    transition: opacity ease-in-out .15s
}

@media screen and (prefers-reduced-motion:reduce) {
    .noty_close_button {
        transition: none
    }
}

.noty_close_button:hover {
    opacity: 1
}

.noty_modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1040;
    opacity: .5;
    left: 0;
    top: 0
}

.noty_modal.noty_modal_open {
    opacity: 0;
    -webkit-animation: noty_modal_in .3s ease-out;
    animation: noty_modal_in .3s ease-out
}

.noty_modal.noty_modal_close {
    -webkit-animation: noty_modal_out .3s ease-out;
    animation: noty_modal_out .3s ease-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

@-webkit-keyframes noty_modal_in {
    100% {
        opacity: .5
    }
}

@keyframes noty_modal_in {
    100% {
        opacity: .5
    }
}

@-webkit-keyframes noty_modal_out {
    100% {
        opacity: 0
    }
}

@keyframes noty_modal_out {
    100% {
        opacity: 0
    }
}

@-webkit-keyframes noty_anim_in {
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
        opacity: 1
    }
}

@keyframes noty_anim_in {
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
        opacity: 1
    }
}

@-webkit-keyframes noty_anim_out {
    100% {
        -webkit-transform: translate(50%);
        transform: translate(50%);
        opacity: 0
    }
}

@keyframes noty_anim_out {
    100% {
        -webkit-transform: translate(50%);
        transform: translate(50%);
        opacity: 0
    }
}

@-webkit-keyframes noty_anim_height {
    100% {
        height: 0
    }
}

@keyframes noty_anim_height {
    100% {
        height: 0
    }
}

.noty_theme__limitless.noty_bar {
    margin: .25rem 0;
    position: relative;
    border: 1px solid transparent;
    border-radius: .1875rem
}

.noty_theme__limitless.noty_type__alert {
    background-color: #546e7a;
    color: #fff;
    border-color: #546e7a
}

.noty_theme__limitless.noty_type__warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.noty_theme__limitless.noty_type__error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.noty_theme__limitless.noty_type__info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.noty_theme__limitless.noty_type__success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.noty_theme__limitless.noty_type__confirm {
    background-color: #fff;
    border-color: rgba(0, 0, 0, .2);
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1)
}

.noty_theme__limitless.noty_type__confirm .noty_body {
    padding: 1.25rem
}

.noty_theme__limitless.noty_type__confirm .noty_close_button {
    top: 1.25rem
}


.picker {
    width: 100%;
    text-align: left;
    position: absolute;
    top: 100%;
    margin-top: -1px;
    z-index: 1070;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.picker__input {
    cursor: default
}

.picker__holder {
    width: 100%;
    overflow-y: auto;
    position: absolute;
    display: none;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .15);
    border-top-width: 0;
    border-bottom-width: 0;
    min-width: 18rem;
    max-width: 25rem;
    outline: 0;
    -webkit-overflow-scrolling: touch;
    border-bottom-right-radius: .1875rem;
    border-bottom-left-radius: .1875rem;
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1)
}

.picker--opened .picker__holder {
    max-height: 480px;
    border-top-width: 1px;
    border-bottom-width: 1px;
    display: block
}

.picker__box {
    padding: .9375rem
}

.picker__header {
    text-align: center;
    position: relative;
    font-size: .9375rem;
    line-height: 1;
    padding-top: .9375rem;
    padding-bottom: .9375rem
}

.picker__month,
.picker__year {
    font-weight: 500;
    display: inline-block;
    margin-left: .3125rem;
    margin-right: .3125rem
}

.picker__year {
    color: #999;
    font-size: .75rem;
    font-weight: 400
}

.picker__select--month,
.picker__select--year {
    border: 1px solid #ddd;
    padding: .4375rem .875rem;
    font-size: 1.2rem;
    line-height: 1.5385;
    color: #333;
    background-color: #fff;
    background-clip: padding-box;
    margin-left: .3125rem;
    margin-right: .3125rem;
    outline: 0;
    white-space: nowrap
}

.picker__nav--next,
.picker__nav--prev {
    position: absolute;
    padding: .5rem;
    top: 50%;
    margin-top: -1rem;
    line-height: 1;
    border-radius: .1875rem;
    transition: all ease-in-out .15s
}

@media screen and (prefers-reduced-motion:reduce) {
    .picker__nav--next,
    .picker__nav--prev {
        transition: none
    }
}

.picker__nav--next:before,
.picker__nav--prev:before {
    font-family: icomoon;
    display: block;
    font-size: 1rem;
    width: 1rem;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.picker__nav--next:hover,
.picker__nav--prev:hover {
    cursor: pointer;
    color: #333;
    background-color: #f3f9ff
}

.picker__nav--prev {
    left: 0
}

.picker__nav--prev:before {
    font-family: 'Linearicons';
    content: '\e93b';
}

.picker__nav--next {
    right: 0
}

.picker__nav--next:before {
    font-family: 'Linearicons';
    content: '\e93c';
}

.picker__nav--disabled,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover,
.picker__nav--disabled:hover {
    cursor: default;
    background-color: transparent
}

.picker__table {
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    font-size: inherit;
    width: 100%;
    margin-bottom: .9375rem
}

.picker__table td {
    margin: 0;
    padding: 0
}

.picker__weekday {
    width: 14.285714286%;
    text-align: center;
    padding-bottom: .46875rem;
    padding-top: .9375rem;
    color: #999;
    font-weight: 400
}

.picker__day {
    padding: .4375rem;
    min-width: 2.12503rem;
    border-radius: .1875rem
}

.picker__day--today {
    position: relative;
    background-color: #f3f9ff
}

.picker__day--today:before {
    content: "";
    position: absolute;
    top: .125rem;
    right: .125rem;
    width: 0;
    height: 0;
    border-top: .375rem solid #00b5e9;
    border-left: .375rem solid transparent
}

.picker__day--outfocus {
    color: #ccc
}

.picker__day--infocus,
.picker__day--outfocus {
    transition: all ease-in-out .15s
}

@media screen and (prefers-reduced-motion:reduce) {
    .picker__day--infocus,
    .picker__day--outfocus {
        transition: none
    }
}

.picker__day--infocus:hover,
.picker__day--outfocus:hover {
    cursor: pointer;
    color: #333;
    background-color: #f3f9ff
}

.picker__day--highlighted:before {
    border-top-color: #fff
}

.picker--focused .picker__day--highlighted,
.picker__day--highlighted,
.picker__day--highlighted:hover {
    cursor: pointer;
    color: #fff;
    background-color: #00b5e9
}

.picker--focused .picker__day--selected,
.picker__day--selected,
.picker__day--selected:hover {
    background-color: #00b5e9;
    color: #fff
}

.picker__day--disabled,
.picker__day--disabled:hover {
    background-color: transparent;
    color: #999;
    cursor: default
}

.picker__day--disabled:before {
    border-top-color: #999
}

.picker__day--highlighted .picker__day--disabled,
.picker__day--highlighted .picker__day--disabled:hover {
    background-color: transparent
}

.picker__footer {
    text-align: center
}

.picker__footer button {
    border: 0;
    padding: .4375rem .875rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    border-radius: .1875rem;
    transition: all ease-in-out .15s
}

@media screen and (prefers-reduced-motion:reduce) {
    .picker__footer button {
        transition: none
    }
}

.picker__footer button:focus,
.picker__footer button:hover {
    outline: 0;
    color: #333;
    background-color: #f3f9ff
}

.picker__footer button:before {
    height: 0
}

.picker__footer button:disabled,
.picker__footer button:disabled:focus,
.picker__footer button:disabled:hover {
    background-color: transparent;
    color: #999;
    cursor: default
}

.picker__button--today:before {
    content: '';
    margin-right: .625rem;
    position: relative;
    display: inline-block;
    top: -.0625rem;
    width: 0;
    border-top: .375rem solid #2196f3;
    border-left: .375rem solid transparent
}

.picker__button--close:before {
    content: '\D7';
    display: inline-block;
    position: relative;
    margin-right: .625rem;
    top: .0625rem;
    line-height: 1;
    font-size: 1rem
}

.picker__button--clear:before {
    content: '';
    display: inline-block;
    position: relative;
    top: -.1875rem;
    width: .5rem;
    margin-right: .625rem;
    border-top: .125rem solid #f44336
}

.picker--time {
    min-width: 16rem;
    max-width: 20rem
}

.picker--time .picker__box {
    padding: 0
}

.picker__list {
    list-style: none;
    padding: .5rem 0;
    margin: 0;
    max-height: 250px;
    overflow-y: auto
}

.picker__list-item {
    position: relative;
    padding: .5rem 1rem;
    transition: all ease-in-out .15s
}

@media screen and (prefers-reduced-motion:reduce) {
    .picker__list-item {
        transition: none
    }
}

.picker__list-item:focus,
.picker__list-item:hover {
    cursor: pointer;
    color: #333;
    background-color: #f3f9ff;
    z-index: 10
}

.picker--time .picker__button--clear {
    display: block;
    width: 100%;
    margin: 0;
    padding: .4375rem .875rem;
    background-color: #fafafa;
    outline: 0;
    border: 0;
    border-top: 1px solid #ddd;
    text-align: center;
    cursor: pointer;
    margin-bottom: -.5rem;
    margin-top: .5rem;
    transition: all ease-in-out .15s
}

@media screen and (prefers-reduced-motion:reduce) {
    .picker--time .picker__button--clear {
        transition: none
    }
}

.picker--time .picker__button--clear:focus,
.picker--time .picker__button--clear:hover {
    background-color: #f3f9ff
}

.picker__list-item--highlighted {
    z-index: 10
}

.picker--focused .picker__list-item--highlighted,
.picker__list-item--highlighted,
.picker__list-item--highlighted:hover {
    cursor: pointer;
    color: #333;
    background-color: #f3f9ff
}

.picker--focused .picker__list-item--selected,
.picker__list-item--selected,
.picker__list-item--selected:hover {
    color: #fff;
    background-color: #2196f3;
    z-index: 10
}

.picker--focused .picker__list-item--disabled,
.picker__list-item--disabled,
.picker__list-item--disabled:hover {
    color: #999;
    background-color: transparent;
    cursor: default;
    z-index: auto
}



.swal2-shown:not(.swal2-no-backdrop) {
    overflow-y: hidden
}

.swal2-shown.swal2-iosfix {
    position: fixed;
    left: 0;
    right: 0
}

.swal2-shown.swal2-no-backdrop .swal2-shown {
    background-color: transparent;
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1)
}

.swal2-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    z-index: 1070
}

.swal2-container.swal2-top {
    -ms-flex-align: start;
    align-items: flex-start
}

.swal2-container.swal2-top .swal2-modal {
    margin-top: 1.25rem
}

.swal2-container.swal2-top-left {
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.swal2-container.swal2-top-left .swal2-modal {
    margin-top: 1.25rem;
    margin-left: 1.25rem
}

.swal2-container.swal2-top-right {
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.swal2-container.swal2-top-right .swal2-modal {
    margin-top: 1.25rem;
    margin-right: 1.25rem
}

.swal2-container.swal2-center {
    -ms-flex-align: center;
    align-items: center;
    margin: auto
}

.swal2-container.swal2-center-left {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.swal2-container.swal2-center-left .swal2-modal {
    margin-left: 1.25rem
}

.swal2-container.swal2-center-right {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.swal2-container.swal2-center-right .swal2-modal {
    margin-right: 1.25rem
}

.swal2-container.swal2-bottom {
    -ms-flex-align: end;
    align-items: flex-end
}

.swal2-container.swal2-bottom .swal2-modal {
    margin-bottom: 1.25rem
}

.swal2-container.swal2-bottom-left {
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.swal2-container.swal2-bottom-left .swal2-modal {
    margin-bottom: 1.25rem;
    margin-left: 1.25rem
}

.swal2-container.swal2-bottom-right {
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.swal2-container.swal2-bottom-right .swal2-modal {
    margin-bottom: 1.25rem;
    margin-right: 1.25rem
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
    .swal2-container .swal2-modal {
        margin: 0!important
    }
}

.swal2-container.swal2-fade {
    transition: background-color .15s
}

@media screen and (prefers-reduced-motion:reduce) {
    .swal2-container.swal2-fade {
        transition: none
    }
}

body:not(.swal2-no-backdrop) .swal2-container.swal2-shown {
    background-color: rgba(0, 0, 0, .5)
}

.swal2-grow-fullscreen .swal2-modal {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 1.25rem 1.25rem
}

.swal2-grow-row .swal2-modal {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 1.25rem;
    margin-right: 1.25rem
}

.swal2-grow-column {
    -ms-flex: 1;
    flex: 1;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center
}

.swal2-grow-column.swal2-center-left {
    -ms-flex-align: start;
    align-items: flex-start
}

.swal2-grow-column.swal2-center-right {
    -ms-flex-align: end;
    align-items: flex-end
}

.swal2-grow-column .swal2-modal {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem
}

.swal2-popup {
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    text-align: center;
    display: none;
    position: relative;
    max-width: 100%;
    padding: 1.25rem;
    width: 31.25rem;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    border-radius: .25rem;
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .1)
}

.swal2-popup:focus {
    outline: 0
}

.swal2-popup.swal2-loading {
    overflow-y: hidden
}

@media (min-width:576px) {
    .swal2-popup {
        margin-left: 0;
        margin-right: 0
    }
}

.swal2-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center
}

.swal2-title {
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.5385;
    text-align: center;
    position: relative;
    word-wrap: break-word;
    margin-top: .3125rem;
    margin-bottom: 0
}

.swal2-content {
    text-align: center;
    position: relative;
    word-wrap: break-word
}

.swal2-actions {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 1.25rem
}

.swal2-actions>button+button {
    margin-left: .625rem
}

.swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
    cursor: no-drop;
    opacity: .4
}

.swal2-loading .swal2-confirm:before {
    content: '\eb55';
    font-family: icomoon;
    display: inline-block;
    font-size: 1rem;
    -ms-flex-item-align: center;
    align-self: center;
    vertical-align: middle;
    position: relative;
    line-height: 1;
    margin-right: .625rem;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.swal2-close {
    background: 0 0;
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    opacity: .5;
    width: 1.5rem;
    height: 1.5rem;
    transition: opacity ease-in-out .15s
}

@media screen and (prefers-reduced-motion:reduce) {
    .swal2-close {
        transition: none
    }
}

.swal2-close:focus,
.swal2-close:hover {
    opacity: 1;
    outline: 0
}

.swal2-checkbox,
.swal2-file,
.swal2-input,
.swal2-radio,
.swal2-select,
.swal2-textarea {
    display: none;
    margin: 1.25rem auto 0 auto
}

.swal2-popup .btn-group,
.swal2-popup .select2-container,
.swal2-popup .uniform-uploader {
    margin: 1.25rem auto 0 auto
}

.swal2-checkbox {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

.swal2-checkbox>span:not(.switchery) {
    margin-left: .625rem
}

.swal2-radio {
    -ms-flex-pack: center;
    justify-content: center
}

.swal2-radio label {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center
}

.swal2-radio label+label {
    margin-left: 1.25rem
}

.swal2-radio label .uniform-choice,
.swal2-radio label input {
    margin-right: .625rem
}

.swal2-range {
    margin-top: 1.25rem;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.swal2-range input {
    display: block;
    width: 100%
}

.swal2-range output {
    font-size: .9375rem;
    font-weight: 500;
    margin-top: .625rem
}

.swal2-inputerror,
.swal2-inputerror:focus,
.swal2-inputerror:hover {
    border-color: #f44336
}

.swal2-validationerror {
    background-color: #f3f9ff;
    overflow: hidden;
    padding: .4375rem .875rem;
    display: none;
    margin-top: 1.25rem;
    margin-left: 0!important;
    margin-right: 0!important;
    border-radius: .1875rem
}

.swal2-validationerror:before {
    content: '\ed68';
    font-family: icomoon;
    display: inline-block;
    font-size: 1rem;
    vertical-align: middle;
    -ms-flex-item-align: center;
    align-self: center;
    line-height: 1;
    margin-right: .625rem;
    color: #f44336;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.swal2-image {
    margin: .625rem auto;
    max-width: 100%;
    height: auto
}

.swal2-icon {
    border: .25rem solid transparent;
    margin: .625rem auto 1.25rem auto;
    padding: 0;
    position: relative;
    box-sizing: content-box;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 5rem;
    height: 5rem;
    border-radius: 50%
}

.swal2-icon.swal2-success {
    border-color: #689f38
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
    height: 2.5rem;
    width: 1.25rem;
    border-right: .25rem solid #689f38;
    border-top: .25rem solid #689f38;
    position: absolute;
    left: 1.25rem;
    top: 2.625rem;
    opacity: 1;
    -webkit-animation: animate-checkmark ease .75s;
    animation: animate-checkmark ease .75s;
    -webkit-transform: scaleX(-1) rotate(135deg);
    transform: scaleX(-1) rotate(135deg);
    -webkit-transform-origin: left top;
    transform-origin: left top
}

.swal2-icon.swal2-error {
    border-color: #ef5350
}

.swal2-icon.swal2-error .swal2-x-mark {
    position: relative;
    display: block;
    -ms-flex: 1;
    flex: 1
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
    position: absolute;
    height: .25rem;
    width: 3rem;
    background-color: #ef5350;
    display: block;
    top: 2.375rem
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 1rem
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 1rem
}

.swal2-icon.swal2-warning {
    color: #ff7043;
    border-color: #ff7043;
    font-size: 4rem;
    line-height: 5rem;
    -ms-flex-pack: center;
    justify-content: center
}

.swal2-icon.swal2-info {
    color: #03a9f4;
    border-color: #03a9f4;
    font-size: 4rem;
    line-height: 5rem;
    -ms-flex-pack: center;
    justify-content: center
}

.swal2-icon.swal2-question {
    color: #455a64;
    border-color: #455a64;
    font-size: 4rem;
    line-height: calc(5rem + .25rem);
    -ms-flex-pack: center;
    justify-content: center
}

.swal2-progresssteps {
    font-weight: 500;
    margin: 0 0 1.25rem;
    padding: 0
}

.swal2-progresssteps li {
    display: inline-block;
    position: relative
}

.swal2-progresscircle {
    color: #2196f3;
    text-align: center;
    margin-left: .625rem;
    margin-right: .625rem
}

.swal2-progresscircle.swal2-activeprogressstep {
    color: #2196f3
}

.swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle {
    color: #999
}

.swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline {
    background-color: #ddd
}

.swal2-progressline {
    background-color: #2196f3;
    height: .0625rem;
    vertical-align: middle
}

[class^=swal2] {
    -webkit-tap-highlight-color: transparent
}

.swal2-show {
    -webkit-animation: show-notification .15s;
    animation: show-notification .15s
}

.swal2-show.swal2-noanimation {
    -webkit-animation: none;
    animation: none
}

.swal2-hide {
    -webkit-animation: hide-notification .15s forwards;
    animation: hide-notification .15s forwards
}

.swal2-hide.swal2-noanimation {
    -webkit-animation: none;
    animation: none
}

.swal2-animate-error-icon,
.swal2-animate-success-icon,
.swal2-info,
.swal2-question,
.swal2-warning {
    -webkit-animation: animate-circle .5s;
    animation: animate-circle .5s
}

.swal2-animate-x-mark {
    -webkit-animation: animate-x-mark .5s;
    animation: animate-x-mark .5s
}

@-webkit-keyframes show-notification {
    0% {
        -webkit-transform: scale(.5);
        transform: scale(.5)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes show-notification {
    0% {
        -webkit-transform: scale(.5);
        transform: scale(.5)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes hide-notification {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(.5);
        transform: scale(.5);
        opacity: 0
    }
}

@keyframes hide-notification {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(.5);
        transform: scale(.5);
        opacity: 0
    }
}

@-webkit-keyframes animate-checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 0
    }
    30% {
        height: 0;
        width: 1.25rem;
        opacity: 0
    }
    60% {
        height: 2.5rem;
        width: 1.25rem;
        opacity: 1
    }
    100% {
        height: 2.5rem;
        width: 1.25rem;
        opacity: 1
    }
}

@keyframes animate-checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 0
    }
    30% {
        height: 0;
        width: 1.25rem;
        opacity: 0
    }
    60% {
        height: 2.5rem;
        width: 1.25rem;
        opacity: 1
    }
    100% {
        height: 2.5rem;
        width: 1.25rem;
        opacity: 1
    }
}

@-webkit-keyframes animate-circle {
    0% {
        color: transparent;
        border-color: transparent
    }
    25% {
        color: transparent
    }
}

@keyframes animate-circle {
    0% {
        color: transparent;
        border-color: transparent
    }
    25% {
        color: transparent
    }
}

@-webkit-keyframes animate-x-mark {
    0% {
        opacity: 0
    }
    25% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes animate-x-mark {
    0% {
        opacity: 0
    }
    25% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
