@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.dsm-tag-colorful-dark-error {
    background-color: #E60909
}

.dsm-tag-colorful-plain-error {
    border-color: #E60909 !important;
    color: #E60909 !important;
    background-color: rgba(230, 9, 9, 0.1)
}

.dsm-tag-text-error {
    color: #E60909 !important
}

.dsm-tag-text-error::before {
    background-color: #E60909 !important;
    box-shadow: 0 0 0 2px rgba(230, 9, 9, 0.1) !important
}

.dsm-tag-colorful-dark-warning {
    background-color: #F47B04
}

.dsm-tag-colorful-plain-warning {
    border-color: #F47B04 !important;
    color: #F47B04 !important;
    background-color: rgba(244, 123, 4, 0.1)
}

.dsm-tag-text-warning {
    color: #F47B04 !important
}

.dsm-tag-text-warning::before {
    background-color: #F47B04 !important;
    box-shadow: 0 0 0 2px rgba(244, 123, 4, 0.1) !important
}

.dsm-tag-colorful-dark-success {
    background-color: #67B368
}

.dsm-tag-colorful-plain-success {
    border-color: #67B368 !important;
    color: #67B368 !important;
    background-color: rgba(103, 179, 104, 0.1)
}

.dsm-tag-text-success {
    color: #67B368 !important
}

.dsm-tag-text-success::before {
    background-color: #67B368 !important;
    box-shadow: 0 0 0 2px rgba(103, 179, 104, 0.1) !important
}

.dsm-tag-colorful-dark-link {
    background-color: #2471FF
}

.dsm-tag-colorful-plain-link {
    border-color: #2471FF !important;
    color: #2471FF !important;
    background-color: rgba(36, 113, 255, 0.1)
}

.dsm-tag-text-link {
    color: #2471FF !important
}

.dsm-tag-text-link::before {
    background-color: #2471FF !important;
    box-shadow: 0 0 0 2px rgba(36, 113, 255, 0.1) !important
}

.dsm-dialog {
    position: relative;
    width: auto;
    margin: 10px
}

.dsm-dialog-wrap {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

.dsm-dialog-gallery .dsm-dialog-body {
    padding: 0;
    max-height: none
}

.dsm-dialog-title {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
    width: 100%
}

.dsm-dialog-content {
    display: flex;
    flex-direction: column;
    margin: auto 0;
    width: 100%;
    position: relative;
    background-color: #fff !important;
    border: none;
    border-radius: .25rem;
    background-clip: padding-box
}

.dsm-dialog-content.light {
    background-color: #fff
}

.dsm-dialog-close {
    cursor: pointer;
    border: 0;
    background: transparent;
    position: absolute;
    right: 1.25rem;
    top: 1rem;
    text-shadow: none;
    line-height: 1;
    font-weight: normal;
    color: #fff;
    filter: alpha(opacity=80);
    opacity: .8;
    text-decoration: none;
    z-index: 11
}

.dsm-dialog-close-x:after {
    font-family: 'ds';
    content: '\e9ab'
}

.dsm-dialog-close:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    text-decoration: none
}

.dsm-dialog-close:focus {
    outline: none
}

.dsm-dialog-header {
    padding: 17px 25px;
    border-radius: .25rem .25rem 0 0;
    background: #000;
    color: #fff
}

.dsm-dialog-body {
    padding: 25px 25px 0;
    font-size: 13px;
    line-height: 20px;
    height: calc(100% - 50px);
    background: #fff !important;
}

.dsm-dialog-body .dsm-dialog-scroll {
    padding: 25px 25px 0
}

.dsm-dialog-footer,
.dsm-dialog-body-footer {
    padding: 20px 25px;
    border-radius: 0 0 .25rem .25rem
}

.dsm-dialog-zoom-enter,
.dsm-dialog-zoom-appear {
    opacity: 0;
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
    animation-play-state: paused
}

.dsm-dialog-zoom-leave {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
    animation-play-state: paused
}

.dsm-dialog-zoom-enter.dsm-dialog-zoom-enter-active,
.dsm-dialog-zoom-appear.dsm-dialog-zoom-appear-active {
    animation-name: rcDialogZoomIn;
    animation-play-state: running
}

.dsm-dialog-zoom-leave.dsm-dialog-zoom-leave-active {
    animation-name: rcDialogZoomOut;
    animation-play-state: running
}

@keyframes rcDialogZoomIn {
    0% {
        opacity: 0;
        transform: scale(0, 0)
    }

    100% {
        opacity: 1;
        transform: scale(1, 1)
    }
}

@keyframes rcDialogZoomOut {
    0% {
        transform: scale(1, 1)
    }

    100% {
        opacity: 0;
        transform: scale(0, 0)
    }
}

.dsm-dialog-side .dsm-dialog {
    margin: 0 auto;
    height: 100%
}

.dsm-dialog-side .dsm-dialog .dsm-dialog-content {
    height: 100%;
    border-radius: 0
}

.dsm-dialog-side .dsm-dialog .dsm-dialog-body {
    padding: 0;
    height: 100%;
    max-height: none
}

.dsm-dialog-side .dsm-dialog .dsm-dialog-header {
    border-radius: 0;
    position: relative
}

.dsm-dialog-side .dsm-dialog.right {
    margin-right: 0
}

.dsm-dialog-side .dsm-dialog.left {
    margin-left: 0
}

.dsm-dialog.light .dsm-dialog-body,
.dsm-dialog.light .dsm-dialog-footer {
    background: #f5f5f5
}

.dsm-dialog.dsm-dialog-sm {
    max-width: 350px
}

.dsm-dialog.dsm-dialog-lg {
    max-width: 800px
}

.dsm-dialog.dsm-dialog-xl {
    max-width: 70%
}

.dsm-dialog-title-customer {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.dsm-dialog-title-customer .dsm-dialog-close {
    position: static
}

@media (min-width: 768px) {
    .dsm-dialog {
        max-width: 720px;
        margin: 30px auto
    }
}

.dsm-dialog-body .ds[class^="ds-"],
.dsm-dialog-body .ds[class*=" ds-"] {
    font-size: 1rem
}

.dsm-dialog-mask {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(9, 9, 9, 0.6);
    height: 100%;
    filter: alpha(opacity=50);
    z-index: 1050
}

.dsm-dialog-mask-hidden {
    display: none
}

.dsm-dialog-fade-enter,
.dsm-dialog-fade-appear {
    opacity: 0;
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
    animation-play-state: paused
}

.dsm-dialog-fade-leave {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
    animation-play-state: paused
}

.dsm-dialog-fade-enter.dsm-dialog-fade-enter-active,
.dsm-dialog-fade-appear.dsm-dialog-fade-appear-active {
    animation-name: rcDialogFadeIn;
    animation-play-state: running
}

.dsm-dialog-fade-leave.dsm-dialog-fade-leave-active {
    animation-name: rcDialogFadeOut;
    animation-play-state: running
}

@keyframes rcDialogFadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes rcDialogFadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.dsm-calendar {
    box-sizing: border-box
}

.dsm-calendar * {
    box-sizing: border-box
}

.dsm-calendar-hidden {
    display: none
}

.dsm-calendar-picker-slide-up-enter {
    animation-duration: .3s;
    animation-fill-mode: both;
    transform-origin: 0 0;
    display: block !important;
    opacity: 0;
    animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
    animation-play-state: paused
}

.dsm-calendar-picker-slide-up-appear {
    animation-duration: .3s;
    animation-fill-mode: both;
    transform-origin: 0 0;
    display: block !important;
    opacity: 0;
    animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
    animation-play-state: paused
}

.dsm-calendar-picker-slide-up-leave {
    animation-duration: .3s;
    animation-fill-mode: both;
    transform-origin: 0 0;
    display: block !important;
    opacity: 1;
    animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
    animation-play-state: paused
}

.dsm-calendar-picker-slide-up-enter.-slide-up-enter-active.-placement-bottomLeft,
.dsm-calendar-picker-slide-up-enter.-slide-up-enter-active.-placement-bottomRight,
.dsm-calendar-picker-slide-up-appear.-slide-up-appear-active.-placement-bottomLeft,
.dsm-calendar-picker-slide-up-appear.-slide-up-appear-active.-placement-bottomRight {
    animation-name: rcDropdownSlideUpIn;
    animation-play-state: running
}

.dsm-calendar-picker-slide-up-enter.-slide-up-enter-active.-placement-topLeft,
.dsm-calendar-picker-slide-up-enter.-slide-up-enter-active.-placement-topRight,
.dsm-calendar-picker-slide-up-appear.-slide-up-appear-active.-placement-topLeft,
.dsm-calendar-picker-slide-up-appear.-slide-up-appear-active.-placement-topRight {
    animation-name: rcDropdownSlideDownIn;
    animation-play-state: running
}

.dsm-calendar-picker-slide-up-leave.-slide-up-leave-active.-placement-bottomLeft,
.dsm-calendar-picker-slide-up-leave.-slide-up-leave-active.-placement-bottomRight {
    animation-name: rcDropdownSlideUpOut;
    animation-play-state: running
}

.dsm-calendar-picker-slide-up-leave.-slide-up-leave-active.-placement-topLeft,
.dsm-calendar-picker-slide-up-leave.-slide-up-leave-active.-placement-topRight {
    animation-name: rcDropdownSlideDownOut;
    animation-play-state: running
}

@keyframes rcDropdownSlideUpIn {
    0% {
        opacity: 0;
        transform-origin: 0% 0%;
        transform: scaleY(0)
    }

    100% {
        opacity: 1;
        transform-origin: 0% 0%;
        transform: scaleY(1)
    }
}

@keyframes rcDropdownSlideUpOut {
    0% {
        opacity: 1;
        transform-origin: 0% 0%;
        transform: scaleY(1)
    }

    100% {
        opacity: 0;
        transform-origin: 0% 0%;
        transform: scaleY(0)
    }
}

@keyframes rcDropdownSlideDownIn {
    0% {
        opacity: 0;
        transform-origin: 100% 100%;
        transform: scaleY(0)
    }

    100% {
        opacity: 1;
        transform-origin: 100% 100%;
        transform: scaleY(1)
    }
}

@keyframes rcDropdownSlideDownOut {
    0% {
        opacity: 1;
        transform-origin: 100% 100%;
        transform: scaleY(1)
    }

    100% {
        opacity: 0;
        transform-origin: 100% 100%;
        transform: scaleY(0)
    }
}

.dsm-calendar {
    position: relative;
    outline: none;
    list-style: none;
    text-align: left;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 15px #ccc;
    background-clip: padding-box;
    line-height: 1.5
}

.dsm-calendar-date-panel,
.dsm-calendar-panel {
    position: relative;
    outline: none
}

.dsm-calendar-header {
    padding: 20px 20px 10px;
    text-align: center;
    user-select: none;
    -webkit-user-select: none
}

.dsm-calendar-header>a {
    font-weight: bold;
    display: inline-block;
    padding: 0 5px;
    text-align: center
}

.dsm-calendar-header>a:hover {
    cursor: pointer;
    color: #2D5798
}

.dsm-calendar-header .dsm-calendar-prev-month-btn,
.dsm-calendar-header .dsm-calendar-next-month-btn {
    display: block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    position: absolute;
    color: #2D5798;
    left: 0;
    border-radius: .3125rem
}

.dsm-calendar-header .dsm-calendar-prev-month-btn:after,
.dsm-calendar-header .dsm-calendar-next-month-btn:after {
    font-family: "ds";
    content: "\e905"
}

.dsm-calendar-header .dsm-calendar-prev-month-btn:hover,
.dsm-calendar-header .dsm-calendar-next-month-btn:hover {
    background-color: #f5f5f5
}

.dsm-calendar-header .dsm-calendar-prev-month-btn:hover:after,
.dsm-calendar-header .dsm-calendar-next-month-btn:hover:after {
    color: #2D5798
}

.dsm-calendar-header .dsm-calendar-next-month-btn {
    left: auto;
    right: 0
}

.dsm-calendar-header .dsm-calendar-next-month-btn:after {
    content: "\e906"
}

.dsm-calendar-year-select,
.dsm-calendar-month-select,
.dsm-calendar-day-select {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: bold;
    color: #000;
    padding: 0 8px;
    line-height: 32px;
    pointer-events: none
}

.dsm-calendar-year-select:hover,
.dsm-calendar-month-select:hover,
.dsm-calendar-day-select:hover {
    cursor: pointer
}

.dsm-calendar-year-select.dsm-calendar-time-status:hover,
.dsm-calendar-month-select.dsm-calendar-time-status:hover,
.dsm-calendar-day-select.dsm-calendar-time-status:hover {
    cursor: pointer;
    color: #000
}

.dsm-calendar-prev-month-btn,
.dsm-calendar-next-month-btn,
.dsm-calendar-prev-year-btn,
.dsm-calendar-next-year-btn {
    position: absolute;
    top: 0;
    cursor: pointer;
    color: #999;
    font-size: 16px;
    display: inline-block
}

.dsm-calendar-prev-month-btn:hover,
.dsm-calendar-next-month-btn:hover,
.dsm-calendar-prev-year-btn:hover,
.dsm-calendar-next-year-btn:hover {
    color: #2D5798
}

.dsm-calendar-next-year-btn {
    display: none;
    right: 0
}

.dsm-calendar-next-year-btn:after {
    font-family: "ds";
    content: "\e906"
}

.dsm-calendar-prev-year-btn {
    display: none;
    left: 0
}

.dsm-calendar-prev-year-btn:after {
    font-family: "ds";
    content: "\e905"
}

.dsm-calendar-body {
    padding: 0 20px
}

.dsm-calendar table {
    border-collapse: collapse;
    max-width: 100%;
    background-color: transparent;
    width: 100%
}

.dsm-calendar-table {
    border-spacing: 0;
    margin-bottom: 0
}

.dsm-calendar-column-header {
    transform: scale(0.6);
    padding-bottom: 10px;
    text-align: center
}

.dsm-calendar-column-header .dsm-calendar-column-header-inner {
    display: block;
    font-weight: normal
}

.dsm-calendar-week-number-header .dsm-calendar-column-header-inner {
    display: none
}

.dsm-calendar-cell {
    border: 1px solid #dadada
}

.dsm-calendar-cell .date-block {
    color: #F04E4E
}

.dsm-calendar-cell:hover {
    color: #fff;
    background: #2D5798;
    border: 1px solid #2D5798;
    cursor: pointer
}

.dsm-calendar-cell:hover .date-block {
    color: #fff
}

.dsm-calendar-date {
    display: block;
    margin: 0 auto;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    line-height: 32px;
    transform: scale(0.6);
    text-align: center
}

.dsm-calendar-date.special-date:after {
    position: absolute;
    content: '';
    top: -12px;
    left: -12px;
    right: 0;
    bottom: 0;
    border: 1px solid #2D5798;
    width: 58px;
    height: 58px
}

.dsm-calendar-today {
    font-weight: bolder;
    color: #2D5798
}

.dsm-calendar-today:hover {
    color: #fff;
    background: #333
}

.dsm-calendar-selected-date {
    background: #333;
    color: #fff;
    border-color: #333
}

.dsm-calendar-selected-date:hover {
    background: #333
}

.dsm-calendar-selected-date .date-block {
    color: #fff
}

.dsm-calendar-disabled-cell {
    cursor: not-allowed;
    color: rgba(0, 0, 0, 0.25);
    background: #f5f5f5;
    border-radius: 0;
    border-color: #dadada
}

.dsm-calendar-disabled-cell:hover {
    background: #f5f5f5;
    color: rgba(0, 0, 0, 0.25);
    border-color: #dadada
}

.dsm-calendar-disabled-cell-first-of-row .dsm-calendar-date {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.dsm-calendar-disabled-cell-last-of-row .dsm-calendar-date {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.dsm-calendar-last-month-cell,
.dsm-calendar-next-month-btn-day {
    opacity: 0;
    color: #bbb;
    border-width: 0;
    background: #f5f5f5
}

.dsm-calendar-last-month-cell:hover,
.dsm-calendar-next-month-btn-day:hover {
    border-width: 0;
    background: #f5f5f5;
    cursor: default
}

.dsm-calendar-footer {
    padding: 20px;
    text-align: center;
    position: relative
}

.dsm-calendar-footer .dsm-calendar-footer-wapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.dsm-calendar-footer .dsm-calendar-footer-wapper .dsm-btn {
    cursor: pointer;
    min-width: 90px
}

.dsm-calendar-footer .dsm-time-picker-panel {
    width: 90px
}

.dsm-calendar-footer .dsm-time-picker-panel-input {
    height: 24px
}

.dsm-calendar-footer-show-ok {
    text-align: right
}

.dsm-calendar-footer-show-ok .dsm-calendar-footer-btn {
    padding-right: 12px
}

.dsm-calendar-footer-show-ok .dsm-calendar-time-picker-btn {
    margin-left: 0;
    padding: 0 12px
}

.dsm-calendar-footer-show-ok .dsm-calendar-today-btn {
    float: left;
    padding-left: 12px
}

.dsm-calendar-footer-btn .dsm-calendar-footer-time-wrapper {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between
}

.dsm-calendar-footer-btn .dsm-calendar-footer-time-wrapper .dsm-input-time-picker .dsm-input-time-picker-label {
    text-align: left;
    font-size: .75rem;
    transform: scale(0.8);
    transform-origin: left
}

.dsm-calendar-footer-btn .dsm-calendar-footer-time-wrapper .dsm-input-time-picker>div:last-child {
    background: rgba(0, 0, 0, 0.05);
    border-radius: .3125rem;
    border: 1px solid #ccc;
    margin-top: 5px;
    padding-left: 5px
}

.dsm-calendar-footer-btn .dsm-calendar-footer-time-wrapper .dsm-input-time-picker>div.disabled {
    opacity: 0.25;
    pointer-events: none
}

.dsm-calendar-footer-btn .dsm-calendar-footer-time-wrapper .dsm-input-time-picker>div input {
    width: 25px;
    text-align: center;
    padding: 8px 0;
    border: none;
    font-size: 1rem;
    background: transparent;
    vertical-align: middle
}

.dsm-calendar-footer-btn .dsm-calendar-footer-time-wrapper .dsm-input-time-picker>div input:focus {
    outline: none
}

.dsm-calendar-footer-btn .dsm-calendar-footer-time-wrapper .dsm-input-time-picker>div .tp-btn {
    border: none;
    background: transparent;
    border-radius: .3125rem;
    font-size: .75rem;
    transform: scale(0.8);
    transform-origin: left
}

.dsm-calendar-footer-btn .dsm-calendar-footer-time-wrapper .dsm-input-time-picker>div .tp-btn.am {
    transform-origin: right
}

.dsm-calendar-footer-btn .dsm-calendar-footer-time-wrapper .dsm-input-time-picker>div .tp-btn.active {
    background: #000;
    color: #fff
}

.dsm-calendar-footer-btn .dsm-calendar-footer-time-wrapper .dsm-input-time-picker>div .tp-btn:focus {
    outline: none
}

.dsm-calendar-footer-btn .dsm-calendar-footer-time-wrapper .dsm-input-time-picker>div.m-0 {
    border: none;
    padding-left: 0
}

.dsm-calendar-footer-btn .dsm-calendar-footer-time-wrapper .dsm-input-time-picker>div.m-0 input {
    width: 55px;
    padding: 8px 4px
}

.dsm-calendar-footer-btn-time-wrapper {
    display: flex;
    flex-direction: row;
    padding: 10px;
    width: 100%;
    justify-content: space-between
}

.dsm-calendar-time-picker-btn {
    margin-right: 15px
}

.dsm-calendar-cancel-btn.dsm-btn {
    padding-left: 0;
    text-align: left
}

.dsm-time-input-wrapper {
    display: inline-block
}

.dsm-time-input-wrapper.error input {
    color: #F04E4E
}

.dsm-time-input-wrapper.error input::selection {
    color: #fff;
    background: #F04E4E
}

.dsm-time-input-wrapper.error span {
    color: #F04E4E
}

.dsm-calendar-time-input {
    height: 25px;
    position: relative;
    display: inline-block;
    margin: 0 0;
    padding: 4px 10px;
    border-radius: 6px 6px;
    background-color: #ffffff;
    line-height: 1.5;
    transform: border 0.3s cubic-bezier(0.35, 0, 0.25, 1), background 0.3s cubic-bezier(0.35, 0, 0.25, 1), box-shadow 0.3s cubic-bezier(0.35, 0, 0.25, 1)
}

.dsm-calendar-time-input:hover {
    border-color: #23c0fa
}

.dsm-calendar-time-input:focus {
    border-color: #23c0fa;
    box-shadow: 0 0 3px #23c0fa
}

.dsm-calendar-time-panel {
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    z-index: 10;
    position: absolute;
    outline: none
}

.dsm-calendar-time-panel-header {
    padding: 20px 20px 0;
    position: relative;
    text-align: center;
    user-select: none;
    -webkit-user-select: none
}

.dsm-calendar-time-panel-body {
    padding: 9px 10px 10px
}

.dsm-calendar-time-panel-title {
    font-weight: bold;
    display: inline-block;
    padding: 4px 5px;
    text-align: center;
    height: 30px;
    line-height: 22px;
    border-radius: 4px
}

.dsm-calendar-time-panel-table {
    table-layout: fixed;
    width: 100%;
    border-collapse: separate
}

.dsm-calendar-time-panel-cell {
    text-align: center;
    vertical-align: middle
}

.dsm-calendar-time-panel-time {
    display: block;
    border-radius: .3125rem;
    margin: 0 auto
}

.dsm-calendar-time-panel-time:hover {
    background: #ebfaff;
    cursor: pointer
}

.dsm-calendar-time-panel-selected-cell .dsm-calendar-time-panel-time {
    background: #333;
    color: #fff
}

.dsm-time-picker-panel-inner {
    width: 100%;
    display: inline-block;
    position: relative;
    outline: none;
    list-style: none;
    font-size: 12px;
    text-align: left;
    background-color: #fff;
    box-shadow: none;
    background-clip: padding-box;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    line-height: 1.5
}

.dsm-time-picker-panel-input-wrap {
    display: none;
    box-sizing: border-box;
    position: relative;
    padding: 6px;
    border-bottom: 1px solid #dadada
}

.dsm-time-picker-panel-input {
    margin: 0;
    padding: 0;
    width: 100%;
    cursor: auto;
    line-height: 1.5;
    outline: 0;
    border: 1px solid transparent
}

.dsm-time-picker-panel-input[disabled] {
    color: #ccc;
    background: #f7f7f7;
    cursor: not-allowed
}

.dsm-time-picker-panel-select {
    float: left;
    font-size: 12px;
    border: 1px solid #dadada;
    border-width: 0 1px;
    margin-left: -1px;
    box-sizing: border-box;
    overflow-y: auto;
    position: relative;
    width: 50%;
    max-height: 300px
}

.dsm-time-picker-panel-select:first-child {
    border-left: 0;
    margin-left: 0
}

.dsm-time-picker-panel-select:last-child {
    border-right: 0
}

.dsm-time-picker-panel-select ul {
    list-style: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100%
}

.dsm-time-picker-panel-select li {
    text-align: center;
    padding: 0;
    list-style: none;
    margin: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    user-select: none;
    outline: none
}

.dsm-time-picker-panel-select li:hover {
    color: #fff;
    background: #2D5798
}

.dsm-time-picker-panel-select-option-selected {
    background: #333;
    color: #fff;
    font-weight: bold
}

.dsm-time-picker-panel-select-option-disabled {
    color: #ccc;
    background: rgba(230, 230, 230, 0.5)
}

.dsm-calendar-month-panel {
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    z-index: 10;
    position: absolute;
    outline: none
}

.dsm-calendar-month-panel>div {
    height: 100%;
    display: flex;
    flex-direction: column
}

.dsm-calendar-month-panel-hidden {
    display: none
}

.dsm-calendar-month-panel-header {
    padding: 20px 20px 0;
    position: relative;
    text-align: center;
    user-select: none;
    -webkit-user-select: none
}

.dsm-calendar-month-panel-header>a {
    display: inline-block;
    padding: 0 5px;
    text-align: center
}

.dsm-calendar-month-panel-header>a:hover {
    cursor: pointer
}

.dsm-calendar-month-panel-prev-year-btn,
.dsm-calendar-month-panel-next-year-btn {
    position: absolute;
    top: 20px;
    display: block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    color: #2D5798;
    border: 1px solid transparent;
    border-radius: .3125rem
}

.dsm-calendar-month-panel-prev-year-btn:hover,
.dsm-calendar-month-panel-next-year-btn:hover {
    border: 1px solid #ccc;
    background-color: #e6e6e6
}

.dsm-calendar-month-panel-prev-year-btn:hover:after,
.dsm-calendar-month-panel-next-year-btn:hover:after {
    color: #2D5798
}

.dsm-calendar-month-panel-next-year-btn:after {
    font-family: "ds";
    font-size: 1.375rem;
    content: '\e906'
}

.dsm-calendar-month-panel-prev-year-btn {
    user-select: none;
    left: 20px
}

.dsm-calendar-month-panel-prev-year-btn:after {
    font-family: "ds";
    font-size: 1.375rem;
    content: '\e905'
}

.dsm-calendar-month-panel .dsm-calendar-month-panel-year-select {
    font-size: 1.375rem;
    color: #000;
    font-weight: bold;
    line-height: 32px
}

.dsm-calendar-month-panel-year-select-arrow {
    display: none
}

.dsm-calendar-month-panel-next-year-btn {
    user-select: none;
    right: 20px
}

.dsm-calendar-month-panel-body {
    flex: 1;
    padding: 9px 10px 10px
}

.dsm-calendar-month-panel-footer {
    padding: 0 30px 10px 30px
}

.dsm-calendar-month-panel-footer .dsm-calendar-footer-time-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between
}

.dsm-calendar-month-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker {
    padding-bottom: 20px
}

.dsm-calendar-month-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker .dsm-input-time-picker-label {
    text-align: left
}

.dsm-calendar-month-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker>div:last-child {
    padding: 0.35rem 1rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: .3125rem;
    border: 1px solid #ccc;
    margin-top: 5px
}

.dsm-calendar-month-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker>div input {
    width: 63px !important;
    border: none;
    background: transparent;
    vertical-align: middle;
    font-size: 1.2rem
}

.dsm-calendar-month-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker>div input:focus {
    outline: none
}

.dsm-calendar-month-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker>div .tp-btn {
    border: none;
    background: transparent;
    border-radius: .3125rem
}

.dsm-calendar-month-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker>div .tp-btn.active {
    background: #000;
    color: #fff
}

.dsm-calendar-month-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker>div .tp-btn:focus {
    outline: none
}

.dsm-calendar-month-panel-footer .dsm-calendar-footer-time-wrapper:last-child {
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px
}

.dsm-calendar-month-panel-footer .dsm-calendar-footer-time-wrapper:last-child:after {
    content: '';
    clear: both;
    display: table
}

.dsm-calendar-month-panel-table {
    table-layout: fixed;
    width: 100%;
    height: 100%;
    border-collapse: separate
}

.dsm-calendar-month-panel-cell {
    text-align: center
}

.dsm-calendar-month-panel-cell .dsm-calendar-month-panel-month {
    display: block;
    width: 46px;
    margin: 0 auto;
    color: #000;
    border-radius: 4px 4px;
    height: 36px;
    padding: 0;
    background: transparent;
    line-height: 36px;
    text-align: center
}

.dsm-calendar-month-panel-cell .dsm-calendar-month-panel-month:hover {
    color: #fff;
    background: #2D5798;
    cursor: pointer
}

.dsm-calendar-month-panel-cell-disabled .dsm-calendar-month-panel-month {
    color: #bfbfbf
}

.dsm-calendar-month-panel-cell-disabled .dsm-calendar-month-panel-month:hover {
    background: white;
    cursor: not-allowed
}

.dsm-calendar-month-panel-selected-cell .dsm-calendar-month-panel-month {
    background: #333;
    color: #fff
}

.dsm-calendar-month-panel-selected-cell .dsm-calendar-month-panel-month:hover {
    background: #2D5798;
    color: #fff
}

.dsm-calendar-month-header-wrap {
    position: relative;
    height: 308px
}

.dsm-calendar-year-panel {
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    z-index: 10;
    position: absolute;
    outline: none
}

.dsm-calendar-year-panel>div {
    height: 100%;
    display: flex;
    flex-direction: column
}

.dsm-calendar-year-panel-hidden {
    display: none
}

.dsm-calendar-year-panel-header {
    padding: 20px 20px 0;
    position: relative;
    text-align: center;
    user-select: none;
    -webkit-user-select: none
}

.dsm-calendar-year-panel-header>a {
    display: inline-block;
    padding: 0 5px;
    text-align: center
}

.dsm-calendar-year-panel-header>a:hover {
    cursor: pointer
}

.dsm-calendar-year-panel-prev-decade-btn,
.dsm-calendar-year-panel-next-decade-btn {
    position: absolute;
    top: 20px;
    display: block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    color: #2D5798;
    border: 1px solid transparent;
    border-radius: .3125rem
}

.dsm-calendar-year-panel-prev-decade-btn:hover,
.dsm-calendar-year-panel-next-decade-btn:hover {
    border: 1px solid #ccc;
    background-color: #e6e6e6
}

.dsm-calendar-year-panel-prev-decade-btn:hover:after,
.dsm-calendar-year-panel-next-decade-btn:hover:after {
    color: #2D5798
}

.dsm-calendar-year-panel-next-decade-btn:after {
    font-family: "ds";
    font-size: 1.375rem;
    content: '\e906'
}

.dsm-calendar-year-panel-prev-decade-btn {
    user-select: none;
    left: 20px
}

.dsm-calendar-year-panel-prev-decade-btn:after {
    font-family: "ds";
    font-size: 1.375rem;
    content: '\e905'
}

.dsm-calendar-year-panel .dsm-calendar-year-panel-decade-select {
    font-weight: bold;
    color: #000;
    font-size: 1.375rem;
    line-height: 32px
}

.dsm-calendar-year-panel-decade-select-arrow {
    display: none
}

.dsm-calendar-year-panel-next-decade-btn {
    user-select: none;
    right: 20px
}

.dsm-calendar-year-panel-body {
    flex: 1;
    padding: 9px 10px 10px
}

.dsm-calendar-year-panel-footer {
    padding: 0 30px 10px 30px
}

.dsm-calendar-year-panel-footer .dsm-calendar-footer-time-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between
}

.dsm-calendar-year-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker {
    padding-bottom: 20px
}

.dsm-calendar-year-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker .dsm-input-time-picker-label {
    text-align: left
}

.dsm-calendar-year-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker>div:last-child {
    padding: 0.35rem 1rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: .3125rem;
    border: 1px solid #ccc;
    margin-top: 5px
}

.dsm-calendar-year-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker>div input {
    width: 63px !important;
    border: none;
    background: transparent;
    vertical-align: middle;
    font-size: 1.2rem
}

.dsm-calendar-year-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker>div input:focus {
    outline: none
}

.dsm-calendar-year-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker>div .tp-btn {
    border: none;
    background: transparent;
    border-radius: .3125rem
}

.dsm-calendar-year-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker>div .tp-btn.active {
    background: #000;
    color: #fff
}

.dsm-calendar-year-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker>div .tp-btn:focus {
    outline: none
}

.dsm-calendar-year-panel-footer .dsm-calendar-footer-time-wrapper:last-child {
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px
}

.dsm-calendar-year-panel-footer .dsm-calendar-footer-time-wrapper:last-child:after {
    content: '';
    clear: both;
    display: table
}

.dsm-calendar-year-panel-table {
    table-layout: fixed;
    width: 100%;
    height: 100%;
    border-collapse: separate
}

.dsm-calendar-year-panel-cell {
    text-align: center
}

.dsm-calendar-year-panel-year {
    display: block;
    width: 46px;
    margin: 0 auto;
    color: #000;
    border-radius: 4px 4px;
    height: 36px;
    padding: 0;
    background: transparent;
    line-height: 36px;
    text-align: center
}

.dsm-calendar-year-panel-year:hover {
    color: #fff;
    background: #2D5798;
    cursor: pointer
}

.dsm-calendar-year-panel-selected-cell .dsm-calendar-year-panel-year {
    background: #333;
    color: #fff
}

.dsm-calendar-year-panel-last-decade-cell .dsm-calendar-year-panel-year,
.dsm-calendar-year-panel-next-decade-cell .dsm-calendar-year-panel-year {
    user-select: none;
    -webkit-user-select: none;
    color: rgba(0, 0, 0, 0.25)
}

.dsm-calendar-decade-panel {
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    z-index: 10;
    position: absolute;
    outline: none;
    display: flex;
    flex-direction: column
}

.dsm-calendar-decade-panel-hidden {
    display: none
}

.dsm-calendar-decade-panel-header {
    padding: 20px 20px 0;
    position: relative;
    text-align: center;
    user-select: none;
    -webkit-user-select: none
}

.dsm-calendar-decade-panel-header>a {
    display: inline-block;
    padding: 0 5px;
    text-align: center
}

.dsm-calendar-decade-panel-header>a:hover {
    cursor: pointer;
    color: #2D5798
}

.dsm-calendar-decade-panel-header .dsm-calendar-decade-panel-century {
    font-weight: bold;
    font-size: 1.375rem;
    line-height: 32px
}

.dsm-calendar-decade-panel-prev-century-btn,
.dsm-calendar-decade-panel-next-century-btn {
    position: absolute;
    top: 20px;
    display: block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    color: #2D5798;
    border: 1px solid transparent;
    border-radius: .3125rem
}

.dsm-calendar-decade-panel-prev-century-btn:hover,
.dsm-calendar-decade-panel-next-century-btn:hover {
    border: 1px solid #ccc;
    background-color: #e6e6e6
}

.dsm-calendar-decade-panel-prev-century-btn:hover:after,
.dsm-calendar-decade-panel-next-century-btn:hover:after {
    color: #2D5798
}

.dsm-calendar-decade-panel-next-century-btn:after {
    font-family: "ds";
    font-size: 1.375rem;
    content: '\e906'
}

.dsm-calendar-decade-panel-prev-century-btn {
    user-select: none;
    left: 20px
}

.dsm-calendar-decade-panel-prev-century-btn:after {
    font-family: "ds";
    font-size: 1.375rem;
    content: '\e905'
}

.dsm-calendar-decade-panel-next-century-btn {
    user-select: none;
    right: 20px
}

.dsm-calendar-decade-panel-body {
    flex: 1;
    padding: 9px 10px 10px
}

.dsm-calendar-decade-panel-footer {
    padding: 0 30px 10px 30px
}

.dsm-calendar-decade-panel-footer .dsm-calendar-footer-time-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between
}

.dsm-calendar-decade-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker {
    padding-bottom: 20px
}

.dsm-calendar-decade-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker .dsm-input-time-picker-label {
    text-align: left
}

.dsm-calendar-decade-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker>div:last-child {
    padding: 0.35rem 1rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: .3125rem;
    border: 1px solid #ccc;
    margin-top: 5px
}

.dsm-calendar-decade-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker>div input {
    width: 63px !important;
    border: none;
    background: transparent;
    vertical-align: middle;
    font-size: 1.2rem
}

.dsm-calendar-decade-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker>div input:focus {
    outline: none
}

.dsm-calendar-decade-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker>div .tp-btn {
    border: none;
    background: transparent;
    border-radius: .3125rem
}

.dsm-calendar-decade-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker>div .tp-btn.active {
    background: #000;
    color: #fff
}

.dsm-calendar-decade-panel-footer .dsm-calendar-footer-time-wrapper:first-child .dsm-input-time-picker>div .tp-btn:focus {
    outline: none
}

.dsm-calendar-decade-panel-footer .dsm-calendar-footer-time-wrapper:last-child {
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px
}

.dsm-calendar-decade-panel-footer .dsm-calendar-footer-time-wrapper:last-child:after {
    content: '';
    clear: both;
    display: table
}

.dsm-calendar-decade-panel-table {
    table-layout: fixed;
    width: 100%;
    height: 100%;
    border-collapse: separate
}

.dsm-calendar-decade-panel-cell {
    text-align: center
}

.dsm-calendar-decade-panel-decade {
    display: block;
    margin: 0 auto;
    color: #000;
    border-radius: 4px 4px;
    height: 36px;
    padding: 0;
    background: transparent;
    line-height: 36px;
    text-align: center
}

.dsm-calendar-decade-panel-decade:hover {
    color: #fff;
    background: #2D5798;
    cursor: pointer
}

.dsm-calendar-decade-panel-selected-cell .dsm-calendar-decade-panel-decade {
    background: #333;
    color: #fff
}

.dsm-calendar-decade-panel-last-century-cell .dsm-calendar-decade-panel-decade,
.dsm-calendar-decade-panel-next-century-cell .dsm-calendar-decade-panel-decade {
    user-select: none;
    -webkit-user-select: none;
    color: rgba(0, 0, 0, 0.25)
}

.select-year-month-panel {
    width: 245px
}

.select-year-month-panel .dsm-menu-box .dsm-dropdown-menu {
    min-width: auto !important
}

.dsm-calendar-input-wrap {
    position: relative;
    outline: none;
    padding: .625rem .75rem
}

.dsm-calendar-date-input-wrap {
    overflow: hidden
}

.dsm-calendar-time-picker {
    position: absolute;
    width: 100%;
    top: 70px;
    background-color: white
}

.dsm-calendar-time-picker-panel {
    width: 100%;
    position: relative
}

.dsm-calendar-time-picker-panel .dsm-time-picker-panel-panel-input-wrap {
    display: none
}

.dsm-calendar-time-picker-panel .dsm-time-picker-panel-panel-inner {
    border: none;
    box-shadow: none
}

.dsm-calendar-time-picker-panel .dsm-time-picker-panel-panel-select {
    width: 84px;
    max-height: 217px
}

.dsm-calendar-time-picker-panel .dsm-time-picker-panel-panel-select li {
    text-align: center;
    padding: 0
}

.dsm-calendar-time-picker-wrap {
    float: left;
    width: 100%
}

.dsm-calendar-time-picker-wrap .dsm-time-picker-panel {
    width: 100%
}

.dsm-calendar-time-picker-wrap .dsm-time-picker-panel-input {
    padding: 0;
    border: 1px solid transparent;
    outline: 0;
    height: 22px
}

.dsm-calendar-time-picker-wrap .dsm-time-picker-panel-icon {
    display: none
}

.dsm-calendar-input {
    border: none;
    width: 100%;
    color: #666;
    cursor: text;
    line-height: 1.5;
    outline: 0;
    height: 22px
}

.dsm-calendar-input-invalid {
    border-color: #F04E4E
}

.dsm-calendar-clear-btn {
    display: none;
    z-index: 9999;
    position: absolute;
    right: 6px;
    cursor: pointer;
    overflow: hidden;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    top: 6px;
    margin: 0
}

.dsm-calendar-clear-btn:after {
    content: "x";
    font-size: 12px;
    color: #aaa;
    display: inline-block;
    line-height: 1;
    width: 20px;
    transition: color 0.3s ease
}

.dsm-calendar-clear-btn:hover:after {
    color: #666
}

.dsm-calendar-selected-start-date,
.dsm-calendar-selected-end-date {
    background: #333
}

.dsm-calendar-selected-start-date .dsm-calendar-date,
.dsm-calendar-selected-end-date .dsm-calendar-date {
    color: #fff
}

.dsm-calendar-selected-start-date:hover,
.dsm-calendar-selected-end-date:hover {
    background: #333
}

.dsm-calendar-picker {
    position: absolute;
    left: -9999px;
    top: -9999px;
    z-index: 1060
}

.dsm-calendar-picker-hidden {
    display: none
}

.dsm-calendar-picker:before,
.dsm-calendar-picker:after {
    content: " ";
    width: 10px;
    border-top: none;
    border-left: transparent 10px solid;
    border-right: transparent 10px solid
}

.dsm-calendar-picker:before {
    border-bottom: 10px solid #ddd;
    margin-left: 15px;
    display: block
}

.dsm-calendar-picker:after {
    position: absolute;
    top: 1px;
    left: 15px;
    border-bottom: 10px solid #fff
}

.dsm-calendar-picker.dsm-calendar-picker-placement-topLeft:before,
.dsm-calendar-picker.dsm-calendar-picker-placement-topLeft:after,
.dsm-calendar-picker.dsm-calendar-picker-placement-topRight:before,
.dsm-calendar-picker.dsm-calendar-picker-placement-topRight:after {
    border-bottom: none
}

.dsm-calendar-picker.dsm-calendar-picker-placement-topLeft:before,
.dsm-calendar-picker.dsm-calendar-picker-placement-topRight:before {
    position: absolute;
    border-top: 10px solid #ddd;
    border-bottom: none;
    bottom: -1px
}

.dsm-calendar-picker.dsm-calendar-picker-placement-topLeft:after,
.dsm-calendar-picker.dsm-calendar-picker-placement-topRight:after {
    top: 0;
    left: 15px;
    border-top: 10px solid #fff;
    border-bottom: none;
    position: relative;
    display: block
}

.dsm-calendar-picker.dsm-calendar-picker-placement-topRight::before {
    margin-left: calc(100% - 35px)
}

.dsm-calendar-picker.dsm-calendar-picker-placement-topRight::after {
    left: calc(100% - 35px)
}

.dsm-calendar-picker.dsm-calendar-picker-placement-bottomRight:before {
    margin-left: calc(100% - 35px)
}

.dsm-calendar-picker.dsm-calendar-picker-placement-bottomRight:after {
    left: auto;
    right: 15px
}

.calendar-screen-mask {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1059;
    background: rgba(255, 255, 255, 0)
}

.dsm-calendar-range {
    overflow: hidden
}

.dsm-calendar-range-part {
    position: relative
}

.dsm-calendar-range-part .dsm-calendar-time-picker {
    top: 69px
}

.dsm-calendar-range-part .dsm-calendar-time-picker-panel-select {
    width: 77px
}

.dsm-calendar-range-left {
    float: left
}

.dsm-calendar-range-left .dsm-calendar-time-picker-panel-select:last-child {
    border-right: 1px solid #e9e9e9
}

.dsm-calendar-range-right {
    float: right
}

.dsm-calendar-range-right .dsm-calendar-time-picker-panel {
    left: 21px
}

.dsm-calendar-range-right .dsm-calendar-time-picker-panel-select:first-child {
    border-left: 1px solid #e9e9e9
}

.dsm-calendar-range-right .dsm-calendar-header,
.dsm-calendar-range-right .dsm-calendar-body {
    padding-left: 0
}

.dsm-calendar-range-middle {
    position: absolute;
    margin-left: -10px;
    text-align: center;
    height: 35px;
    line-height: 35px
}

.dsm-calendar-range .dsm-calendar-date-panel::after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}

.dsm-calendar-range .dsm-calendar-input-wrap {
    height: 35px
}

.dsm-calendar-range .dsm-calendar-input,
.dsm-calendar-range .dsm-time-picker-panel-input {
    padding: 1px 7px;
    height: 22px
}

.dsm-calendar-range.dsm-calendar-week-number {
    width: 574px
}

.dsm-calendar-range.dsm-calendar-week-number .dsm-calendar-range-part {
    width: 286px
}

.dsm-calendar-range.dsm-calendar-week-number .dsm-calendar-range-part .dsm-calendar-time-picker {
    top: 69px
}

.dsm-calendar-range.dsm-calendar-week-number .dsm-calendar-range-part .dsm-calendar-time-picker-panel-select {
    width: 89px
}

.dsm-calendar-range.dsm-calendar-week-number .dsm-calendar-range-right .dsm-calendar-time-picker-panel {
    left: 36px
}

.dsm-calendar-range .dsm-calendar-year-panel,
.dsm-calendar-range .dsm-calendar-month-panel,
.dsm-calendar-range .dsm-calendar-decade-panel {
    top: 35px
}

.dsm-calendar-range .dsm-calendar-month-panel .dsm-calendar-year-panel {
    top: 0
}

.dsm-calendar-range .dsm-calendar-decade-panel-table,
.dsm-calendar-range .dsm-calendar-year-panel-table,
.dsm-calendar-range .dsm-calendar-month-panel-table {
    height: 198px
}

.dsm-calendar-range .dsm-calendar-in-range-cell {
    background: #2D5798;
    border-radius: 0
}

.dsm-calendar-range .dsm-calendar-in-range-cell .dsm-calendar-date {
    color: #fff
}

.dsm-calendar-range-bottom {
    text-align: right
}

.dsm-calendar-range .dsm-calendar-footer {
    border-top: none;
    padding: 20px
}

.dsm-calendar-range .dsm-calendar-footer-btn {
    padding: 0;
    flex-flow: row
}

.dsm-calendar-range .dsm-calendar-footer-wapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between
}

.dsm-calendar-range .dsm-calendar-ok-btn {
    position: static
}

.dsm-calendar-range .dsm-calendar-today-btn {
    float: left
}

.dsm-calendar-full {
    width: 275px
}

.dsm-calendar-full-header {
    padding: 5px 10px;
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
    overflow: hidden
}

.dsm-calendar-full-header-month-select,
.dsm-calendar-full-header-year-select {
    width: 70px;
    float: right;
    margin-right: 5px
}

.dsm-calendar-full-header-switcher {
    display: inline-block
}

.dsm-calendar-full-header-switcher-normal:hover {
    border-color: #23c0fa;
    box-shadow: 0 0 2px rgba(45, 183, 245, 0.8);
    cursor: pointer
}

.dsm-calendar-full-header-switcher-focus {
    border-color: #3fc7fa;
    background-color: #3fc7fa;
    color: #fff
}

.dsm-calendar-full-header-switcher>span {
    float: left;
    height: 28px;
    line-height: 24px;
    border: 1px solid #d9d9d9;
    padding: 0 10px;
    color: #666
}

.dsm-calendar-full-header-switcher>span:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-right: none
}

.dsm-calendar-full-header-switcher>span:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-left: none
}

.dsm-calendar-fullscreen {
    width: auto
}

.dsm-calendar-fullscreen .dsm-calendar-full-header {
    border-bottom: none
}

.dsm-calendar-fullscreen .dsm-calendar-column-header {
    text-align: right;
    padding-right: 12px
}

.dsm-calendar-fullscreen .dsm-calendar-cell {
    padding: 0
}

.dsm-calendar-fullscreen .dsm-calendar-cell .dsm-calendar-date,
.dsm-calendar-fullscreen .dsm-calendar-month-panel-cell .dsm-calendar-month-panel-month {
    display: block;
    height: 116px;
    width: auto;
    border-radius: 0;
    margin: 0 4px;
    border: none;
    text-align: right;
    padding-right: 8px
}

.dsm-calendar-fullscreen .dsm-calendar-selected-day .dsm-calendar-date,
.dsm-calendar-fullscreen .dsm-calendar-month-panel-selected-cell .dsm-calendar-month-panel-month {
    background-color: #333;
    color: #fff
}

.dsm-calendar-fullscreen .dsm-calendar-today .dsm-calendar-date,
.dsm-calendar-fullscreen .dsm-calendar-month-panel-selected-cell .dsm-calendar-month-panel-month {
    border-top-color: #333;
    color: #fff
}

.dsm-tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    visibility: visible;
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.9
}

.dsm-tooltip-hidden {
    display: none
}

.dsm-tooltip-inner {
    padding: 8px 10px;
    color: #fff;
    text-align: left;
    text-decoration: none;
    background-color: #000;
    border-radius: 6px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.17);
    min-height: 34px;
    max-width: 280px;
    word-break: keep-all;
    word-wrap: break-word;
    white-space: pre-wrap
}

.dsm-tooltip-inner.dsm-tooltip-md {
    max-width: 500px
}

.dsm-tooltip-inner.dsm-tooltip-lg {
    max-width: 800px
}

.dsm-tooltip-inner.dsm-tooltio-xl {
    max-width: 90%
}

.dsm-tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.dsm-tooltip.dsm-tooltip-zoom-enter,
.dsm-tooltip.dsm-tooltip-leave {
    display: block
}

.dsm-tooltip-zoom-enter,
.dsm-tooltip-zoom-appear {
    opacity: 0;
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
    animation-play-state: paused
}

.dsm-tooltip-zoom-leave {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.6, -0.3, 0.74, 0.05);
    animation-play-state: paused
}

.dsm-tooltip-zoom-enter.dsm-tooltip-zoom-enter-active,
.dsm-tooltip-zoom-appear.dsm-tooltip-zoom-appear-active {
    animation-name: rcToolTipFadeIn;
    animation-play-state: running
}

.dsm-tooltip-zoom-leave.dsm-tooltip-zoom-leave-active {
    animation-name: rcToolTipFadeOut;
    animation-play-state: running
}

@keyframes rcToolTipFadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes rcToolTipFadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.dsm-tooltip-placement-top,
.dsm-tooltip-placement-topLeft,
.dsm-tooltip-placement-topRight {
    padding: 5px 0 9px 0
}

.dsm-tooltip-placement-right,
.dsm-tooltip-placement-rightTop,
.dsm-tooltip-placement-rightBottom {
    padding: 0 5px 0 9px
}

.dsm-tooltip-placement-bottom,
.dsm-tooltip-placement-bottomLeft,
.dsm-tooltip-placement-bottomRight {
    padding: 9px 0 5px 0
}

.dsm-tooltip-placement-left,
.dsm-tooltip-placement-leftTop,
.dsm-tooltip-placement-leftBottom {
    padding: 0 9px 0 5px
}

.dsm-tooltip-placement-top .dsm-tooltip-arrow,
.dsm-tooltip-placement-topLeft .dsm-tooltip-arrow,
.dsm-tooltip-placement-topRight .dsm-tooltip-arrow {
    bottom: 4px;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.dsm-tooltip-placement-top .dsm-tooltip-arrow {
    left: 50%
}

.dsm-tooltip-placement-topLeft .dsm-tooltip-arrow {
    left: 15%
}

.dsm-tooltip-placement-topRight .dsm-tooltip-arrow {
    right: 15%
}

.dsm-tooltip-placement-right .dsm-tooltip-arrow,
.dsm-tooltip-placement-rightTop .dsm-tooltip-arrow,
.dsm-tooltip-placement-rightBottom .dsm-tooltip-arrow {
    left: 4px;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000
}

.dsm-tooltip-placement-right .dsm-tooltip-arrow {
    top: 50%
}

.dsm-tooltip-placement-rightTop .dsm-tooltip-arrow {
    top: 15%;
    margin-top: 0
}

.dsm-tooltip-placement-rightBottom .dsm-tooltip-arrow {
    bottom: 15%
}

.dsm-tooltip-placement-left .dsm-tooltip-arrow,
.dsm-tooltip-placement-leftTop .dsm-tooltip-arrow,
.dsm-tooltip-placement-leftBottom .dsm-tooltip-arrow {
    right: 4px;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000
}

.dsm-tooltip-placement-left .dsm-tooltip-arrow {
    top: 50%
}

.dsm-tooltip-placement-leftTop .dsm-tooltip-arrow {
    top: 15%;
    margin-top: 0
}

.dsm-tooltip-placement-leftBottom .dsm-tooltip-arrow {
    bottom: 15%
}

.dsm-tooltip-placement-bottom .dsm-tooltip-arrow,
.dsm-tooltip-placement-bottomLeft .dsm-tooltip-arrow,
.dsm-tooltip-placement-bottomRight .dsm-tooltip-arrow {
    top: 4px;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.dsm-tooltip-placement-bottom .dsm-tooltip-arrow {
    left: 50%
}

.dsm-tooltip-placement-bottomLeft .dsm-tooltip-arrow {
    left: 15%
}

.dsm-tooltip-placement-bottomRight .dsm-tooltip-arrow {
    right: 15%
}

@font-face {
    font-family: 'swiper-icons';
    src: url("data:application/font-woff;charset=utf-8;base64, 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") format("woff");
    font-weight: 400;
    font-style: normal
}

.dsm-swiper-container .dsm-swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

:root {
    --swiper-theme-color: #007aff
}

.dsm-swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.dsm-swiper-container-vertical>.dsm-swiper-wrapper {
    flex-direction: column
}

.dsm-swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.dsm-swiper-container-android .dsm-swiper-slide,
.dsm-swiper-wrapper {
    transform: translate3d(0px, 0, 0)
}

.dsm-swiper-container-multirow>.dsm-swiper-wrapper {
    flex-wrap: wrap
}

.dsm-swiper-container-multirow-column>.dsm-swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.dsm-swiper-container-free-mode>.dsm-swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.dsm-swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}

.dsm-swiper-slide-invisible-blank {
    visibility: hidden
}

.dsm-swiper-container-autoheight,
.dsm-swiper-container-autoheight .dsm-swiper-slide {
    height: auto
}

.dsm-swiper-container-autoheight .dsm-swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.dsm-swiper-container-3d {
    perspective: 1200px
}

.dsm-swiper-container-3d .dsm-swiper-wrapper,
.dsm-swiper-container-3d .dsm-swiper-slide,
.dsm-swiper-container-3d .dsm-swiper-slide-shadow-left,
.dsm-swiper-container-3d .dsm-swiper-slide-shadow-right,
.dsm-swiper-container-3d .dsm-swiper-slide-shadow-top,
.dsm-swiper-container-3d .dsm-swiper-slide-shadow-bottom,
.dsm-swiper-container-3d .dsm-swiper-cube-shadow {
    transform-style: preserve-3d
}

.dsm-swiper-container-3d .dsm-swiper-slide-shadow-left,
.dsm-swiper-container-3d .dsm-swiper-slide-shadow-right,
.dsm-swiper-container-3d .dsm-swiper-slide-shadow-top,
.dsm-swiper-container-3d .dsm-swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.dsm-swiper-container-3d .dsm-swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.dsm-swiper-container-3d .dsm-swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.dsm-swiper-container-3d .dsm-swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.dsm-swiper-container-3d .dsm-swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.dsm-swiper-container-css-mode>.dsm-swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.dsm-swiper-container-css-mode>.dsm-swiper-wrapper::-webkit-scrollbar {
    display: none
}

.dsm-swiper-container-css-mode>.dsm-swiper-wrapper>.dsm-swiper-slide {
    scroll-snap-align: start start
}

.dsm-swiper-container-horizontal.dsm-swiper-container-css-mode>.dsm-swiper-wrapper {
    scroll-snap-type: x mandatory
}

.dsm-swiper-container-vertical.dsm-swiper-container-css-mode>.dsm-swiper-wrapper {
    scroll-snap-type: y mandatory
}

.dsm-swiper-container-cube {
    overflow: visible
}

.dsm-swiper-container-cube .dsm-swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.dsm-swiper-container-cube .dsm-swiper-slide .dsm-swiper-slide {
    pointer-events: none
}

.dsm-swiper-container-cube.dsm-swiper-container-rtl .dsm-swiper-slide {
    transform-origin: 100% 0
}

.dsm-swiper-container-cube .dsm-swiper-slide-active,
.dsm-swiper-container-cube .dsm-swiper-slide-active .dsm-swiper-slide-active {
    pointer-events: auto
}

.dsm-swiper-container-cube .dsm-swiper-slide-active,
.dsm-swiper-container-cube .dsm-swiper-slide-next,
.dsm-swiper-container-cube .dsm-swiper-slide-prev,
.dsm-swiper-container-cube .dsm-swiper-slide-next+.dsm-swiper-slide {
    pointer-events: auto;
    visibility: visible
}

.dsm-swiper-container-cube .dsm-swiper-slide-shadow-top,
.dsm-swiper-container-cube .dsm-swiper-slide-shadow-bottom,
.dsm-swiper-container-cube .dsm-swiper-slide-shadow-left,
.dsm-swiper-container-cube .dsm-swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden
}

.dsm-swiper-container-cube .dsm-swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    filter: blur(50px);
    z-index: 0
}

.dsm-swiper-container-fade.dsm-swiper-container-free-mode .dsm-swiper-slide {
    transition-timing-function: ease-out
}

.dsm-swiper-container-fade .dsm-swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.dsm-swiper-container-fade .dsm-swiper-slide .dsm-swiper-slide {
    pointer-events: none
}

.dsm-swiper-container-fade .dsm-swiper-slide-active,
.dsm-swiper-container-fade .dsm-swiper-slide-active .dsm-swiper-slide-active {
    pointer-events: auto
}

.dsm-swiper-container-flip {
    overflow: visible
}

.dsm-swiper-container-flip .dsm-swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1
}

.dsm-swiper-container-flip .dsm-swiper-slide .dsm-swiper-slide {
    pointer-events: none
}

.dsm-swiper-container-flip .dsm-swiper-slide-active,
.dsm-swiper-container-flip .dsm-swiper-slide-active .dsm-swiper-slide-active {
    pointer-events: auto
}

.dsm-swiper-container-flip .dsm-swiper-slide-shadow-top,
.dsm-swiper-container-flip .dsm-swiper-slide-shadow-bottom,
.dsm-swiper-container-flip .dsm-swiper-slide-shadow-left,
.dsm-swiper-container-flip .dsm-swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden
}

.dsm-swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.dsm-swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.dsm-swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg)
    }
}

.dsm-swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10
}

.dsm-swiper-pagination.dsm-swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.dsm-swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%
}

.dsm-swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.dsm-swiper-pagination-bullets-dynamic .dsm-swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative
}

.dsm-swiper-pagination-bullets-dynamic .dsm-swiper-pagination-bullet-active {
    transform: scale(1)
}

.dsm-swiper-pagination-bullets-dynamic .dsm-swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.dsm-swiper-pagination-bullets-dynamic .dsm-swiper-pagination-bullet-active-prev {
    transform: scale(0.66)
}

.dsm-swiper-pagination-bullets-dynamic .dsm-swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33)
}

.dsm-swiper-pagination-bullets-dynamic .dsm-swiper-pagination-bullet-active-next {
    transform: scale(0.66)
}

.dsm-swiper-pagination-bullets-dynamic .dsm-swiper-pagination-bullet-active-next-next {
    transform: scale(0.33)
}

.dsm-swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2
}

button.dsm-swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none
}

.dsm-swiper-pagination-clickable .dsm-swiper-pagination-bullet {
    cursor: pointer
}

.dsm-swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.dsm-swiper-container-vertical>.dsm-swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0px, -50%, 0)
}

.dsm-swiper-container-vertical>.dsm-swiper-pagination-bullets .dsm-swiper-pagination-bullet {
    margin: 6px 0;
    display: block
}

.dsm-swiper-container-vertical>.dsm-swiper-pagination-bullets.dsm-swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.dsm-swiper-container-vertical>.dsm-swiper-pagination-bullets.dsm-swiper-pagination-bullets-dynamic .dsm-swiper-pagination-bullet {
    display: inline-block;
    transition: 200ms transform, 200ms top
}

.dsm-swiper-container-horizontal>.dsm-swiper-pagination-bullets .dsm-swiper-pagination-bullet {
    margin: 0 4px
}

.dsm-swiper-container-horizontal>.dsm-swiper-pagination-bullets.dsm-swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.dsm-swiper-container-horizontal>.dsm-swiper-pagination-bullets.dsm-swiper-pagination-bullets-dynamic .dsm-swiper-pagination-bullet {
    transition: 200ms transform, 200ms left
}

.dsm-swiper-container-horizontal.dsm-swiper-container-rtl>.dsm-swiper-pagination-bullets-dynamic .dsm-swiper-pagination-bullet {
    transition: 200ms transform, 200ms right
}

.dsm-swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute
}

.dsm-swiper-pagination-progressbar .dsm-swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.dsm-swiper-container-rtl .dsm-swiper-pagination-progressbar .dsm-swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.dsm-swiper-container-horizontal>.dsm-swiper-pagination-progressbar,
.dsm-swiper-container-vertical>.dsm-swiper-pagination-progressbar.dsm-swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.dsm-swiper-container-vertical>.dsm-swiper-pagination-progressbar,
.dsm-swiper-container-horizontal>.dsm-swiper-pagination-progressbar.dsm-swiper-pagination-progressbar-opposite {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.dsm-swiper-pagination-blue {
    --swiper-pagination-color: #2D5798
}

.dsm-swiper-pagination-red {
    --swiper-pagination-color: #F04E4E
}

.dsm-swiper-pagination-orange {
    --swiper-pagination-color: #ffb75d
}

.dsm-swiper-pagination-green {
    --swiper-pagination-color: #06C270
}

.dsm-swiper-pagination-white {
    --swiper-pagination-color: #fff
}

.dsm-swiper-pagination-lock {
    display: none
}

.dsm-swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1)
}

.dsm-swiper-container-horizontal>.dsm-swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.dsm-swiper-container-vertical>.dsm-swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.dsm-swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.dsm-swiper-scrollbar-cursor-drag {
    cursor: move
}

.dsm-swiper-scrollbar-lock {
    display: none
}

.dsm-swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.dsm-swiper-zoom-container>img,
.dsm-swiper-zoom-container>svg,
.dsm-swiper-zoom-container>canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.dsm-swiper-slide-zoomed {
    cursor: move
}

.dsm-swiper-photo-view {
    display: flex;
    background-color: #333;
    justify-content: center;
    align-items: center
}

.dsm-swiper-photo-view img {
    max-width: 100%;
    max-height: 100%
}

.dsm-swiper-photo-view .gallery-top-text {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 100%;
    padding: 0.5rem 1rem;
    color: #fff;
    background: #2D5798;
    font-size: 1rem
}

.dsm-swiper-container.gallery-thumbs .dsm-swiper-slide.dsm-swiper-slide-active {
    border-bottom-color: #fff
}

.dsm-swiper-container.gallery-thumbs .dsm-swiper-slide.dsm-swiper-slide-thumb-active {
    border-bottom-color: #2D5798
}

.dsm-swiper-pagination-fraction {
    display: inline-block;
    width: auto;
    padding: 0.5rem 1rem;
    color: #fff;
    bottom: 0;
    background: #000;
    font-size: .875rem
}

.dsm-swiper-button {
    padding: .5625rem;
    z-index: 10;
    cursor: pointer
}

.dsm-swiper-upload {
    position: relative;
    border: 2px solid #2D5798;
    background-color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.dsm-swiper-upload i {
    font-size: 2.25rem;
    color: #2D5798
}

.dsm-swiper-upload-input {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0
}

.dsm-tree {
    margin: 0;
    border: 1px solid transparent
}

.dsm-tree-focused:not(.dsm-tree-active-focused) {
    border-color: cyan
}

.dsm-tree-treenode {
    margin: 0;
    padding: 0;
    line-height: 1.875rem;
    white-space: nowrap;
    list-style: none;
    outline: 0
}

.dsm-tree-treenode .draggable {
    color: #333;
    user-select: none;
    -khtml-user-drag: element;
    -webkit-user-drag: element
}

.dsm-tree-treenode.drag-over>.draggable {
    color: white;
    background-color: #316ac5;
    border: 1px #316ac5 solid;
    opacity: 0.8
}

.dsm-tree-treenode.drag-over-gap-top>.draggable {
    border-top: 2px blue solid
}

.dsm-tree-treenode.drag-over-gap-bottom>.draggable {
    border-bottom: 2px blue solid
}

.dsm-tree-treenode.filter-node>.dsm-tree-node-content-wrapper {
    color: #a60000 !important;
    font-weight: bold !important
}

.dsm-tree-treenode ul {
    margin: 0;
    padding: 0 0 0 18px
}

.dsm-tree-treenode .dsm-tree-node-content-wrapper {
    display: inline-block;
    height: 17px;
    margin: 0;
    padding: 1px 3px 0 0;
    text-decoration: none;
    vertical-align: top;
    cursor: pointer
}

.dsm-tree-treenode span.dsm-tree-switcher,
.dsm-tree-treenode span.dsm-tree-checkbox,
.dsm-tree-treenode span.dsm-tree-iconEle {
    position: relative;
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.125rem;
    border: 0 none;
    outline: none;
    cursor: pointer
}

.dsm-tree-treenode span.dsm-tree-switcher.dsm-tree-icon__customize,
.dsm-tree-treenode span.dsm-tree-checkbox.dsm-tree-icon__customize,
.dsm-tree-treenode span.dsm-tree-iconEle.dsm-tree-icon__customize {
    background-image: none
}

.dsm-tree-treenode span.dsm-tree-icon_loading {
    margin-right: 2px;
    vertical-align: top;
    background: url("data:image/gif;base64,R0lGODlhEAAQAKIGAMLY8YSx5HOm4Mjc88/g9Ofw+v///wAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQFCgAGACwAAAAAEAAQAAADMGi6RbUwGjKIXCAA016PgRBElAVlG/RdLOO0X9nK61W39qvqiwz5Ls/rRqrggsdkAgAh+QQFCgAGACwCAAAABwAFAAADD2hqELAmiFBIYY4MAutdCQAh+QQFCgAGACwGAAAABwAFAAADD1hU1kaDOKMYCGAGEeYFCQAh+QQFCgAGACwKAAIABQAHAAADEFhUZjSkKdZqBQG0IELDQAIAIfkEBQoABgAsCgAGAAUABwAAAxBoVlRKgyjmlAIBqCDCzUoCACH5BAUKAAYALAYACgAHAAUAAAMPaGpFtYYMAgJgLogA610JACH5BAUKAAYALAIACgAHAAUAAAMPCAHWFiI4o1ghZZJB5i0JACH5BAUKAAYALAAABgAFAAcAAAMQCAFmIaEp1motpDQySMNFAgA7") no-repeat scroll 0 0 transparent
}

.dsm-tree-treenode span.dsm-tree-switcher:after {
    position: absolute;
    content: "";
    font-family: "ds";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0
}

.dsm-tree-treenode span.dsm-tree-switcher.dsm-tree-switcher-noop {
    cursor: auto
}

.dsm-tree-treenode span.dsm-tree-switcher.dsm-tree-switcher_open:after {
    content: "\e9c6"
}

.dsm-tree-treenode span.dsm-tree-switcher.dsm-tree-switcher_close:after {
    content: "\e90e"
}

.dsm-tree-treenode span.dsm-tree-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0 0.1875rem
}

.dsm-tree-treenode span.dsm-tree-checkbox:after {
    position: absolute;
    content: "\e934";
    font-family: "ds";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    color: gray
}

.dsm-tree-treenode span.dsm-tree-checkbox:before {
    position: absolute;
    font-family: "ds";
    content: "\e9de";
    color: #fff;
    width: 80%;
    height: 100%;
    z-index: 1;
    display: none;
    font-size: 12px;
    text-align: center
}

.dsm-tree-treenode span.dsm-tree-checkbox:hover:after {
    color: #2D5798
}

.dsm-tree-treenode span.dsm-tree-checkbox-checked:after,
.dsm-tree-treenode span.dsm-tree-checkbox-indeterminate:after {
    content: "\e936";
    color: #2D5798
}

.dsm-tree-treenode span.dsm-tree-checkbox-checked:before,
.dsm-tree-treenode span.dsm-tree-checkbox-indeterminate:before {
    display: block
}

.dsm-tree-treenode span.dsm-tree-checkbox-indeterminate:before {
    display: none
}

.dsm-tree-treenode span.dsm-tree-checkbox-disabled {
    opacity: 0.6;
    pointer-events: none
}

.dsm-tree-treenode span.dsm-tree-checkbox-disabled~.dsm-tree-node-content-wrapper .dsm-tree-title {
    opacity: 0.6
}

.dsm-tree-treenode span.dsm-tree-checkbox.dsm-tree-checkbox-indeterminate .dsm-tree-checkbox-disabled {
    position: relative;
    background: #ccc;
    border-radius: 3px
}

.dsm-tree-treenode span.dsm-tree-checkbox.dsm-tree-checkbox-indeterminate .dsm-tree-checkbox-disabled::after {
    position: absolute;
    top: 5px;
    left: 3px;
    width: 5px;
    height: 0;
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    transform: scale(1);
    content: " "
}

.dsm-tree:not(.dsm-tree-show-line) .dsm-tree-treenode .dsm-tree-switcher-noop {
    background: none
}

.dsm-tree.dsm-tree-show-line .dsm-tree-treenode:not(:last-child)>ul {
    background: url("data:image/gif;base64,R0lGODlhCQACAIAAAMzMzP///yH5BAEAAAEALAAAAAAJAAIAAAIEjI9pUAA7") 0 0 repeat-y
}

.dsm-tree.dsm-tree-show-line .dsm-tree-treenode:not(:last-child)>.dsm-tree-switcher-noop {
    background-position: -56px -18px
}

.dsm-tree.dsm-tree-show-line .dsm-tree-treenode:last-child>.dsm-tree-switcher-noop {
    background-position: -56px -36px
}

.dsm-tree-child-tree {
    display: none
}

.dsm-tree-child-tree-open {
    display: block
}

.dsm-tree-treenode-disabled>span:not(.dsm-tree-switcher),
.dsm-tree-treenode-disabled>a,
.dsm-tree-treenode-disabled>a span {
    color: #767676;
    cursor: not-allowed
}

.dsm-tree-treenode-active {
    background: rgba(0, 0, 0, 0.1)
}

.dsm-tree-node-selected {
    background-color: #ffe6b0;
    border: 1px #ffb951 solid;
    opacity: 0.8
}

.dsm-tree-icon__open {
    margin-right: 2px
}

.dsm-tree-icon__open:after {
    position: absolute;
    content: "\e9f9";
    font-family: "ds";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    color: #ffb75d
}

.dsm-tree-icon__close {
    margin-right: 2px
}

.dsm-tree-icon__close:after {
    position: absolute;
    content: "\e9f9";
    font-family: "ds";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    color: #ffb75d
}

.dsm-tree-icon__docu {
    background: none;
    width: 0 !important
}

.dsm-tree-icon__customize {
    margin-right: 2px;
    vertical-align: top
}

.dsm-tree-indent-unit {
    display: inline-block;
    padding-left: 18px
}

/* open-sans-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../../sources/fonts/openSans/open-sans-v40-latin-regular.woff2') format('woff2');
  }
  /* open-sans-600 - latin */
  @font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../../sources/fonts/openSans/open-sans-v40-latin-600.woff2') format('woff2');
  }
  /* open-sans-700 - latin */
  @font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../../sources/fonts/openSans/open-sans-v40-latin-700.woff2') format('woff2');
  }

*,
*::before,
*::after {
    box-sizing: border-box
}

html {
    font-family: 'Open Sans';
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block
}

body {
    margin: 0;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    text-align: left;
    background-color: #fff
}

[tabindex="-1"]:focus {
    outline: 0 !important
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

abbr[title],
abbr[data-original-title] {
    text-decoration: underline;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    text-decoration-skip-ink: none
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0
}

dt {
    font-weight: 600
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote {
    margin: 0 0 1rem
}

b,
strong {
    font-weight: bolder
}

small {
    font-size: 85%
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    color: #2D5798;
    text-decoration: none;
    background-color: transparent
}

a:hover {
    color: #003555;
    text-decoration: underline
}

a:focus {
    outline: none
}

a:not([href]):not([tabindex]) {
    text-decoration: none
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
    text-decoration: none
}

a:not([href]):not([tabindex]):focus {
    outline: 0
}

pre,
code,
kbd,
samp {
    font-family: 'Open Sans', SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto
}

figure {
    margin: 0 0 1rem
}

img {
    vertical-align: middle;
    border-style: none
}

svg {
    overflow: hidden;
    vertical-align: middle
}

table {
    border-collapse: collapse
}

caption {
    padding-top: 12px 15px;
    padding-bottom: 12px 15px;
    color: #999;
    text-align: left;
    caption-side: bottom
}

th {
    text-align: inherit
}

label {
    font-size: .75rem;
    display: inline-block;
    margin-bottom: .3125rem
}

button {
    border-radius: 0
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: 'Open Sans';
    font-size: inherit;
    line-height: inherit
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

select {
    word-wrap: normal
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
    cursor: pointer
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none
}

input[type="radio"],
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    -webkit-appearance: listbox
}

textarea {
    overflow: auto;
    resize: vertical
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal
}

progress {
    vertical-align: baseline
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

output {
    display: inline-block
}

summary {
    display: list-item;
    cursor: pointer
}

template {
    display: none
}

[hidden] {
    display: none !important
}

.timer {
    display: inline-block;
    padding: 0 0.5rem;
    background: rgba(208, 2, 27, 0.08);
    border-radius: 2px
}

:root {
    --gray-100: #e6e6e6;
    --gray-200: #ccc;
    --gray-300: #b3b3b3;
    --gray-400: #999;
    --gray-500: gray;
    --gray-600: #666;
    --gray-700: #4d4d4d;
    --gray-800: #333;
    --gray-900: #1a1a1a;
    --blue: #2D5798;
    --red: #F04E4E;
    --orange: #ffb75d;
    --green: #06C270;
    --white: #fff;
    --primary: #2D5798;
    --secondary: #fff;
    --danger: #F04E4E;
    --success: #06C270;
    --warning: #ffb75d;
    --light: #e6e6e6;
    --sategray: #999;
    --dark: #333;
    --black: #000;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

@media print {

    *,
    *::before,
    *::after {
        text-shadow: none !important;
        box-shadow: none !important
    }

    a:not(.dsm-btn) {
        text-decoration: underline
    }

    abbr[title]::after {
        content: " (" attr(title) ")"
    }

    pre {
        white-space: pre-wrap !important
    }

    pre,
    blockquote {
        border: 1px solid gray;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    tr,
    img {
        page-break-inside: avoid
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3
    }

    h2,
    h3 {
        page-break-after: avoid
    }

    @page {
        size: a3
    }

    body {
        min-width: 992px !important
    }

    .container {
        min-width: 992px !important
    }

    .navbar {
        display: none
    }

    .badge {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

    .table td,
    .table th {
        background-color: #fff !important
    }

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #b3b3b3 !important
    }

    .table-dark {
        color: inherit
    }

    .table-dark th,
    .table-dark td,
    .table-dark thead th,
    .table-dark tbody+tbody {
        border-color: rgba(151, 151, 151, 0.5)
    }

    .table .thead-dark th {
        color: inherit;
        border-color: rgba(151, 151, 151, 0.5)
    }
}

.align-baseline {
    vertical-align: baseline !important
}

.align-top {
    vertical-align: top !important
}

.align-middle {
    vertical-align: middle !important
}

.align-bottom {
    vertical-align: bottom !important
}

.align-text-bottom {
    vertical-align: text-bottom !important
}

.align-text-top {
    vertical-align: text-top !important
}

.bg-primary {
    color: #fff;
    background-color: #2D5798 !important
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
    background-color: #00456e !important
}

.bg-secondary {
    color: #090909;
    background-color: #fff !important
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
    background-color: #e6e6e6 !important
}

.bg-danger {
    color: #fff;
    background-color: #F04E4E !important
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
    background-color: #9d0214 !important
}

.bg-success {
    color: #fff;
    background-color: #06C270 !important
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
    background-color: #14591d !important
}

.bg-warning {
    color: #333;
    background-color: #ffb75d !important
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
    background-color: #ffa02a !important
}

.bg-light {
    color: #090909;
    background-color: #e6e6e6 !important
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
    background-color: #ccc !important
}

.bg-sategray {
    color: #fff;
    background-color: #999 !important
}

a.bg-sategray:hover,
a.bg-sategray:focus,
button.bg-sategray:hover,
button.bg-sategray:focus {
    background-color: gray !important
}

.bg-dark {
    color: #fff;
    background-color: #333 !important
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
    background-color: #1a1a1a !important
}

.bg-black {
    color: #fff;
    background-color: #000 !important
}

a.bg-black:hover,
a.bg-black:focus,
button.bg-black:hover,
button.bg-black:focus {
    background-color: #000 !important
}

.bg-white {
    background-color: #fff !important
}

.bg-transparent {
    background-color: transparent !important
}

.border {
    border: 1px solid #dadada !important
}

.border-top {
    border-top: 1px solid #dadada !important
}

.border-right {
    border-right: 1px solid #dadada !important
}

.border-bottom {
    border-bottom: 1px solid #dadada !important
}

.border-left {
    border-left: 1px solid #dadada !important
}

.border-0 {
    border: 0 !important
}

.border-top-0 {
    border-top: 0 !important
}

.border-right-0 {
    border-right: 0 !important
}

.border-bottom-0 {
    border-bottom: 0 !important
}

.border-left-0 {
    border-left: 0 !important
}

.border-primary {
    border-color: #2D5798 !important
}

.border-secondary {
    border-color: #fff !important
}

.border-danger {
    border-color: #F04E4E !important
}

.border-success {
    border-color: #06C270 !important
}

.border-warning {
    border-color: #ffb75d !important
}

.border-light {
    border-color: #e6e6e6 !important
}

.border-sategray {
    border-color: #999 !important
}

.border-dark {
    border-color: #333 !important
}

.border-black {
    border-color: #000 !important
}

.border-white {
    border-color: #fff !important
}

.rounded-sm {
    border-radius: .25rem !important
}

.rounded {
    border-radius: .3125rem !important
}

.rounded-top {
    border-top-left-radius: .3125rem !important;
    border-top-right-radius: .3125rem !important
}

.rounded-right {
    border-top-right-radius: .3125rem !important;
    border-bottom-right-radius: .3125rem !important
}

.rounded-bottom {
    border-bottom-right-radius: .3125rem !important;
    border-bottom-left-radius: .3125rem !important
}

.rounded-left {
    border-top-left-radius: .3125rem !important;
    border-bottom-left-radius: .3125rem !important
}

.rounded-lg {
    border-radius: .5rem !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-pill {
    border-radius: 50rem !important
}

.rounded-0 {
    border-radius: 0 !important
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.d-none {
    display: none !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: flex !important
}

.d-inline-flex {
    display: inline-flex !important
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: flex !important
    }

    .d-sm-inline-flex {
        display: inline-flex !important
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: flex !important
    }

    .d-md-inline-flex {
        display: inline-flex !important
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: flex !important
    }

    .d-lg-inline-flex {
        display: inline-flex !important
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: flex !important
    }

    .d-xl-inline-flex {
        display: inline-flex !important
    }
}

@media print {
    .d-print-none {
        display: none !important
    }

    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-table-cell {
        display: table-cell !important
    }

    .d-print-flex {
        display: flex !important
    }

    .d-print-inline-flex {
        display: inline-flex !important
    }
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden
}

.embed-responsive::before {
    display: block;
    content: ""
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.embed-responsive-21by9::before {
    padding-top: 42.85714%
}

.embed-responsive-16by9::before {
    padding-top: 56.25%
}

.embed-responsive-4by3::before {
    padding-top: 75%
}

.embed-responsive-1by1::before {
    padding-top: 100%
}

.flex-row {
    flex-direction: row !important
}

.flex-column {
    flex-direction: column !important
}

.flex-row-reverse {
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    flex-direction: column-reverse !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.flex-nowrap {
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important
}

.flex-fill {
    flex: 1 1 auto !important
}

.flex-grow-0 {
    flex-grow: 0 !important
}

.flex-grow-1 {
    flex-grow: 1 !important
}

.flex-shrink-0 {
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    flex-shrink: 1 !important
}

.justify-content-start {
    justify-content: flex-start !important
}

.justify-content-end {
    justify-content: flex-end !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-between {
    justify-content: space-between !important
}

.justify-content-around {
    justify-content: space-around !important
}

.align-items-start {
    align-items: flex-start !important
}

.align-items-end {
    align-items: flex-end !important
}

.align-items-center {
    align-items: center !important
}

.align-items-baseline {
    align-items: baseline !important
}

.align-items-stretch {
    align-items: stretch !important
}

.align-content-start {
    align-content: flex-start !important
}

.align-content-end {
    align-content: flex-end !important
}

.align-content-center {
    align-content: center !important
}

.align-content-between {
    align-content: space-between !important
}

.align-content-around {
    align-content: space-around !important
}

.align-content-stretch {
    align-content: stretch !important
}

.align-self-auto {
    align-self: auto !important
}

.align-self-start {
    align-self: flex-start !important
}

.align-self-end {
    align-self: flex-end !important
}

.align-self-center {
    align-self: center !important
}

.align-self-baseline {
    align-self: baseline !important
}

.align-self-stretch {
    align-self: stretch !important
}

@media (min-width: 576px) {
    .flex-sm-row {
        flex-direction: row !important
    }

    .flex-sm-column {
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .flex-sm-fill {
        flex: 1 1 auto !important
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important
    }

    .justify-content-sm-start {
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        justify-content: center !important
    }

    .justify-content-sm-between {
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        justify-content: space-around !important
    }

    .align-items-sm-start {
        align-items: flex-start !important
    }

    .align-items-sm-end {
        align-items: flex-end !important
    }

    .align-items-sm-center {
        align-items: center !important
    }

    .align-items-sm-baseline {
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        align-items: stretch !important
    }

    .align-content-sm-start {
        align-content: flex-start !important
    }

    .align-content-sm-end {
        align-content: flex-end !important
    }

    .align-content-sm-center {
        align-content: center !important
    }

    .align-content-sm-between {
        align-content: space-between !important
    }

    .align-content-sm-around {
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        align-content: stretch !important
    }

    .align-self-sm-auto {
        align-self: auto !important
    }

    .align-self-sm-start {
        align-self: flex-start !important
    }

    .align-self-sm-end {
        align-self: flex-end !important
    }

    .align-self-sm-center {
        align-self: center !important
    }

    .align-self-sm-baseline {
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        align-self: stretch !important
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        flex-direction: row !important
    }

    .flex-md-column {
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-md-wrap {
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .flex-md-fill {
        flex: 1 1 auto !important
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important
    }

    .justify-content-md-start {
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        justify-content: center !important
    }

    .justify-content-md-between {
        justify-content: space-between !important
    }

    .justify-content-md-around {
        justify-content: space-around !important
    }

    .align-items-md-start {
        align-items: flex-start !important
    }

    .align-items-md-end {
        align-items: flex-end !important
    }

    .align-items-md-center {
        align-items: center !important
    }

    .align-items-md-baseline {
        align-items: baseline !important
    }

    .align-items-md-stretch {
        align-items: stretch !important
    }

    .align-content-md-start {
        align-content: flex-start !important
    }

    .align-content-md-end {
        align-content: flex-end !important
    }

    .align-content-md-center {
        align-content: center !important
    }

    .align-content-md-between {
        align-content: space-between !important
    }

    .align-content-md-around {
        align-content: space-around !important
    }

    .align-content-md-stretch {
        align-content: stretch !important
    }

    .align-self-md-auto {
        align-self: auto !important
    }

    .align-self-md-start {
        align-self: flex-start !important
    }

    .align-self-md-end {
        align-self: flex-end !important
    }

    .align-self-md-center {
        align-self: center !important
    }

    .align-self-md-baseline {
        align-self: baseline !important
    }

    .align-self-md-stretch {
        align-self: stretch !important
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        flex-direction: row !important
    }

    .flex-lg-column {
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .flex-lg-fill {
        flex: 1 1 auto !important
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important
    }

    .justify-content-lg-start {
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        justify-content: center !important
    }

    .justify-content-lg-between {
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        justify-content: space-around !important
    }

    .align-items-lg-start {
        align-items: flex-start !important
    }

    .align-items-lg-end {
        align-items: flex-end !important
    }

    .align-items-lg-center {
        align-items: center !important
    }

    .align-items-lg-baseline {
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        align-items: stretch !important
    }

    .align-content-lg-start {
        align-content: flex-start !important
    }

    .align-content-lg-end {
        align-content: flex-end !important
    }

    .align-content-lg-center {
        align-content: center !important
    }

    .align-content-lg-between {
        align-content: space-between !important
    }

    .align-content-lg-around {
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        align-content: stretch !important
    }

    .align-self-lg-auto {
        align-self: auto !important
    }

    .align-self-lg-start {
        align-self: flex-start !important
    }

    .align-self-lg-end {
        align-self: flex-end !important
    }

    .align-self-lg-center {
        align-self: center !important
    }

    .align-self-lg-baseline {
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        align-self: stretch !important
    }
}

@media (min-width: 1200px) {
    .flex-xl-row {
        flex-direction: row !important
    }

    .flex-xl-column {
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .flex-xl-fill {
        flex: 1 1 auto !important
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important
    }

    .justify-content-xl-start {
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        justify-content: center !important
    }

    .justify-content-xl-between {
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        justify-content: space-around !important
    }

    .align-items-xl-start {
        align-items: flex-start !important
    }

    .align-items-xl-end {
        align-items: flex-end !important
    }

    .align-items-xl-center {
        align-items: center !important
    }

    .align-items-xl-baseline {
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        align-items: stretch !important
    }

    .align-content-xl-start {
        align-content: flex-start !important
    }

    .align-content-xl-end {
        align-content: flex-end !important
    }

    .align-content-xl-center {
        align-content: center !important
    }

    .align-content-xl-between {
        align-content: space-between !important
    }

    .align-content-xl-around {
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        align-content: stretch !important
    }

    .align-self-xl-auto {
        align-self: auto !important
    }

    .align-self-xl-start {
        align-self: flex-start !important
    }

    .align-self-xl-end {
        align-self: flex-end !important
    }

    .align-self-xl-center {
        align-self: center !important
    }

    .align-self-xl-baseline {
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        align-self: stretch !important
    }
}

.float-left {
    float: left !important
}

.float-right {
    float: right !important
}

.float-none {
    float: none !important
}

@media (min-width: 576px) {
    .float-sm-left {
        float: left !important
    }

    .float-sm-right {
        float: right !important
    }

    .float-sm-none {
        float: none !important
    }
}

@media (min-width: 768px) {
    .float-md-left {
        float: left !important
    }

    .float-md-right {
        float: right !important
    }

    .float-md-none {
        float: none !important
    }
}

@media (min-width: 992px) {
    .float-lg-left {
        float: left !important
    }

    .float-lg-right {
        float: right !important
    }

    .float-lg-none {
        float: none !important
    }
}

@media (min-width: 1200px) {
    .float-xl-left {
        float: left !important
    }

    .float-xl-right {
        float: right !important
    }

    .float-xl-none {
        float: none !important
    }
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px
    }
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.row+.row {
    margin-top: 1rem
}

.no-gutters {
    margin-right: 0;
    margin-left: 0
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
}

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%
}

.col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%
}

.col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

.col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%
}

.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%
}

.col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%
}

.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%
}

.col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%
}

.order-first {
    order: -1
}

.order-last {
    order: 13
}

.order-0 {
    order: 0
}

.order-1 {
    order: 1
}

.order-2 {
    order: 2
}

.order-3 {
    order: 3
}

.order-4 {
    order: 4
}

.order-5 {
    order: 5
}

.order-6 {
    order: 6
}

.order-7 {
    order: 7
}

.order-8 {
    order: 8
}

.order-9 {
    order: 9
}

.order-10 {
    order: 10
}

.order-11 {
    order: 11
}

.order-12 {
    order: 12
}

.offset-1 {
    margin-left: 8.33333%
}

.offset-2 {
    margin-left: 16.66667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333%
}

.offset-5 {
    margin-left: 41.66667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333%
}

.offset-8 {
    margin-left: 66.66667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333%
}

.offset-11 {
    margin-left: 91.66667%
}

@media (min-width: 576px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-sm-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-sm-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-sm-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-sm-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-sm-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-sm-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-sm-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-sm-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-sm-first {
        order: -1
    }

    .order-sm-last {
        order: 13
    }

    .order-sm-0 {
        order: 0
    }

    .order-sm-1 {
        order: 1
    }

    .order-sm-2 {
        order: 2
    }

    .order-sm-3 {
        order: 3
    }

    .order-sm-4 {
        order: 4
    }

    .order-sm-5 {
        order: 5
    }

    .order-sm-6 {
        order: 6
    }

    .order-sm-7 {
        order: 7
    }

    .order-sm-8 {
        order: 8
    }

    .order-sm-9 {
        order: 9
    }

    .order-sm-10 {
        order: 10
    }

    .order-sm-11 {
        order: 11
    }

    .order-sm-12 {
        order: 12
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33333%
    }

    .offset-sm-2 {
        margin-left: 16.66667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33333%
    }

    .offset-sm-5 {
        margin-left: 41.66667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33333%
    }

    .offset-sm-8 {
        margin-left: 66.66667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33333%
    }

    .offset-sm-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 768px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-md-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-md-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-md-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-md-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-md-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-md-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-md-first {
        order: -1
    }

    .order-md-last {
        order: 13
    }

    .order-md-0 {
        order: 0
    }

    .order-md-1 {
        order: 1
    }

    .order-md-2 {
        order: 2
    }

    .order-md-3 {
        order: 3
    }

    .order-md-4 {
        order: 4
    }

    .order-md-5 {
        order: 5
    }

    .order-md-6 {
        order: 6
    }

    .order-md-7 {
        order: 7
    }

    .order-md-8 {
        order: 8
    }

    .order-md-9 {
        order: 9
    }

    .order-md-10 {
        order: 10
    }

    .order-md-11 {
        order: 11
    }

    .order-md-12 {
        order: 12
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33333%
    }

    .offset-md-2 {
        margin-left: 16.66667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33333%
    }

    .offset-md-5 {
        margin-left: 41.66667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33333%
    }

    .offset-md-8 {
        margin-left: 66.66667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33333%
    }

    .offset-md-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-lg-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-lg-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-lg-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-lg-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-lg-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-lg-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-lg-first {
        order: -1
    }

    .order-lg-last {
        order: 13
    }

    .order-lg-0 {
        order: 0
    }

    .order-lg-1 {
        order: 1
    }

    .order-lg-2 {
        order: 2
    }

    .order-lg-3 {
        order: 3
    }

    .order-lg-4 {
        order: 4
    }

    .order-lg-5 {
        order: 5
    }

    .order-lg-6 {
        order: 6
    }

    .order-lg-7 {
        order: 7
    }

    .order-lg-8 {
        order: 8
    }

    .order-lg-9 {
        order: 9
    }

    .order-lg-10 {
        order: 10
    }

    .order-lg-11 {
        order: 11
    }

    .order-lg-12 {
        order: 12
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.33333%
    }

    .offset-lg-2 {
        margin-left: 16.66667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.33333%
    }

    .offset-lg-5 {
        margin-left: 41.66667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.33333%
    }

    .offset-lg-8 {
        margin-left: 66.66667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.33333%
    }

    .offset-lg-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-xl-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-xl-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-xl-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-xl-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-xl-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-xl-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-xl-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-xl-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-xl-first {
        order: -1
    }

    .order-xl-last {
        order: 13
    }

    .order-xl-0 {
        order: 0
    }

    .order-xl-1 {
        order: 1
    }

    .order-xl-2 {
        order: 2
    }

    .order-xl-3 {
        order: 3
    }

    .order-xl-4 {
        order: 4
    }

    .order-xl-5 {
        order: 5
    }

    .order-xl-6 {
        order: 6
    }

    .order-xl-7 {
        order: 7
    }

    .order-xl-8 {
        order: 8
    }

    .order-xl-9 {
        order: 9
    }

    .order-xl-10 {
        order: 10
    }

    .order-xl-11 {
        order: 11
    }

    .order-xl-12 {
        order: 12
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.33333%
    }

    .offset-xl-2 {
        margin-left: 16.66667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.33333%
    }

    .offset-xl-5 {
        margin-left: 41.66667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.33333%
    }

    .offset-xl-8 {
        margin-left: 66.66667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.33333%
    }

    .offset-xl-11 {
        margin-left: 91.66667%
    }
}

.overflow-auto {
    overflow: auto !important
}

.overflow-hidden {
    overflow: hidden !important
}

.position-static {
    position: static !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.position-sticky {
    position: sticky !important
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030
}

@supports (position: sticky) {
    .sticky-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

.position-right-top {
    position: absolute;
    top: 0;
    right: 0
}

.position-right-bottom {
    position: absolute;
    bottom: 0;
    right: 0
}

.priority {
    font-family: 'Open Sans', Menlo, Monaco, Consolas, 'Courier New', monospace;
    min-width: 22px;
    transform: scale(0.9);
    vertical-align: text-top;
    color: #fff !important
}

.priority.default-2h {
    background-color: #d9534f
}

.priority.default-4h {
    background-color: #f46fb1
}

.priority.default-24h {
    background-color: #f0ad4e
}

.priority.default-48h {
    background-color: #3071d4
}

.priority.default-7d {
    background-color: #5bc0de
}

.priority.default-14d {
    background-color: #4caf50
}

.priority.default-ur {
    background-color: #777
}

.priority.default-ex {
    background-color: #b5b5b5
}

.priority.default-st {
    background-color: #d7d7d7
}

.priority.default-em {
    background-color: #d9534f
}

.priority.default-tuex {
    background-color: #f46fb1
}

.priority.default-tu {
    background-color: #f46fb1
}

.priority.default-re {
    background-color: #4caf50
}

.priority.default-s1 {
    background-color: #d9534f
}

.priority.default-s2 {
    background-color: #f0ad4e
}

.priority.default-s3 {
    background-color: #4caf50
}

.priority.default-s4 {
    background-color: #5bc0de
}

.priority.default-s5 {
    background-color: #3071d4
}

.priority.default-pm {
    background-color: #b5b5b5
}

.priority.default-cc {
    background-color: #d9534f
}

.priority.default-24hr {
    background-color: #f0ad4e
}

.priority.default-48hr {
    background-color: #3071d4
}

.priority.default-4hr {
    background-color: #f46fb1
}

.priority.default-3d {
    background-color: #d9534f
}

.priority.default-21d {
    background-color: #f0ad4e
}

.priority.jpmc-em {
    background-color: #cf0f28
}

.priority.jpmc-ur {
    background-color: #eb485d
}

.priority.jpmc-no {
    background-color: #66cf69
}

.priority.jpmc-ro {
    background-color: #4a8fe2
}

.priority.jpmc-sc {
    background-color: #f5ca24
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important
}

.shadow-none {
    box-shadow: none !important
}

.w-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.h-25 {
    height: 25% !important
}

.h-50 {
    height: 50% !important
}

.h-75 {
    height: 75% !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.mw-100 {
    max-width: 100% !important
}

.mh-100 {
    max-height: 100% !important
}

.min-vw-100 {
    min-width: 100vw !important
}

.min-vh-100 {
    min-height: 100vh !important
}

.vw-100 {
    width: 100vw !important
}

.vh-100 {
    height: 100vh !important
}

.mw-auto {
    min-width: 90px !important
}

.mh-auto {
    min-height: auto !important
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0, 0, 0, 0)
}

.m-0 {
    margin: 0 !important
}

.mt-0,
.my-0 {
    margin-top: 0 !important
}

.mr-0,
.mx-0 {
    margin-right: 0 !important
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important
}

.ml-0,
.mx-0 {
    margin-left: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.mt-1,
.my-1 {
    margin-top: .25rem !important
}

.mr-1,
.mx-1 {
    margin-right: .25rem !important
}

.mb-1,
.my-1 {
    margin-bottom: .25rem !important
}

.ml-1,
.mx-1 {
    margin-left: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.mt-2,
.my-2 {
    margin-top: .5rem !important
}

.mr-2,
.mx-2 {
    margin-right: .5rem !important
}

.mb-2,
.my-2 {
    margin-bottom: .5rem !important
}

.ml-2,
.mx-2 {
    margin-left: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.mt-3,
.my-3 {
    margin-top: 1rem !important
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.mt-5,
.my-5 {
    margin-top: 3rem !important
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important
}

.p-0 {
    padding: 0 !important
}

.pt-0,
.py-0 {
    padding-top: 0 !important
}

.pr-0,
.px-0 {
    padding-right: 0 !important
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important
}

.pl-0,
.px-0 {
    padding-left: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.pt-1,
.py-1 {
    padding-top: .25rem !important
}

.pr-1,
.px-1 {
    padding-right: .25rem !important
}

.pb-1,
.py-1 {
    padding-bottom: .25rem !important
}

.pl-1,
.px-1 {
    padding-left: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.pt-2,
.py-2 {
    padding-top: .5rem !important
}

.pr-2,
.px-2 {
    padding-right: .5rem !important
}

.pb-2,
.py-2 {
    padding-bottom: .5rem !important
}

.pl-2,
.px-2 {
    padding-left: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.pt-3,
.py-3 {
    padding-top: 1rem !important
}

.pr-3,
.px-3 {
    padding-right: 1rem !important
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important
}

.pl-3,
.px-3 {
    padding-left: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.pt-5,
.py-5 {
    padding-top: 3rem !important
}

.pr-5,
.px-5 {
    padding-right: 3rem !important
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important
}

.pl-5,
.px-5 {
    padding-left: 3rem !important
}

.m-n1 {
    margin: -.25rem !important
}

.mt-n1,
.my-n1 {
    margin-top: -.25rem !important
}

.mr-n1,
.mx-n1 {
    margin-right: -.25rem !important
}

.mb-n1,
.my-n1 {
    margin-bottom: -.25rem !important
}

.ml-n1,
.mx-n1 {
    margin-left: -.25rem !important
}

.m-n2 {
    margin: -.5rem !important
}

.mt-n2,
.my-n2 {
    margin-top: -.5rem !important
}

.mr-n2,
.mx-n2 {
    margin-right: -.5rem !important
}

.mb-n2,
.my-n2 {
    margin-bottom: -.5rem !important
}

.ml-n2,
.mx-n2 {
    margin-left: -.5rem !important
}

.m-n3 {
    margin: -1rem !important
}

.mt-n3,
.my-n3 {
    margin-top: -1rem !important
}

.mr-n3,
.mx-n3 {
    margin-right: -1rem !important
}

.mb-n3,
.my-n3 {
    margin-bottom: -1rem !important
}

.ml-n3,
.mx-n3 {
    margin-left: -1rem !important
}

.m-n4 {
    margin: -1.5rem !important
}

.mt-n4,
.my-n4 {
    margin-top: -1.5rem !important
}

.mr-n4,
.mx-n4 {
    margin-right: -1.5rem !important
}

.mb-n4,
.my-n4 {
    margin-bottom: -1.5rem !important
}

.ml-n4,
.mx-n4 {
    margin-left: -1.5rem !important
}

.m-n5 {
    margin: -3rem !important
}

.mt-n5,
.my-n5 {
    margin-top: -3rem !important
}

.mr-n5,
.mx-n5 {
    margin-right: -3rem !important
}

.mb-n5,
.my-n5 {
    margin-bottom: -3rem !important
}

.ml-n5,
.mx-n5 {
    margin-left: -3rem !important
}

.m-auto {
    margin: auto !important
}

.mt-auto,
.my-auto {
    margin-top: auto !important
}

.mr-auto,
.mx-auto {
    margin-right: auto !important
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important
}

.ml-auto,
.mx-auto {
    margin-left: auto !important
}

@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 !important
    }

    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important
    }

    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important
    }

    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important
    }

    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important
    }

    .m-sm-1 {
        margin: .25rem !important
    }

    .mt-sm-1,
    .my-sm-1 {
        margin-top: .25rem !important
    }

    .mr-sm-1,
    .mx-sm-1 {
        margin-right: .25rem !important
    }

    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: .25rem !important
    }

    .ml-sm-1,
    .mx-sm-1 {
        margin-left: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem !important
    }

    .mt-sm-2,
    .my-sm-2 {
        margin-top: .5rem !important
    }

    .mr-sm-2,
    .mx-sm-2 {
        margin-right: .5rem !important
    }

    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: .5rem !important
    }

    .ml-sm-2,
    .mx-sm-2 {
        margin-left: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important
    }

    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important
    }

    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important
    }

    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important
    }

    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important
    }

    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important
    }

    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important
    }

    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important
    }

    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important
    }

    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important
    }

    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important
    }

    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important
    }

    .p-sm-1 {
        padding: .25rem !important
    }

    .pt-sm-1,
    .py-sm-1 {
        padding-top: .25rem !important
    }

    .pr-sm-1,
    .px-sm-1 {
        padding-right: .25rem !important
    }

    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: .25rem !important
    }

    .pl-sm-1,
    .px-sm-1 {
        padding-left: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem !important
    }

    .pt-sm-2,
    .py-sm-2 {
        padding-top: .5rem !important
    }

    .pr-sm-2,
    .px-sm-2 {
        padding-right: .5rem !important
    }

    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: .5rem !important
    }

    .pl-sm-2,
    .px-sm-2 {
        padding-left: .5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important
    }

    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important
    }

    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important
    }

    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important
    }

    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important
    }

    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important
    }

    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important
    }

    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important
    }

    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important
    }

    .m-sm-n1 {
        margin: -.25rem !important
    }

    .mt-sm-n1,
    .my-sm-n1 {
        margin-top: -.25rem !important
    }

    .mr-sm-n1,
    .mx-sm-n1 {
        margin-right: -.25rem !important
    }

    .mb-sm-n1,
    .my-sm-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-sm-n1,
    .mx-sm-n1 {
        margin-left: -.25rem !important
    }

    .m-sm-n2 {
        margin: -.5rem !important
    }

    .mt-sm-n2,
    .my-sm-n2 {
        margin-top: -.5rem !important
    }

    .mr-sm-n2,
    .mx-sm-n2 {
        margin-right: -.5rem !important
    }

    .mb-sm-n2,
    .my-sm-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-sm-n2,
    .mx-sm-n2 {
        margin-left: -.5rem !important
    }

    .m-sm-n3 {
        margin: -1rem !important
    }

    .mt-sm-n3,
    .my-sm-n3 {
        margin-top: -1rem !important
    }

    .mr-sm-n3,
    .mx-sm-n3 {
        margin-right: -1rem !important
    }

    .mb-sm-n3,
    .my-sm-n3 {
        margin-bottom: -1rem !important
    }

    .ml-sm-n3,
    .mx-sm-n3 {
        margin-left: -1rem !important
    }

    .m-sm-n4 {
        margin: -1.5rem !important
    }

    .mt-sm-n4,
    .my-sm-n4 {
        margin-top: -1.5rem !important
    }

    .mr-sm-n4,
    .mx-sm-n4 {
        margin-right: -1.5rem !important
    }

    .mb-sm-n4,
    .my-sm-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-sm-n4,
    .mx-sm-n4 {
        margin-left: -1.5rem !important
    }

    .m-sm-n5 {
        margin: -3rem !important
    }

    .mt-sm-n5,
    .my-sm-n5 {
        margin-top: -3rem !important
    }

    .mr-sm-n5,
    .mx-sm-n5 {
        margin-right: -3rem !important
    }

    .mb-sm-n5,
    .my-sm-n5 {
        margin-bottom: -3rem !important
    }

    .ml-sm-n5,
    .mx-sm-n5 {
        margin-left: -3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important
    }

    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important
    }

    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important
    }

    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important
    }
}

@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 !important
    }

    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important
    }

    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important
    }

    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important
    }

    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important
    }

    .m-md-1 {
        margin: .25rem !important
    }

    .mt-md-1,
    .my-md-1 {
        margin-top: .25rem !important
    }

    .mr-md-1,
    .mx-md-1 {
        margin-right: .25rem !important
    }

    .mb-md-1,
    .my-md-1 {
        margin-bottom: .25rem !important
    }

    .ml-md-1,
    .mx-md-1 {
        margin-left: .25rem !important
    }

    .m-md-2 {
        margin: .5rem !important
    }

    .mt-md-2,
    .my-md-2 {
        margin-top: .5rem !important
    }

    .mr-md-2,
    .mx-md-2 {
        margin-right: .5rem !important
    }

    .mb-md-2,
    .my-md-2 {
        margin-bottom: .5rem !important
    }

    .ml-md-2,
    .mx-md-2 {
        margin-left: .5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important
    }

    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important
    }

    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important
    }

    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important
    }

    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important
    }

    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important
    }

    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important
    }

    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important
    }

    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important
    }

    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important
    }

    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important
    }

    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important
    }

    .p-md-1 {
        padding: .25rem !important
    }

    .pt-md-1,
    .py-md-1 {
        padding-top: .25rem !important
    }

    .pr-md-1,
    .px-md-1 {
        padding-right: .25rem !important
    }

    .pb-md-1,
    .py-md-1 {
        padding-bottom: .25rem !important
    }

    .pl-md-1,
    .px-md-1 {
        padding-left: .25rem !important
    }

    .p-md-2 {
        padding: .5rem !important
    }

    .pt-md-2,
    .py-md-2 {
        padding-top: .5rem !important
    }

    .pr-md-2,
    .px-md-2 {
        padding-right: .5rem !important
    }

    .pb-md-2,
    .py-md-2 {
        padding-bottom: .5rem !important
    }

    .pl-md-2,
    .px-md-2 {
        padding-left: .5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important
    }

    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important
    }

    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important
    }

    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important
    }

    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important
    }

    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important
    }

    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important
    }

    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important
    }

    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important
    }

    .m-md-n1 {
        margin: -.25rem !important
    }

    .mt-md-n1,
    .my-md-n1 {
        margin-top: -.25rem !important
    }

    .mr-md-n1,
    .mx-md-n1 {
        margin-right: -.25rem !important
    }

    .mb-md-n1,
    .my-md-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-md-n1,
    .mx-md-n1 {
        margin-left: -.25rem !important
    }

    .m-md-n2 {
        margin: -.5rem !important
    }

    .mt-md-n2,
    .my-md-n2 {
        margin-top: -.5rem !important
    }

    .mr-md-n2,
    .mx-md-n2 {
        margin-right: -.5rem !important
    }

    .mb-md-n2,
    .my-md-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-md-n2,
    .mx-md-n2 {
        margin-left: -.5rem !important
    }

    .m-md-n3 {
        margin: -1rem !important
    }

    .mt-md-n3,
    .my-md-n3 {
        margin-top: -1rem !important
    }

    .mr-md-n3,
    .mx-md-n3 {
        margin-right: -1rem !important
    }

    .mb-md-n3,
    .my-md-n3 {
        margin-bottom: -1rem !important
    }

    .ml-md-n3,
    .mx-md-n3 {
        margin-left: -1rem !important
    }

    .m-md-n4 {
        margin: -1.5rem !important
    }

    .mt-md-n4,
    .my-md-n4 {
        margin-top: -1.5rem !important
    }

    .mr-md-n4,
    .mx-md-n4 {
        margin-right: -1.5rem !important
    }

    .mb-md-n4,
    .my-md-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-md-n4,
    .mx-md-n4 {
        margin-left: -1.5rem !important
    }

    .m-md-n5 {
        margin: -3rem !important
    }

    .mt-md-n5,
    .my-md-n5 {
        margin-top: -3rem !important
    }

    .mr-md-n5,
    .mx-md-n5 {
        margin-right: -3rem !important
    }

    .mb-md-n5,
    .my-md-n5 {
        margin-bottom: -3rem !important
    }

    .ml-md-n5,
    .mx-md-n5 {
        margin-left: -3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important
    }

    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important
    }

    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important
    }

    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important
    }
}

@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 !important
    }

    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important
    }

    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important
    }

    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important
    }

    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important
    }

    .m-lg-1 {
        margin: .25rem !important
    }

    .mt-lg-1,
    .my-lg-1 {
        margin-top: .25rem !important
    }

    .mr-lg-1,
    .mx-lg-1 {
        margin-right: .25rem !important
    }

    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: .25rem !important
    }

    .ml-lg-1,
    .mx-lg-1 {
        margin-left: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem !important
    }

    .mt-lg-2,
    .my-lg-2 {
        margin-top: .5rem !important
    }

    .mr-lg-2,
    .mx-lg-2 {
        margin-right: .5rem !important
    }

    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: .5rem !important
    }

    .ml-lg-2,
    .mx-lg-2 {
        margin-left: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important
    }

    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important
    }

    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important
    }

    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important
    }

    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important
    }

    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important
    }

    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important
    }

    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important
    }

    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important
    }

    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important
    }

    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important
    }

    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important
    }

    .p-lg-1 {
        padding: .25rem !important
    }

    .pt-lg-1,
    .py-lg-1 {
        padding-top: .25rem !important
    }

    .pr-lg-1,
    .px-lg-1 {
        padding-right: .25rem !important
    }

    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: .25rem !important
    }

    .pl-lg-1,
    .px-lg-1 {
        padding-left: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem !important
    }

    .pt-lg-2,
    .py-lg-2 {
        padding-top: .5rem !important
    }

    .pr-lg-2,
    .px-lg-2 {
        padding-right: .5rem !important
    }

    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: .5rem !important
    }

    .pl-lg-2,
    .px-lg-2 {
        padding-left: .5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important
    }

    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important
    }

    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important
    }

    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important
    }

    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important
    }

    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important
    }

    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important
    }

    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important
    }

    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important
    }

    .m-lg-n1 {
        margin: -.25rem !important
    }

    .mt-lg-n1,
    .my-lg-n1 {
        margin-top: -.25rem !important
    }

    .mr-lg-n1,
    .mx-lg-n1 {
        margin-right: -.25rem !important
    }

    .mb-lg-n1,
    .my-lg-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-lg-n1,
    .mx-lg-n1 {
        margin-left: -.25rem !important
    }

    .m-lg-n2 {
        margin: -.5rem !important
    }

    .mt-lg-n2,
    .my-lg-n2 {
        margin-top: -.5rem !important
    }

    .mr-lg-n2,
    .mx-lg-n2 {
        margin-right: -.5rem !important
    }

    .mb-lg-n2,
    .my-lg-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-lg-n2,
    .mx-lg-n2 {
        margin-left: -.5rem !important
    }

    .m-lg-n3 {
        margin: -1rem !important
    }

    .mt-lg-n3,
    .my-lg-n3 {
        margin-top: -1rem !important
    }

    .mr-lg-n3,
    .mx-lg-n3 {
        margin-right: -1rem !important
    }

    .mb-lg-n3,
    .my-lg-n3 {
        margin-bottom: -1rem !important
    }

    .ml-lg-n3,
    .mx-lg-n3 {
        margin-left: -1rem !important
    }

    .m-lg-n4 {
        margin: -1.5rem !important
    }

    .mt-lg-n4,
    .my-lg-n4 {
        margin-top: -1.5rem !important
    }

    .mr-lg-n4,
    .mx-lg-n4 {
        margin-right: -1.5rem !important
    }

    .mb-lg-n4,
    .my-lg-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-lg-n4,
    .mx-lg-n4 {
        margin-left: -1.5rem !important
    }

    .m-lg-n5 {
        margin: -3rem !important
    }

    .mt-lg-n5,
    .my-lg-n5 {
        margin-top: -3rem !important
    }

    .mr-lg-n5,
    .mx-lg-n5 {
        margin-right: -3rem !important
    }

    .mb-lg-n5,
    .my-lg-n5 {
        margin-bottom: -3rem !important
    }

    .ml-lg-n5,
    .mx-lg-n5 {
        margin-left: -3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important
    }

    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important
    }

    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important
    }

    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important
    }
}

@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0 !important
    }

    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important
    }

    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important
    }

    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important
    }

    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important
    }

    .m-xl-1 {
        margin: .25rem !important
    }

    .mt-xl-1,
    .my-xl-1 {
        margin-top: .25rem !important
    }

    .mr-xl-1,
    .mx-xl-1 {
        margin-right: .25rem !important
    }

    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: .25rem !important
    }

    .ml-xl-1,
    .mx-xl-1 {
        margin-left: .25rem !important
    }

    .m-xl-2 {
        margin: .5rem !important
    }

    .mt-xl-2,
    .my-xl-2 {
        margin-top: .5rem !important
    }

    .mr-xl-2,
    .mx-xl-2 {
        margin-right: .5rem !important
    }

    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: .5rem !important
    }

    .ml-xl-2,
    .mx-xl-2 {
        margin-left: .5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important
    }

    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important
    }

    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important
    }

    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important
    }

    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important
    }

    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important
    }

    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important
    }

    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important
    }

    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important
    }

    .p-xl-0 {
        padding: 0 !important
    }

    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important
    }

    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important
    }

    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important
    }

    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important
    }

    .p-xl-1 {
        padding: .25rem !important
    }

    .pt-xl-1,
    .py-xl-1 {
        padding-top: .25rem !important
    }

    .pr-xl-1,
    .px-xl-1 {
        padding-right: .25rem !important
    }

    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: .25rem !important
    }

    .pl-xl-1,
    .px-xl-1 {
        padding-left: .25rem !important
    }

    .p-xl-2 {
        padding: .5rem !important
    }

    .pt-xl-2,
    .py-xl-2 {
        padding-top: .5rem !important
    }

    .pr-xl-2,
    .px-xl-2 {
        padding-right: .5rem !important
    }

    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: .5rem !important
    }

    .pl-xl-2,
    .px-xl-2 {
        padding-left: .5rem !important
    }

    .p-xl-3 {
        padding: 1rem !important
    }

    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important
    }

    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important
    }

    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important
    }

    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important
    }

    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important
    }

    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important
    }

    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important
    }

    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important
    }

    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important
    }

    .m-xl-n1 {
        margin: -.25rem !important
    }

    .mt-xl-n1,
    .my-xl-n1 {
        margin-top: -.25rem !important
    }

    .mr-xl-n1,
    .mx-xl-n1 {
        margin-right: -.25rem !important
    }

    .mb-xl-n1,
    .my-xl-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-xl-n1,
    .mx-xl-n1 {
        margin-left: -.25rem !important
    }

    .m-xl-n2 {
        margin: -.5rem !important
    }

    .mt-xl-n2,
    .my-xl-n2 {
        margin-top: -.5rem !important
    }

    .mr-xl-n2,
    .mx-xl-n2 {
        margin-right: -.5rem !important
    }

    .mb-xl-n2,
    .my-xl-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-xl-n2,
    .mx-xl-n2 {
        margin-left: -.5rem !important
    }

    .m-xl-n3 {
        margin: -1rem !important
    }

    .mt-xl-n3,
    .my-xl-n3 {
        margin-top: -1rem !important
    }

    .mr-xl-n3,
    .mx-xl-n3 {
        margin-right: -1rem !important
    }

    .mb-xl-n3,
    .my-xl-n3 {
        margin-bottom: -1rem !important
    }

    .ml-xl-n3,
    .mx-xl-n3 {
        margin-left: -1rem !important
    }

    .m-xl-n4 {
        margin: -1.5rem !important
    }

    .mt-xl-n4,
    .my-xl-n4 {
        margin-top: -1.5rem !important
    }

    .mr-xl-n4,
    .mx-xl-n4 {
        margin-right: -1.5rem !important
    }

    .mb-xl-n4,
    .my-xl-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-xl-n4,
    .mx-xl-n4 {
        margin-left: -1.5rem !important
    }

    .m-xl-n5 {
        margin: -3rem !important
    }

    .mt-xl-n5,
    .my-xl-n5 {
        margin-top: -3rem !important
    }

    .mr-xl-n5,
    .mx-xl-n5 {
        margin-right: -3rem !important
    }

    .mb-xl-n5,
    .my-xl-n5 {
        margin-bottom: -3rem !important
    }

    .ml-xl-n5,
    .mx-xl-n5 {
        margin-left: -3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important
    }

    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important
    }

    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important
    }

    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important
    }
}

table .fa-fw {
    font-size: 1rem;
    width: 22px;
    text-align: center
}

table .has-mark-success {
    color: #06C270
}

table .has-mark-info {
    color: #2D5798
}

.text-monospace {
    font-family: 'Open Sans', SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important
}

.text-justify {
    text-align: justify !important
}

.text-wrap {
    white-space: normal !important
}

.text-nowrap {
    white-space: nowrap !important
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.text-left {
    text-align: left !important
}

.text-right {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

@media (min-width: 576px) {
    .text-sm-left {
        text-align: left !important
    }

    .text-sm-right {
        text-align: right !important
    }

    .text-sm-center {
        text-align: center !important
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important
    }

    .text-md-right {
        text-align: right !important
    }

    .text-md-center {
        text-align: center !important
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important
    }

    .text-lg-right {
        text-align: right !important
    }

    .text-lg-center {
        text-align: center !important
    }
}

@media (min-width: 1200px) {
    .text-xl-left {
        text-align: left !important
    }

    .text-xl-right {
        text-align: right !important
    }

    .text-xl-center {
        text-align: center !important
    }
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.font-weight-light {
    font-weight: 200 !important
}

.font-weight-lighter {
    font-weight: lighter !important
}

.font-weight-normal {
    font-weight: 400 !important
}

.font-weight-bold {
    font-weight: 600 !important
}

.font-weight-bolder {
    font-weight: bolder !important
}

.font-italic {
    font-style: italic !important
}

.text-white {
    color: #fff !important
}

.text-primary {
    color: #2D5798 !important
}

a.text-primary:hover,
a.text-primary:focus {
    color: #003555 !important
}

.text-secondary {
    color: #fff !important
}

a.text-secondary:hover,
a.text-secondary:focus {
    color: #d9d9d9 !important
}

.text-danger {
    color: #F04E4E !important
}

a.text-danger:hover,
a.text-danger:focus {
    color: #840111 !important
}

.text-success {
    color: #06C270 !important
}

a.text-success:hover,
a.text-success:focus {
    color: #104416 !important
}

.text-warning {
    color: #ffb75d !important
}

a.text-warning:hover,
a.text-warning:focus {
    color: #ff9511 !important
}

.text-light {
    color: #e6e6e6 !important
}

a.text-light:hover,
a.text-light:focus {
    color: #bfbfbf !important
}

.text-sategray {
    color: #999 !important
}

a.text-sategray:hover,
a.text-sategray:focus {
    color: #737373 !important
}

.text-dark {
    color: #333 !important
}

a.text-dark:hover,
a.text-dark:focus {
    color: #0d0d0d !important
}

.text-black {
    color: #000 !important
}

a.text-black:hover,
a.text-black:focus {
    color: #000 !important
}

.text-body {
    color: #000 !important
}

.text-muted {
    color: #999 !important
}

.text-disabled {
    color: #b3b3b3 !important;
    cursor: default
}

.text-disabled:hover,
.text-disabled:focus,
.text-disabled:active {
    color: #b3b3b3 !important
}

.text-black-50 {
    color: rgba(0, 0, 0, 0.5) !important
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.text-decoration-none {
    text-decoration: none !important
}

.text-decoration-underline {
    text-decoration: underline !important
}

.text-break {
    word-break: break-word !important;
    overflow-wrap: break-word !important
}

.text-event-auto {
    pointer-events: auto !important
}

.text-reset {
    color: inherit !important
}

.text-scare {
    transform: scale(0.8);
    transform-origin: left
}

.fade {
    transition: opacity 0.15s linear
}

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

.fade:not(.show) {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease
}

@media (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none
    }
}

.dsm-rotate {
    animation: spin 1000ms infinite linear;
    display: inline-block
}

h1,
h2,
h3,
h5,
h6,
.h1,
.h2,
.h3,
.h5,
.h6 {
    margin-bottom: .5rem;
    font-family: "Open Sans";
    font-weight: 700;
    line-height: 1.2
}

h1,
.h1 {
    font-size: 2rem
}

h2,
.h2 {
    font-size: 1.75rem
}

h3,
.h3 {
    font-size: 1.5rem
}

h4,
.h4 {
    font-size: 1.25rem
}

h5,
.h5 {
    font-size: 1rem
}
.h5-semibold
{
	font-weight: 600;
	font-size: 1rem
}

h6,
.h6 {
    font-size: .875rem
}
.h6-semibold
{
	font-weight: 600;
	font-size: .875rem
}

.lead {
    font-weight: 200;
    font-size: 1.09375rem
}

a,
.link {
    font-size: 14px;
    cursor: pointer;
    color: #2D5798
}

a:hover,
.link:hover {
    color: #2D5798;
    text-decoration: none;
    opacity: .8
}

.cursor-pointer {
    cursor: pointer
}

.cursor-default {
    cursor: default
}

.error {
    font-size: .75rem;
    color: #F04E4E
}

.legal {
    font-size: .525rem
}

.display-1 {
    font-size: 6rem;
    font-weight: 200;
    line-height: 1.2
}

.display-2 {
    font-size: 5.5rem;
    font-weight: 200;
    line-height: 1.2
}

.display-3 {
    font-size: 4.5rem;
    font-weight: 200;
    line-height: 1.2
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 200;
    line-height: 1.2
}

.font-size-xs {
    font-size: .75rem !important
}

.font-size-sm {
    font-size: .875rem !important
}

.font-size-base {
    font-size: 1rem !important
}

hr.dsm-hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1)
}

small,
.small {
    font-size: 80%;
    font-weight: 400
}

mark,
.mark {
    padding: .2em;
    background-color: #fcf8e3
}

.list-unstyled {
    padding: 5px 0;
    list-style: none
}

.list-inline {
    padding: 5px 0;
    list-style: none
}

.list-inline-item {
    display: inline-block
}

.list-inline-item:not(:last-child) {
    margin-right: .5rem
}

.initialism {
    font-size: 90%;
    text-transform: uppercase
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem
}

.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #666
}

.blockquote-footer::before {
    content: "\2014\00A0"
}

.pointer-event-remove {
    pointer-events: inherit !important
}

.pointer-event-none {
    pointer-events: none !important
}

.opacity-50 {
    opacity: .5
}

.visible {
    visibility: visible !important
}

.invisible {
    visibility: hidden !important
}

@font-face {
    font-family: "ds";
    src: url("../../sources/fonts/ds/ds.eot?b970aec4e742337afcb40a62caa8a6f0?#iefix") format("embedded-opentype"), url("../../sources/fonts/ds/ds.woff?b970aec4e742337afcb40a62caa8a6f0") format("woff"), url("../../sources/fonts/ds/ds.ttf?b970aec4e742337afcb40a62caa8a6f0") format("truetype"), url("../../sources/fonts/ds/ds.svg?b970aec4e742337afcb40a62caa8a6f0#ds") format("svg")
}

[class^="ds-"],
[class*=" ds-"] {
    font-family: 'ds';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    vertical-align: middle;
    direction: ltr;
    line-height: 1;
    margin-right: 10px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.ds[class^="ds-"],
.ds[class*=" ds-"] {
    margin-right: 0
}

.ds-angle-down:before {
    content: "\e900"
}

.ds-angle-left:before {
    content: "\e901"
}

.ds-angle-right:before {
    content: "\e902"
}

.ds-angle-up:before {
    content: "\e903"
}

.ds-arrow-down:before {
    content: "\e904"
}

.ds-arrow-left:before {
    content: "\e905"
}

.ds-arrow-right:before {
    content: "\e906"
}

.ds-arrow-up:before {
    content: "\e907"
}

.ds-add-bold-o:before {
    content: "\e908"
}

.ds-add-bold:before {
    content: "\e909"
}

.ds-add-circle-bold-o:before {
    content: "\e90a"
}

.ds-add-circle-bold:before {
    content: "\e90b"
}

.ds-add-circle-o:before {
    content: "\e90c"
}

.ds-add-circle:before {
    content: "\e90d"
}

.ds-add-square-o:before {
    content: "\e90e"
}

.ds-add-square:before {
    content: "\e90f"
}

.ds-add:before {
    content: "\e910"
}

.ds-alarm-o:before {
    content: "\e911"
}

.ds-alarm:before {
    content: "\e912"
}

.ds-align-landscape:before {
    content: "\e913"
}

.ds-align-portrait:before {
    content: "\e914"
}

.ds-arrow-border-left:before {
    content: "\e915"
}

.ds-arrow-border-right:before {
    content: "\e916"
}

.ds-arrow-bottom-left:before {
    content: "\e917"
}

.ds-arrow-bottom-right:before {
    content: "\e918"
}

.ds-arrow-curve:before {
    content: "\e919"
}

.ds-arrow-next:before {
    content: "\e91a"
}

.ds-arrow-previous:before {
    content: "\e91b"
}

.ds-arrow-return-round:before {
    content: "\e91c"
}

.ds-arrow-return:before {
    content: "\e91d"
}

.ds-arrow-square:before {
    content: "\e91e"
}

.ds-arrow-top-left:before {
    content: "\e91f"
}

.ds-arrow-top-right:before {
    content: "\e920"
}

.ds-asterisk-bold:before {
    content: "\e921"
}

.ds-attachment-right:before {
    content: "\e922"
}

.ds-attachment:before {
    content: "\e923"
}

.ds-back-o:before {
    content: "\e924"
}

.ds-back:before {
    content: "\e925"
}

.ds-ban-lg:before {
    content: "\e926"
}

.ds-ban-o:before {
    content: "\e927"
}

.ds-ban-slash:before {
    content: "\e928"
}

.ds-ban:before {
    content: "\e929"
}

.ds-bell-ring:before {
    content: "\e92a"
}

.ds-bell-sleep:before {
    content: "\e92b"
}

.ds-bell:before {
    content: "\e92c"
}

.ds-binocular:before {
    content: "\e92d"
}

.ds-bookmark:before {
    content: "\e92e"
}

.ds-bookmarks-doc:before {
    content: "\e92f"
}

.ds-bookmarks-right:before {
    content: "\e930"
}

.ds-broken-tab-del:before {
    content: "\e931"
}

.ds-bullets:before {
    content: "\e932"
}

.ds-button-direction:before {
    content: "\e933"
}

.ds-checkbox-off:before {
    content: "\e934"
}

.ds-radio-alt:before {
    content: "\e935"
}

.ds-checkbox-on:before {
    content: "\e936"
}

.ds-calendar-empty:before {
    content: "\e937"
}

.ds-calendar-number:before {
    content: "\e938"
}

.ds-calendar:before {
    content: "\e939"
}

.ds-camera-o:before {
    content: "\e93a"
}

.ds-camera:before {
    content: "\e93b"
}

.ds-cell-bottom:before {
    content: "\e93c"
}

.ds-cell-center:before {
    content: "\e93d"
}

.ds-cell-frame:before {
    content: "\e93e"
}

.ds-cell-full:before {
    content: "\e93f"
}

.ds-cell-left:before {
    content: "\e940"
}

.ds-cell-none:before {
    content: "\e941"
}

.ds-cell-right:before {
    content: "\e942"
}

.ds-check-o:before {
    content: "\e943"
}

.ds-check-alt:before {
    content: "\e944"
}

.ds-checklist-alt:before {
    content: "\e945"
}

.ds-clock-o:before {
    content: "\e946"
}

.ds-clock-simple-o:before {
    content: "\e947"
}

.ds-clock-simple:before {
    content: "\e948"
}

.ds-clock:before {
    content: "\e949"
}

.ds-cog:before {
    content: "\e94a"
}

.ds-content:before {
    content: "\e94b"
}

.ds-cursor-add:before {
    content: "\e94c"
}

.ds-cursor-arrow-o:before {
    content: "\e94d"
}

.ds-cursor-arrow:before {
    content: "\e94e"
}

.ds-cursor-cross:before {
    content: "\e94f"
}

.ds-cursor-dot:before {
    content: "\e950"
}

.ds-cursor-double-click:before {
    content: "\e951"
}

.ds-cursor-double:before {
    content: "\e952"
}

.ds-cursor-finger-o:before {
    content: "\e953"
}

.ds-cursor-finger:before {
    content: "\e954"
}

.ds-cursor-hand-o:before {
    content: "\e955"
}

.ds-cursor-hand:before {
    content: "\e956"
}

.ds-cursor-o:before {
    content: "\e957"
}

.ds-cursor-select-circle:before {
    content: "\e958"
}

.ds-cursor-select-cross:before {
    content: "\e959"
}

.ds-cursor-select-dot:before {
    content: "\e95a"
}

.ds-cursor-select-heart:before {
    content: "\e95b"
}

.ds-cursor-select-box:before {
    content: "\e95c"
}

.ds-cursor-select:before {
    content: "\e95d"
}

.ds-cursor-square:before {
    content: "\e95e"
}

.ds-cursor-target-circle:before {
    content: "\e95f"
}

.ds-cursor-target:before {
    content: "\e960"
}

.ds-cursor:before {
    content: "\e961"
}

.ds-drag-hand:before {
    content: "\e962"
}

.ds-expand:before {
    content: "\e963"
}

.ds-exclamation:before {
    content: "\e964"
}

.ds-fastforward-o:before {
    content: "\e965"
}

.ds-filter-o:before {
    content: "\e966"
}

.ds-filter:before {
    content: "\e967"
}

.ds-headphones:before {
    content: "\e968"
}

.ds-hierarchy-circle:before {
    content: "\e969"
}

.ds-hierarchy-files:before {
    content: "\e96a"
}

.ds-hierarchy-line:before {
    content: "\e96b"
}

.ds-hierarchy-rect:before {
    content: "\e96c"
}

.ds-hierarchy-triangle:before {
    content: "\e96d"
}

.ds-hierarchy:before {
    content: "\e96e"
}

.ds-house-chimney:before {
    content: "\e96f"
}

.ds-house:before {
    content: "\e970"
}

.ds-hyperlink:before {
    content: "\e971"
}

.ds-info-circle:before {
    content: "\e972"
}

.ds-asterisk:before {
    content: "\e973"
}

.ds-layout-equal:before {
    content: "\e974"
}

.ds-layout-half:before {
    content: "\e975"
}

.ds-layout-left-side:before {
    content: "\e976"
}

.ds-layout-left:before {
    content: "\e977"
}

.ds-layout-module-o:before {
    content: "\e978"
}

.ds-layout-module:before {
    content: "\e979"
}

.ds-layout-right-side:before {
    content: "\e97a"
}

.ds-layout-right:before {
    content: "\e97b"
}

.ds-layout-sudoku:before {
    content: "\e97c"
}

.ds-layout-top:before {
    content: "\e97d"
}

.ds-layout-trisection:before {
    content: "\e97e"
}

.ds-layout:before {
    content: "\e97f"
}

.ds-list-add:before {
    content: "\e980"
}

.ds-list-bullets-square:before {
    content: "\e981"
}

.ds-list-bullets:before {
    content: "\e982"
}

.ds-list-numbers:before {
    content: "\e983"
}

.ds-lock-off:before {
    content: "\e984"
}

.ds-lock-on:before {
    content: "\e985"
}

.ds-loop-arrow:before {
    content: "\e986"
}

.ds-loop-forward:before {
    content: "\e987"
}

.ds-loop:before {
    content: "\e988"
}

.ds-megaphone:before {
    content: "\e989"
}

.ds-messages-bubble:before {
    content: "\e98a"
}

.ds-microphone:before {
    content: "\e98b"
}

.ds-next:before {
    content: "\e98c"
}

.ds-touch-up:before {
    content: "\e98d"
}

.ds-paragraph-half:before {
    content: "\e98e"
}

.ds-paragraph-bullets:before {
    content: "\e98f"
}

.ds-paragraph-image:before {
    content: "\e990"
}

.ds-paragraph:before {
    content: "\e991"
}

.ds-pause-o:before {
    content: "\e992"
}

.ds-pause:before {
    content: "\e993"
}

.ds-pencil:before {
    content: "\e994"
}

.ds-pin-style:before {
    content: "\e995"
}

.ds-play-o:before {
    content: "\e996"
}

.ds-play:before {
    content: "\e997"
}

.ds-power-off:before {
    content: "\e998"
}

.ds-previous:before {
    content: "\e999"
}

.ds-print-text:before {
    content: "\e99a"
}

.ds-printer-view:before {
    content: "\e99b"
}

.ds-question1:before {
    content: "\e99c"
}

.ds-radio-on:before {
    content: "\e99d"
}

.ds-redo:before {
    content: "\e99e"
}

.ds-refresh-arrows:before {
    content: "\e99f"
}

.ds-refresh:before {
    content: "\e9a0"
}

.ds-remove-bold-o:before {
    content: "\e9a1"
}

.ds-remove-bold:before {
    content: "\e9a2"
}

.ds-remove-circle-b-o:before {
    content: "\e9a3"
}

.ds-remove-circle-bold:before {
    content: "\e9a4"
}

.ds-remove-circle-o:before {
    content: "\e9a5"
}

.ds-remove-circle:before {
    content: "\e9a6"
}

.ds-remove-square-o:before {
    content: "\e9a7"
}

.ds-remove-square:before {
    content: "\e9a8"
}

.ds-remove-tab-o:before {
    content: "\e9a9"
}

.ds-remove-tab:before {
    content: "\e9aa"
}

.ds-remove:before {
    content: "\e9ab"
}

.ds-return-square-o:before {
    content: "\e9ac"
}

.ds-return-square:before {
    content: "\e9ad"
}

.ds-rewind-o:before {
    content: "\e9ae"
}

.ds-rewind:before {
    content: "\e9af"
}

.ds-route:before {
    content: "\e9b0"
}

.ds-scan:before {
    content: "\e9b1"
}

.ds-search-text:before {
    content: "\e9b2"
}

.ds-search:before {
    content: "\e9b3"
}

.ds-shift-o:before {
    content: "\e9b4"
}

.ds-shift:before {
    content: "\e9b5"
}

.ds-shrink-alt:before {
    content: "\e9b6"
}

.ds-shrink-arrow-closer:before {
    content: "\e9b7"
}

.ds-shrink-arrow:before {
    content: "\e9b8"
}

.ds-shrink-circle:before {
    content: "\e9b9"
}

.ds-shrink:before {
    content: "\e9ba"
}

.ds-shuffle:before {
    content: "\e9bb"
}

.ds-slider:before {
    content: "\e9bc"
}

.ds-split:before {
    content: "\e9bd"
}

.ds-stop-o:before {
    content: "\e9be"
}

.ds-stop:before {
    content: "\e9bf"
}

.ds-subtract-bold-o:before {
    content: "\e9c0"
}

.ds-subtract-bold:before {
    content: "\e9c1"
}

.ds-subtract-circle-b-o:before {
    content: "\e9c2"
}

.ds-subtract-circle-b:before {
    content: "\e9c3"
}

.ds-subtract-circle-o:before {
    content: "\e9c4"
}

.ds-subtract-circle:before {
    content: "\e9c5"
}

.ds-subtract-square-o:before {
    content: "\e9c6"
}

.ds-subtract-square:before {
    content: "\e9c7"
}

.ds-subtract:before {
    content: "\e9c8"
}

.ds-syc-arrows-dot:before {
    content: "\e9c9"
}

.ds-syc-arrows-three:before {
    content: "\e9ca"
}

.ds-syc-clock:before {
    content: "\e9cb"
}

.ds-syc-dot:before {
    content: "\e9cc"
}

.ds-syc-fresh:before {
    content: "\e9cd"
}

.ds-syc-notch:before {
    content: "\e9ce"
}

.ds-syc-search:before {
    content: "\e9cf"
}

.ds-syc-square-rotate:before {
    content: "\e9d0"
}

.ds-syc-square:before {
    content: "\e9d1"
}

.ds-syc:before {
    content: "\e9d2"
}

.ds-syncing:before {
    content: "\e9d3"
}

.ds-tag-o:before {
    content: "\e9d4"
}

.ds-tag:before {
    content: "\e9d5"
}

.ds-task-text:before {
    content: "\e9d6"
}

.ds-touch-finger:before {
    content: "\e9d7"
}

.ds-touch-up-long:before {
    content: "\e9d8"
}

.ds-trash:before {
    content: "\e9d9"
}

.ds-undo:before {
    content: "\e9da"
}

.ds-user-signal:before {
    content: "\e9db"
}

.ds-view:before {
    content: "\e9dc"
}

.ds-wench:before {
    content: "\e9dd"
}

.ds-checkmark:before {
    content: "\e9de"
}

.ds-radio-off:before {
    content: "\e9df"
}

.ds-angle-left-alt:before {
    content: "\e9e0"
}

.ds-angle-right-alt:before {
    content: "\e9e1"
}

.ds-shrink-arrow-open:before {
    content: "\e9e2"
}

.ds-shift-upload:before {
    content: "\e9e3"
}

.ds-list-menu:before {
    content: "\e9e4"
}

.ds-list-more-vert:before {
    content: "\e9e5"
}

.ds-computer:before {
    content: "\e9e6"
}

.ds-customer-service:before {
    content: "\e9e7"
}

.ds-contact:before {
    content: "\e9e8"
}

.ds-map:before {
    content: "\e9e9"
}

.ds-list-more-horizontal:before {
    content: "\e9ea"
}

.ds-contact-phone:before {
    content: "\e9eb"
}

.ds-export:before {
    content: "\e9ec"
}

.ds-property-manager:before {
    content: "\e9ed"
}

.ds-message:before {
    content: "\e9ee"
}

.ds-pic:before {
    content: "\e9ef"
}

.ds-computer-system:before {
    content: "\e9f0"
}

.ds-headphones-caller:before {
    content: "\e9f1"
}

.ds-exclamation-o:before {
    content: "\e9f2"
}

.ds-exclamation-b:before {
    content: "\e9f3"
}

.ds-shift-upload-square:before {
    content: "\e9f4"
}

.ds-link:before {
    content: "\e9f5"
}

.ds-bill:before {
    content: "\e9f6"
}

.ds-quote:before {
    content: "\e9f7"
}

.ds-phone:before {
    content: "\e9f8"
}

.ds-folder:before {
    content: "\e9f9"
}

.ds-checkbox-select:before {
    content: "\e9fa"
}

.ds-star:before {
    content: "\e9fb"
}

.ds-star-o:before {
    content: "\e9fc"
}

.ds-question:before {
    content: "\e9fd"
}

.ds-edit:before {
    content: "\e9fe"
}

.ds-unread:before {
    content: "\e9ff"
}

.ds-code-s-line:before {
    content: "\ea00"
}

.ds-code-slash-line:before {
    content: "\ea01"
}

.ds-file-copy-line:before {
    content: "\ea02"
}

.ds-star-fill:before {
    content: "\ea03"
}

.ds-star-half-fill:before {
    content: "\ea04"
}

.ds-star-half-line:before {
    content: "\ea05"
}

.ds-star-line:before {
    content: "\ea06"
}

.ds-user-line:before {
    content: "\ea07"
}

.ds-check-line:before {
    content: "\ea08"
}

.ds-arrow-left-s-line:before {
    content: "\ea09"
}

.ds-arrow-right-s-line:before {
    content: "\ea0a"
}

.ds-more-line:before {
    content: "\ea0b"
}

.ds-file-text:before {
    content: "\ea0c"
}

.ds-home-line:before {
    content: "\ea0d"
}

.ds-profile-line:before {
    content: "\ea0e"
}

.ds-close-line:before {
    content: "\ea0f"
}

.ds-emotion-line:before {
    content: "\ea10"
}

.ds-add-box-line:before {
    content: "\ea11"
}

.ds-arrow-down-line:before {
    content: "\ea12"
}

.ds-arrow-up-line:before {
    content: "\ea13"
}

.ds-check-new-line:before {
    content: "\ea14"
}

.ds-delete-bin-line:before {
    content: "\ea15"
}

.ds-edit-new-line:before {
    content: "\ea16"
}

.ds-file-copy-new-line:before {
    content: "\ea17"
}

.ds-notification-line:before {
    content: "\ea18"
}

.ds-settings-line:before {
    content: "\ea19"
}

.img-fluid {
    max-width: 100%;
    height: auto
}

.img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #b3b3b3;
    border-radius: .3125rem;
    max-width: 100%;
    height: auto
}

.figure {
    display: inline-block
}

.figure-img {
    margin-bottom: .5rem;
    line-height: 1
}

.figure-caption {
    font-size: 90%;
    color: #666
}

code {
    font-size: 87.5%;
    color: #000;
    word-break: break-word
}

a>code {
    color: inherit
}

kbd {
    padding: .2rem .4rem;
    font-size: 87.5%;
    color: #fff;
    background-color: #1a1a1a;
    border-radius: .25rem
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 600
}

pre {
    display: block;
    font-size: 87.5%;
    color: #1a1a1a
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll
}

.dsm-table {
    width: 100%;
    margin-bottom: .5rem;
    color: #2b2b2b;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 2px 3px 0 rgba(168, 183, 199, 0.3)
}

.dsm-table th,
.dsm-table td {
    font-size: 14px;
    padding: 16px;
    border-bottom: 1px solid #f0f0f0
}

.dsm-table th:first-child,
.dsm-table td:first-child {
    padding-left: 20px
}

.dsm-table th:last-child,
.dsm-table td:last-child {
    padding-right: 20px
}

.dsm-table td a {
    color: #007fc2
}

.dsm-table td .expand-triangle-container {
    display: inline-block;
    margin-right: 8px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    vertical-align: middle;
    text-align: center;
    cursor: pointer
}

.dsm-table td .expand-triangle-down {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    margin-bottom: 1px;
    border-width: 4px 4px 0;
    border-color: #ccc transparent transparent
}

.dsm-table td .expand-triangle-right {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    margin-bottom: 1px;
    border-width: 4px 0 4px 4px;
    border-color: transparent transparent transparent #ccc
}

.dsm-table .hidden-thead {
    visibility: collapse
}

.dsm-table thead th {
    position: relative;
    border-bottom: 1px solid #f0f0f0
}

.dsm-table thead th.sorting,
.dsm-table thead th.sorting-asc,
.dsm-table thead th.sorting-desc {
    position: relative;
    padding-right: 20px;
    cursor: pointer
}

.dsm-table thead th.sorting::before,
.dsm-table thead th.sorting::after,
.dsm-table thead th.sorting-asc::before,
.dsm-table thead th.sorting-asc::after,
.dsm-table thead th.sorting-desc::before,
.dsm-table thead th.sorting-desc::after {
    position: absolute;
    top: 50%;
    right: 6px;
    width: 0;
    height: 0;
    content: "";
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.dsm-table thead th.sorting-asc,
.dsm-table thead th.sorting-desc {
    color: #F04E4E
}

.dsm-table thead th.sorting {
    color: #2D5798
}

.dsm-table thead th.sorting::after {
    margin-top: 2px;
    border-top: 4px solid #2D5798 !important
}

.dsm-table thead th.sorting::before {
    margin-top: -4px;
    border-bottom: 4px solid #2D5798
}

.dsm-table thead th.sorting-asc::after {
    margin-top: -2px;
    border-bottom: 4px solid #F04E4E
}

.dsm-table thead th.sorting-desc::after {
    margin-top: -2px;
    border-top: 4px solid #F04E4E
}

.dsm-table thead th:first-child {
  border-start-start-radius: .25rem
}

.dsm-table thead th:last-child {
  border-start-end-radius: .25rem
}

.dsm-table tbody+tbody {
    border-top: 2px solid #f0f0f0
}

.dsm-table .dsm-control {
    min-height: auto
}

.dsm-table-total-row td {
    font-weight: bold
}

.dsm-table-sm th,
.dsm-table-sm td {
    padding: 5px 15px
}

.dsm-table-lg th,
.dsm-table-lg td {
    height: 56px;
    padding: 10px 15px;
    vertical-align: middle
}

.dsm-table-nowrap th,
.dsm-table-nowrap td {
    white-space: nowrap
}

.dsm-table-breakword td {
    overflow-wrap: break-word;
    word-break: break-word
}

.dsm-table-bordered {
    border: 1px solid #f0f0f0
}

.dsm-table-bordered th,
.dsm-table-bordered td {
    border: 1px solid #f0f0f0
}

.dsm-table-bordered thead th,
.dsm-table-bordered thead td {
    border-bottom-width: 2px
}

.dsm-table-borderless th,
.dsm-table-borderless td,
.dsm-table-borderless thead th,
.dsm-table-borderless tbody+tbody {
    border: 0
}

.dsm-table-hover tbody tr:hover {
    color: #2b2b2b;
    background-color: #f5f5f5
}

.dsm-table-primary,
.dsm-table-primary>th,
.dsm-table-primary>td {
    background-color: #c4d0e2
}

.dsm-table-primary th,
.dsm-table-primary td,
.dsm-table-primary thead th,
.dsm-table-primary tbody+tbody {
    border-color: #92a8c9
}

.dsm-table-hover .dsm-table-primary:hover {
    background-color: #b3c2da
}

.dsm-table-hover .dsm-table-primary:hover>td,
.dsm-table-hover .dsm-table-primary:hover>th {
  background-color: #b3c2da
}

.dsm-table-secondary,
.dsm-table-secondary>th,
.dsm-table-secondary>td {
    background-color: #fff
}

.dsm-table-secondary th,
.dsm-table-secondary td,
.dsm-table-secondary thead th,
.dsm-table-secondary tbody+tbody {
    border-color: #fff
}

.dsm-table-hover .dsm-table-secondary:hover {
    background-color: #f2f2f2
}

.dsm-table-hover .dsm-table-secondary:hover>td,
.dsm-table-hover .dsm-table-secondary:hover>th {
    background-color: #f2f2f2
}

.dsm-table-danger,
.dsm-table-danger>th,
.dsm-table-danger>td {
    background-color: #fbcdcd
}

.dsm-table-danger th,
.dsm-table-danger td,
.dsm-table-danger thead th,
.dsm-table-danger tbody+tbody {
    border-color: #f7a3a3
}

.dsm-table-hover .dsm-table-danger:hover {
    background-color: #f9b5b5
}

.dsm-table-hover .dsm-table-danger:hover>td,
.dsm-table-hover .dsm-table-danger:hover>th {
    background-color: #f9b5b5
}

.dsm-table-success,
.dsm-table-success>th,
.dsm-table-success>td {
    background-color: #b9eed7
}

.dsm-table-success th,
.dsm-table-success td,
.dsm-table-success thead th,
.dsm-table-success tbody+tbody {
    border-color: #7edfb5
}

.dsm-table-hover .dsm-table-success:hover {
    background-color: #a4e9cb
}

.dsm-table-hover .dsm-table-success:hover>td,
.dsm-table-hover .dsm-table-success:hover>th {
    background-color: #a4e9cb
}

.dsm-table-warning,
.dsm-table-warning>th,
.dsm-table-warning>td {
    background-color: #ffefb8
}

.dsm-table-warning th,
.dsm-table-warning td,
.dsm-table-warning thead th,
.dsm-table-warning tbody+tbody {
    border-color: #ffe27a
}

.dsm-table-hover .dsm-table-warning:hover {
    background-color: #ffe99f
}

.dsm-table-hover .dsm-table-warning:hover>td,
.dsm-table-hover .dsm-table-warning:hover>th {
    background-color: #ffe99f
}

.dsm-table-light,
.dsm-table-light>th,
.dsm-table-light>td {
    background-color: #f8f8f8
}

.dsm-table-light th,
.dsm-table-light td,
.dsm-table-light thead th,
.dsm-table-light tbody+tbody {
    border-color: #f2f2f2
}

.dsm-table-hover .dsm-table-light:hover {
    background-color: #ebebeb
}

.dsm-table-hover .dsm-table-light:hover>td,
.dsm-table-hover .dsm-table-light:hover>th {
    background-color: #ebebeb
}

.dsm-table-sategray,
.dsm-table-sategray>th,
.dsm-table-sategray>td {
    background-color: #e2e2e2
}

.dsm-table-sategray th,
.dsm-table-sategray td,
.dsm-table-sategray thead th,
.dsm-table-sategray tbody+tbody {
    border-color: #cacaca
}

.dsm-table-hover .dsm-table-sategray:hover {
    background-color: #d5d5d5
}

.dsm-table-hover .dsm-table-sategray:hover>td,
.dsm-table-hover .dsm-table-sategray:hover>th {
    background-color: #d5d5d5
}

.dsm-table-dark,
.dsm-table-dark>th,
.dsm-table-dark>td {
    background-color: #c6c6c6
}

.dsm-table-dark th,
.dsm-table-dark td,
.dsm-table-dark thead th,
.dsm-table-dark tbody+tbody {
    border-color: #959595
}

.dsm-table-hover .dsm-table-dark:hover {
    background-color: #b9b9b9
}

.dsm-table-hover .dsm-table-dark:hover>td,
.dsm-table-hover .dsm-table-dark:hover>th {
    background-color: #b9b9b9
}

.dsm-table-black,
.dsm-table-black>th,
.dsm-table-black>td {
    background-color: #b8b8b8
}

.dsm-table-black th,
.dsm-table-black td,
.dsm-table-black thead th,
.dsm-table-black tbody+tbody {
    border-color: #7a7a7a
}

.dsm-table-hover .dsm-table-black:hover {
    background-color: #ababab
}

.dsm-table-hover .dsm-table-black:hover>td,
.dsm-table-hover .dsm-table-black:hover>th {
    background-color: #ababab
}

.dsm-table-active,
.dsm-table-active>th,
.dsm-table-active>td {
    background-color: #f5f5f5
}

.dsm-table-hover .dsm-table-active:hover {
    background-color: #e8e8e8
}

.dsm-table-hover .dsm-table-active:hover>td,
.dsm-table-hover .dsm-table-active:hover>th {
    background-color: #e8e8e8
}

.dsm-table .thead-dark th {
    color: #2b2b2b;
    background-color: #f5f5f5;
    border-color: #f0f0f0
}

.dsm-table .thead-dark th:first-child {
    border-top-left-radius: .25rem
}

.dsm-table .thead-dark th:last-child {
    border-top-right-radius: .25rem
}

.dsm-table .thead-dark th.sorting::before,
.dsm-table .thead-dark th.sorting::after,
.dsm-table .thead-dark th.sorting-asc::before,
.dsm-table .thead-dark th.sorting-asc::after,
.dsm-table .thead-dark th.sorting-desc::before,
.dsm-table .thead-dark th.sorting-desc::after {
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.dsm-table .thead-dark th.sorting-asc,
.dsm-table .thead-dark th.sorting-desc {
    color: #2b2b2b
}

.dsm-table .thead-dark th.sorting {
    color: #2b2b2b
}

.dsm-table .thead-dark th.sorting::after {
    border-top-color: #909090 !important
}

.dsm-table .thead-dark th.sorting::before {
    border-bottom-color: #909090
}

.dsm-table .thead-dark th.sorting-asc::after {
    border-bottom-color: #909090
}

.dsm-table .thead-dark th.sorting-desc::after {
    border-top-color: #909090
}

.dsm-table .thead-light th {
    color: #2b2b2b;
    background-color: #f5f5f5;
    border-color: #f0f0f0
}

.dsm-table-dark {
    color: #2b2b2b;
    background-color: #fff
}

.dsm-table-dark th,
.dsm-table-dark td,
.dsm-table-dark thead th {
    border-color: #f0f0f0
}

.dsm-table-dark.dsm-table-bordered {
    border: 0
}

.dsm-table-dark.dsm-table-striped tbody tr:nth-of-type(odd) {
    background-color: #fff
}

.dsm-table-dark.dsm-table-hover tbody tr:hover {
    color: #2b2b2b;
    background-color: #f5f5f5
}

.dsm-table-theme-primary {
    border-bottom: 1px solid #f0f0f0
}

.dsm-table-theme-primary th,
.dsm-table-theme-primary td {
    font-size: 0.875rem
}

.dsm-table-theme-primary .thead-primary th {
    background-color: #f5f5f5;
    border: none;
    font-weight: 600;
    position: relative;
    color: #2b2b2b
}

.dsm-table-theme-primary .thead-primary th.sorting,
.dsm-table-theme-primary .thead-primary th.sorting-asc,
.dsm-table-theme-primary .thead-primary th.sorting-desc {
    color: #090909
}

.dsm-table-theme-primary .thead-primary th.sorting::after,
.dsm-table-theme-primary .thead-primary th.sorting-asc::after,
.dsm-table-theme-primary .thead-primary th.sorting-desc::after {
    margin-top: 2px;
    border-top: 4px solid #909090 !important;
    border-bottom: none
}

.dsm-table-theme-primary .thead-primary th.sorting::before,
.dsm-table-theme-primary .thead-primary th.sorting-asc::before,
.dsm-table-theme-primary .thead-primary th.sorting-desc::before {
    margin-top: -4px;
    border-bottom: 4px solid #909090;
    border-top: none
}

.dsm-table-theme-primary .thead-primary th.sorting-asc::before {
    border-bottom-color: var(--primary)
}

.dsm-table-theme-primary .thead-primary th.sorting-desc::after {
    border-top-color: var(--primary) !important
}

.dsm-table-theme-primary td {
    border-top: 1px solid #f0f0f0;
    color: #2b2b2b
}

@media (max-width: 575.98px) {
    .dsm-table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .dsm-table-responsive-sm>.dsm-table-bordered {
        border: 0
    }
}

@media (max-width: 767.98px) {
    .dsm-table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .dsm-table-responsive-md>.dsm-table-bordered {
        border: 0
    }
}

@media (max-width: 991.98px) {
    .dsm-table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .dsm-table-responsive-lg>.dsm-table-bordered {
        border: 0
    }
}

@media (max-width: 1199.98px) {
    .dsm-table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .dsm-table-responsive-xl>.dsm-table-bordered {
        border: 0
    }
}

.dsm-table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.dsm-table-responsive>.dsm-table-bordered {
    border: 0
}

.dsm-form-control {
    font-weight: 400;
    line-height: 1.5;
    display: block;
    width: 100%;
    height: calc(1.5em + 1.25rem + 2px - 0.375rem);
    padding: .625rem .75rem;
    color: #090909;
    border: 1px solid #dadada;
    background-color: #fff;
    background-clip: padding-box;
    font-size: 1rem;
    border-radius: .25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .dsm-form-control {
        transition: none
    }
}

.dsm-form-control:focus,
.dsm-form-control.focus {
    color: #090909;
    background-color: #fff;
    border-color: #2D5798;
    outline: 0;
    box-shadow: 0 0 3px 0 #2D5798
}

.dsm-form-control:hover,
.dsm-form-control.hover {
    border-color: #2D5798;
    box-shadow: 0 0 3px 0 #2D5798
}

.dsm-form-control::-ms-expand {
    border: 0;
    background-color: transparent
}

.dsm-form-control::placeholder {
    opacity: .45;
    color: #090909
}

.dsm-form-control:disabled {
    opacity: 1;
    color: rgba(9, 9, 9, 0.25);
    border-color: #dadada;
    background-color: #f0f0f0;
    box-shadow: none;
    cursor: not-allowed
}

.dsm-form-control:disabled .input-close {
    display: none
}

.dsm-form-control[readonly] {
    opacity: 1;
    border-color: #dadada;
    background-color: #fff;
    cursor: default
}

.dsm-form-control[readonly] .input-close {
    display: none
}

.dsm-form-control[readonly]:hover,
.dsm-form-control[readonly]:focus,
.dsm-form-control[readonly].focus {
    box-shadow: none
}

select.dsm-form-control option {
    color: #333;
    font-size: 14px
}

select.dsm-form-control:focus::-ms-value {
    color: #333;
    background-color: #fff
}

textarea.dsm-form-control {
    resize: none
}

.dsm-form-control-file,
.dsm-form-control-range {
    display: block;
    width: 100%
}

.col-form-label {
    line-height: 1.5;
    margin-bottom: 0;
    padding-top: calc(.625rem + 1px);
    padding-bottom: calc(.625rem + 1px);
    font-size: inherit
}

.col-form-label-lg {
    line-height: 1.8;
    padding-top: calc(.75rem + 1px);
    padding-bottom: calc(.75rem + 1px);
    font-size: 1.57143rem
}

.col-form-label-sm {
    line-height: 1.5;
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    font-size: .875rem
}

.dsm-form-control-plaintext {
    line-height: 1.5;
    display: block;
    width: 100%;
    margin-bottom: 0;
    padding-top: .625rem;
    padding-bottom: .625rem;
    color: #000;
    border: solid transparent;
    border-width: 1px 0;
    background-color: transparent
}

.dsm-form-control-plaintext.dsm-form-control-sm,
.dsm-form-control-plaintext.dsm-form-control-lg {
    padding-right: 0;
    padding-left: 0
}

.dsm-form-control-sm {
    line-height: 1.5;
    height: 2rem;
    padding: .375rem .75rem;
    font-size: .8125rem;
    border-radius: .25rem
}

.dsm-form-control-lg {
    line-height: 1.8;
    height: calc(1.8em + 1.5rem + 2px);
    padding: .75rem 1.25rem;
    font-size: 1.375rem;
    border-radius: .5rem
}

select.dsm-form-control[size],
select.dsm-form-control[multiple] {
    height: auto
}

textarea.dsm-form-control {
    height: auto
}

.dsm-form-group {
    position: relative;
    margin-bottom: 1rem
}

.dsm-form-group.dsm-form-group-lg {
    margin-bottom: 2.5rem
}

.dsm-form-group.dsm-form-group-lg label {
    margin-bottom: .5rem
}

.dsm-form-text {
    display: block;
    margin-top: .25rem
}

.search-group {
    margin: .25rem 0
}

.dsm-form-row {
    display: flex;
    margin-right: -5px;
    margin-left: -5px;
    flex-wrap: wrap
}

.dsm-form-row>.col,
.dsm-form-row>[class*='col-'] {
    padding-right: 5px;
    padding-left: 5px
}

.dsm-form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem
}

.dsm-form-check-input {
    position: absolute;
    margin-top: .3rem;
    margin-left: -1.25rem
}

.dsm-form-check-input:disabled~.dsm-form-check-label {
    color: #999
}

.dsm-form-check-label {
    margin-bottom: 0
}

.dsm-form-check-inline {
    display: inline-flex;
    margin-right: .75rem;
    padding-left: 0;
    align-items: center
}

.dsm-form-check-inline .dsm-form-check-input {
    position: static;
    margin-top: 0;
    margin-right: .3125rem;
    margin-left: 0
}

.dsm-was-invalid .dsm-form-control {
    border-color: #06C270;
    box-shadow: 0 0 0 .0625rem #06C270
}

.dsm-was-invalid .dsm-form-control:focus {
    border-color: #06C270;
    box-shadow: 0 0 0 .0625rem #06C270
}

.dsm-was-invalid .dsm-select {
    border-color: #06C270;
    box-shadow: 0 0 0 .0625rem #06C270
}

.dsm-was-invalid .dsm-select:focus {
    border-color: #06C270;
    box-shadow: 0 0 0 .0625rem #06C270
}

.dsm-was-invalid .dsm-form-check-input~.dsm-form-check-label {
    color: #06C270
}

.dsm-was-invalid .dsm-control-input~.dsm-control-label {
    color: #06C270;
    box-shadow: none
}

.dsm-was-invalid .dsm-control-input~.dsm-control-label::before {
    border-color: #06C270
}

.dsm-was-invalid .dsm-control-input:checked~.dsm-control-label::before {
    border-color: #08f38d;
    background-color: #08f38d
}

.dsm-was-invalid .dsm-control-input:focus~.dsm-control-label::before {
    box-shadow: 0 0 0 .0625rem rgba(6, 194, 112, 0.25)
}

.dsm-was-invalid .dsm-control-input:focus:not(:checked)~.dsm-control-label::before {
    border-color: #06C270
}

.dsm-was-invalid .dsm-file-input~.dsm-file-label {
    border-color: #06C270;
    box-shadow: 0 0 0 .0625rem #06C270
}

.dsm-was-invalid .dsm-file-input:focus~.dsm-file-label {
    border-color: #06C270;
    box-shadow: 0 0 0 .0625rem rgba(6, 194, 112, 0.25)
}

.dsm-was-invalid .dsm-input-group.icon .dsm-input-group-append+.dsm-form-control[readonly]:hover {
    border-color: #06C270
}

.dsm-was-invalid .dsm-input-group.icon .dsm-input-group-append+.dsm-form-control[readonly]:focus {
    border-color: #06C270;
    box-shadow: 0 0 0 .0625rem #06C270
}

.dsm-invalid-text {
    width: 100%;
    margin-top: 0.25rem;
    font-size: .75rem;
    color: #06C270
}

.dsm-was-invalid .dsm-form-control {
    border-color: #F04E4E;
    box-shadow: 0 0 0 .0625rem #F04E4E
}

.dsm-was-invalid .dsm-form-control:focus {
    border-color: #F04E4E;
    box-shadow: 0 0 0 .0625rem #F04E4E
}

.dsm-was-invalid .dsm-select {
    border-color: #F04E4E;
    box-shadow: 0 0 0 .0625rem #F04E4E
}

.dsm-was-invalid .dsm-select:focus {
    border-color: #F04E4E;
    box-shadow: 0 0 0 .0625rem #F04E4E
}

.dsm-was-invalid .dsm-form-check-input~.dsm-form-check-label {
    color: #F04E4E
}

.dsm-was-invalid .dsm-control-input~.dsm-control-label {
    color: #F04E4E;
    box-shadow: none
}

.dsm-was-invalid .dsm-control-input~.dsm-control-label::before {
    border-color: #F04E4E
}

.dsm-was-invalid .dsm-control-input:checked~.dsm-control-label::before {
    border-color: #fd0826;
    background-color: #fd0826
}

.dsm-was-invalid .dsm-control-input:focus~.dsm-control-label::before {
    box-shadow: 0 0 0 .0625rem rgba(240, 78, 78, 0.25)
}

.dsm-was-invalid .dsm-control-input:focus:not(:checked)~.dsm-control-label::before {
    border-color: #F04E4E
}

.dsm-was-invalid .dsm-file-input~.dsm-file-label {
    border-color: #F04E4E;
    box-shadow: 0 0 0 .0625rem #F04E4E
}

.dsm-was-invalid .dsm-file-input:focus~.dsm-file-label {
    border-color: #F04E4E;
    box-shadow: 0 0 0 .0625rem rgba(240, 78, 78, 0.25)
}

.dsm-was-invalid .dsm-input-group.icon .dsm-input-group-append+.dsm-form-control[readonly]:hover {
    border-color: #F04E4E
}

.dsm-was-invalid .dsm-input-group.icon .dsm-input-group-append+.dsm-form-control[readonly]:focus {
    border-color: #F04E4E;
    box-shadow: 0 0 0 .0625rem #F04E4E
}

.dsm-invalid-text {
    width: 100%;
    margin-top: 0.25rem;
    font-size: .75rem;
    color: #F04E4E
}

.dsm-form-inline {
    display: flex;
    flex-flow: row wrap;
    align-items: center
}

@media (min-width: 576px) {
    .dsm-form-inline label {
        display: flex;
        margin-bottom: 0;
        align-items: center;
        justify-content: center
    }

    .dsm-form-inline .dsm-form-group {
        display: flex;
        margin-bottom: 0;
        flex: 0 0 auto;
        flex-flow: row wrap;
        align-items: center
    }

    .dsm-form-inline .dsm-form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .dsm-form-inline .dsm-form-control-plaintext {
        display: inline-block
    }

    .dsm-form-inline .dsm-input-group,
    .dsm-form-inline .custom-select {
        width: auto
    }

    .dsm-form-inline .dsm-form-check {
        display: flex;
        width: auto;
        padding-left: 0;
        align-items: center;
        justify-content: center
    }

    .dsm-form-inline .dsm-form-check-input {
        position: relative;
        margin-top: 0;
        margin-right: .25rem;
        margin-left: 0;
        flex-shrink: 0
    }

    .dsm-form-inline .dsm-control {
        align-items: center;
        justify-content: center
    }

    .dsm-form-inline .dsm-control-label {
        margin-bottom: 0
    }
}

.dsm-form-inline .dsm-form-check {
    width: 100%
}

.dsm-btn {
    display: inline-block;
    font-weight: 400;
    color: #000;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    outline: 0;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: .4375rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem
}

.dsm-btn:hover {
    color: #000;
    text-decoration: none
}

.dsm-btn.focus {
    outline: 0;
    box-shadow: 0 0 .0625rem 0 #2D5798
}

.dsm-btn.disabled,
.dsm-btn:disabled {
    cursor: not-allowed
}

.dsm-btn.border {
    border-color: #dadada !important
}

.dsm-btn-icon {
  padding: .4375rem 11px
}

a.dsm-btn.disabled,
fieldset:disabled a.dsm-btn {
    pointer-events: none
}

.dsm-btn-primary {
    color: #fff;
    background-color: #2D5798;
    border-color: #2D5798
}

.dsm-btn-primary:hover {
    color: #fff;
    background-color: #3362ac;
    border-color: #396ebf
}

.dsm-btn-primary:not(:disabled):not(.disabled).hover {
    color: #fff;
    background-color: #3362ac;
    border-color: #396ebf
}

.dsm-btn-primary.focus {
    box-shadow: 0 0 0 .0625rem rgba(77, 112, 167, 0.5)
}

.dsm-btn-primary.disabled,
.dsm-btn-primary:disabled {
    color: #ccc;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-btn-primary:not(:disabled):not(.disabled):active,
.show>.dsm-btn-primary.dsm-dropdown-toggle {
    color: #fff;
    background-color: #214071;
    border-color: #1e3b67
}

.dsm-btn-secondary {
    color: #2b2b2b;
    background: #fff;
    border-color: #dadada
}

.dsm-btn-secondary:hover {
    color: #5c89cf;
    border-color: #5c89cf
}

.dsm-btn-secondary:not(:disabled):not(.disabled).hover {
    color: #5c89cf;
    border-color: #5c89cf
}

.dsm-btn-secondary.focus {
    box-shadow: 0 0 0 .0625rem rgba(255, 255, 255, 0.5)
}

.dsm-btn-secondary.disabled,
.dsm-btn-secondary:disabled {
    color: #c2c2c2;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-btn-secondary:not(:disabled):not(.disabled):active,
.show>.dsm-btn-secondary.dsm-dropdown-toggle {
  color: #2D5798;
  border-color: #2D5798
}

.dsm-btn-secondary:not(:disabled):not(.disabled).active {
    color: #2D5798;
    border-color: #2D5798
}

.dsm-btn-danger {
    color: #fff;
    background-color: #F04E4E;
    border-color: #F04E4E
}

.dsm-btn-danger:hover {
    color: #fff;
    background-color: #f26666;
    border-color: #f47d7d
}

.dsm-btn-danger:not(:disabled):not(.disabled).hover {
    color: #fff;
    background-color: #f26666;
    border-color: #f47d7d
}

.dsm-btn-danger.focus {
    box-shadow: 0 0 0 .0625rem rgba(242, 105, 105, 0.5)
}

.dsm-btn-danger.disabled,
.dsm-btn-danger:disabled {
    color: #ccc;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-btn-danger:not(:disabled):not(.disabled):active,
.show>.dsm-btn-danger.dsm-dropdown-toggle {
    color: #fff;
    background-color: #ec1f1f;
    border-color: #ea1414
}

.dsm-btn-success {
    color: #fff;
    background-color: #06C270;
    border-color: #06C270
}

.dsm-btn-success:hover {
    color: #fff;
    background-color: #07db7e;
    border-color: #08f38d
}

.dsm-btn-success:not(:disabled):not(.disabled).hover {
    color: #fff;
    background-color: #07db7e;
    border-color: #08f38d
}

.dsm-btn-success.focus {
    box-shadow: 0 0 0 .0625rem rgba(43, 203, 133, 0.5)
}

.dsm-btn-success.disabled,
.dsm-btn-success:disabled {
    color: #c2c2c2;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-btn-success:not(:disabled):not(.disabled):active,
.show>.dsm-btn-success.dsm-dropdown-toggle {
    color: #fff;
    background-color: #049153;
    border-color: #04844c
}

.dsm-btn-warning {
    color: #1a1a1a;
    background-color: #FFC700;
    border-color: #FFC700
}

.dsm-btn-warning:hover {
    color: #1a1a1a;
    background-color: #ffcd1a;
    border-color: #ffd233
}

.dsm-btn-warning:not(:disabled):not(.disabled).hover {
    color: #1a1a1a;
    background-color: #ffcd1a;
    border-color: #ffd233
}

.dsm-btn-warning.focus {
    box-shadow: 0 0 0 .0625rem rgba(221, 173, 4, 0.5)
}

.dsm-btn-warning.disabled,
.dsm-btn-warning:disabled {
    color: #ccc;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-btn-warning:not(:disabled):not(.disabled):active,
.show>.dsm-btn-warning.dsm-dropdown-toggle {
    color: #1a1a1a;
    background-color: #cc9f00;
    border-color: #bf9500
}

.dsm-btn-light {
    color: #1a1a1a;
    background-color: #e6e6e6;
    border-color: #e6e6e6
}

.dsm-btn-light:hover {
    color: #1a1a1a;
    background-color: #f2f2f2;
    border-color: #fff
}

.dsm-btn-light:not(:disabled):not(.disabled).hover {
    color: #1a1a1a;
    background-color: #f2f2f2;
    border-color: #fff
}

.dsm-btn-light.focus {
    box-shadow: 0 0 0 .0625rem rgba(199, 199, 199, 0.5)
}

.dsm-btn-light.disabled,
.dsm-btn-light:disabled {
    color: #ccc;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-btn-light:not(:disabled):not(.disabled):active,
.show>.dsm-btn-light.dsm-dropdown-toggle {
    color: #1a1a1a;
    background-color: #ccc;
    border-color: #c6c6c6
}

.dsm-btn-sategray {
    color: #1a1a1a;
    background-color: #999;
    border-color: #999
}

.dsm-btn-sategray:hover {
    color: #fff;
    background-color: #a6a6a6;
    border-color: #b3b3b3
}

.dsm-btn-sategray:not(:disabled):not(.disabled).hover {
    color: #fff;
    background-color: #a6a6a6;
    border-color: #b3b3b3
}

.dsm-btn-sategray.focus {
    box-shadow: 0 0 0 .0625rem rgba(134, 134, 134, 0.5)
}

.dsm-btn-sategray.disabled,
.dsm-btn-sategray:disabled {
    color: #c2c2c2;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-btn-sategray:not(:disabled):not(.disabled):active,
.show>.dsm-btn-sategray.dsm-dropdown-toggle {
    color: #fff;
    background-color: gray;
    border-color: #797979
}

.dsm-btn-dark {
    color: #fff;
    background-color: #333;
    border-color: #333
}

.dsm-btn-dark:hover {
    color: #fff;
    background-color: #404040;
    border-color: #4d4d4d
}

.dsm-btn-dark:not(:disabled):not(.disabled).hover {
    color: #fff;
    background-color: #404040;
    border-color: #4d4d4d
}

.dsm-btn-dark.focus {
    box-shadow: 0 0 0 .0625rem rgba(82, 82, 82, 0.5)
}

.dsm-btn-dark.disabled,
.dsm-btn-dark:disabled {
    color: #c2c2c2;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-btn-dark:not(:disabled):not(.disabled):active,
.show>.dsm-btn-dark.dsm-dropdown-toggle {
    color: #fff;
    background-color: #1a1a1a;
    border-color: #131313
}

.dsm-btn-black {
    color: #fff;
    background-color: #000;
    border-color: #000
}

.dsm-btn-black:hover {
    color: #fff;
    background-color: #000;
    border-color: #000
}

.dsm-btn-black:not(:disabled):not(.disabled).hover {
    color: #fff;
    background-color: #000;
    border-color: #000
}

.dsm-btn-black.focus {
    box-shadow: 0 0 0 .0625rem rgba(38, 38, 38, 0.5)
}

.dsm-btn-black.disabled,
.dsm-btn-black:disabled {
    color: #c2c2c2;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-btn-black:not(:disabled):not(.disabled):active,
.show>.dsm-btn-black.dsm-dropdown-toggle {
    color: #fff;
    background-color: #000;
    border-color: #000
}

.dsm-btn-outline-primary {
    color: #2D5798;
    border-color: #2D5798
}

.dsm-btn-outline-primary:hover {
    color: #fff;
    background-color: #2D5798;
    border-color: #2D5798
}

.dsm-btn-outline-primary.focus {
    box-shadow: 0 0 0 .0625rem rgba(45, 87, 152, 0.5)
}

.dsm-btn-outline-primary.disabled,
.dsm-btn-outline-primary:disabled {
    color: #2D5798;
    background-color: transparent
}

.dsm-btn-outline-primary:not(:disabled):not(.disabled):active,
.dsm-btn-outline-primary:not(:disabled):not(.disabled).active,
.show>.dsm-btn-outline-primary.dsm-dropdown-toggle {
    color: #fff;
    background-color: #2D5798;
    border-color: #2D5798
}

.dsm-btn-outline-secondary {
    color: #fff;
    border-color: #fff
}

.dsm-btn-outline-secondary:hover {
    color: #1a1a1a;
    background-color: #fff;
    border-color: #fff
}

.dsm-btn-outline-secondary.focus {
    box-shadow: 0 0 0 .0625rem rgba(255, 255, 255, 0.5)
}

.dsm-btn-outline-secondary.disabled,
.dsm-btn-outline-secondary:disabled {
    color: #fff;
    background-color: transparent
}

.dsm-btn-outline-secondary:not(:disabled):not(.disabled):active,
.dsm-btn-outline-secondary:not(:disabled):not(.disabled).active,
.show>.dsm-btn-outline-secondary.dsm-dropdown-toggle {
    color: #1a1a1a;
    background-color: #fff;
    border-color: #fff
}

.dsm-btn-outline-danger {
    color: #F04E4E;
    border-color: #F04E4E
}

.dsm-btn-outline-danger:hover {
    color: #fff;
    background-color: #F04E4E;
    border-color: #F04E4E
}

.dsm-btn-outline-danger.focus {
    box-shadow: 0 0 0 .0625rem rgba(240, 78, 78, 0.5)
}

.dsm-btn-outline-danger.disabled,
.dsm-btn-outline-danger:disabled {
    color: #F04E4E;
    background-color: transparent
}

.dsm-btn-outline-danger:not(:disabled):not(.disabled):active,
.dsm-btn-outline-danger:not(:disabled):not(.disabled).active,
.show>.dsm-btn-outline-danger.dsm-dropdown-toggle {
    color: #fff;
    background-color: #F04E4E;
    border-color: #F04E4E
}

.dsm-btn-outline-success {
    color: #06C270;
    border-color: #06C270
}

.dsm-btn-outline-success:hover {
    color: #fff;
    background-color: #06C270;
    border-color: #06C270
}

.dsm-btn-outline-success.focus {
    box-shadow: 0 0 0 .0625rem rgba(6, 194, 112, 0.5)
}

.dsm-btn-outline-success.disabled,
.dsm-btn-outline-success:disabled {
    color: #06C270;
    background-color: transparent
}

.dsm-btn-outline-success:not(:disabled):not(.disabled):active,
.dsm-btn-outline-success:not(:disabled):not(.disabled).active,
.show>.dsm-btn-outline-success.dsm-dropdown-toggle {
    color: #fff;
    background-color: #06C270;
    border-color: #06C270
}

.dsm-btn-outline-warning {
    color: #FFC700;
    border-color: #FFC700
}

.dsm-btn-outline-warning:hover {
    color: #1a1a1a;
    background-color: #FFC700;
    border-color: #FFC700
}

.dsm-btn-outline-warning.focus {
    box-shadow: 0 0 0 .0625rem rgba(255, 199, 0, 0.5)
}

.dsm-btn-outline-warning.disabled,
.dsm-btn-outline-warning:disabled {
    color: #FFC700;
    background-color: transparent
}

.dsm-btn-outline-warning:not(:disabled):not(.disabled):active,
.dsm-btn-outline-warning:not(:disabled):not(.disabled).active,
.show>.dsm-btn-outline-warning.dsm-dropdown-toggle {
    color: #1a1a1a;
    background-color: #FFC700;
    border-color: #FFC700
}

.dsm-btn-outline-light {
    color: #e6e6e6;
    border-color: #e6e6e6
}

.dsm-btn-outline-light:hover {
    color: #1a1a1a;
    background-color: #e6e6e6;
    border-color: #e6e6e6
}

.dsm-btn-outline-light.focus {
    box-shadow: 0 0 0 .0625rem rgba(230, 230, 230, 0.5)
}

.dsm-btn-outline-light.disabled,
.dsm-btn-outline-light:disabled {
    color: #e6e6e6;
    background-color: transparent
}

.dsm-btn-outline-light:not(:disabled):not(.disabled):active,
.dsm-btn-outline-light:not(:disabled):not(.disabled).active,
.show>.dsm-btn-outline-light.dsm-dropdown-toggle {
    color: #1a1a1a;
    background-color: #e6e6e6;
    border-color: #e6e6e6
}

.dsm-btn-outline-sategray {
    color: #999;
    border-color: #999
}

.dsm-btn-outline-sategray:hover {
    color: #1a1a1a;
    background-color: #999;
    border-color: #999
}

.dsm-btn-outline-sategray.focus {
    box-shadow: 0 0 0 .0625rem rgba(153, 153, 153, 0.5)
}

.dsm-btn-outline-sategray.disabled,
.dsm-btn-outline-sategray:disabled {
    color: #999;
    background-color: transparent
}

.dsm-btn-outline-sategray:not(:disabled):not(.disabled):active,
.dsm-btn-outline-sategray:not(:disabled):not(.disabled).active,
.show>.dsm-btn-outline-sategray.dsm-dropdown-toggle {
    color: #1a1a1a;
    background-color: #999;
    border-color: #999
}

.dsm-btn-outline-dark {
    color: #333;
    border-color: #333
}

.dsm-btn-outline-dark:hover {
    color: #fff;
    background-color: #333;
    border-color: #333
}

.dsm-btn-outline-dark.focus {
    box-shadow: 0 0 0 .0625rem rgba(51, 51, 51, 0.5)
}

.dsm-btn-outline-dark.disabled,
.dsm-btn-outline-dark:disabled {
    color: #333;
    background-color: transparent
}

.dsm-btn-outline-dark:not(:disabled):not(.disabled):active,
.dsm-btn-outline-dark:not(:disabled):not(.disabled).active,
.show>.dsm-btn-outline-dark.dsm-dropdown-toggle {
    color: #fff;
    background-color: #333;
    border-color: #333
}

.dsm-btn-outline-black {
    color: #000;
    border-color: #000
}

.dsm-btn-outline-black:hover {
    color: #fff;
    background-color: #000;
    border-color: #000
}

.dsm-btn-outline-black.focus {
    box-shadow: 0 0 0 .0625rem rgba(0, 0, 0, 0.5)
}

.dsm-btn-outline-black.disabled,
.dsm-btn-outline-black:disabled {
    color: #000;
    background-color: transparent
}

.dsm-btn-outline-black:not(:disabled):not(.disabled):active,
.dsm-btn-outline-black:not(:disabled):not(.disabled).active,
.show>.dsm-btn-outline-black.dsm-dropdown-toggle {
    color: #fff;
    background-color: #000;
    border-color: #000
}

.dsm-btn-link {
    font-weight: 400;
    color: #2D5798;
    text-decoration: none;
    padding: 0;
    min-width: auto
}

.dsm-btn-link:hover {
    color: #497bc9;
}

.dsm-btn-link:active {
    color: #162a49
  }

.dsm-btn-link:not(:disabled):not(.disabled).hover {
    color: #497bc9;
}

.dsm-btn-link:focus,
.dsm-btn-link.focus {
    box-shadow: none
}

.dsm-btn-link:disabled,
.dsm-btn-link.disabled {
    color: #c2c2c2;
    pointer-events: none
}

.dsm-btn-lg,
.dsm-btn-group-lg>.dsm-btn {
    padding: .75rem 1.25rem;
    font-size: 1.57143rem;
    line-height: 1.8;
    border-radius: .5rem
}

.dsm-btn-sm,
.dsm-btn-group-sm>.dsm-btn {
    padding: .4375rem 1rem;
    font-size: .875rem;
    line-height: 1rem;
    min-width: 5rem;
    border-radius: .25rem
}

.dsm-btn-sm.dsm-btn-icon,
.dsm-btn-group-sm>.dsm-btn-icon.dsm-btn {
    padding: .4375rem;
    min-width: none
}

.dsm-btn-sm.dsm-btn-icon>i,
.dsm-btn-group-sm>.dsm-btn-icon.dsm-btn>i {
    font-size: 16px;
    line-height: 1
}

.dsm-btn-xs {
  padding: .25rem .625rem;
  font-size: .75rem;
  line-height: 1rem;
  min-width: 2.875rem;
  border-radius: .25rem
}

.dsm-btn-block {
    display: block;
    width: 100%
}

.dsm-btn-block+.dsm-btn-block {
    margin-top: .5rem
}

.dsm-btn-normal {
    min-width: 90px
}

.dsm-btn-icon {
  padding: .4375rem 11px
}

.dsm-btn-alert-warning {
    padding: 0.25rem 0.75rem;
    background-color: #532E00;
    color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5)
}

.dsm-btn-alert-warning:hover {
    color: #fff;
    opacity: .8
}

.dsm-btn-outline-alert-warning {
    padding: 0.25rem 0.75rem;
    border: 1px solid #532E00;
    background-color: transparent;
    color: #532E00
}

.dsm-btn-outline-alert-warning:hover {
    opacity: .8
}

.dsm-btn-only.dsm-btn-normal {
    min-width: auto
}

.dsm-btn-only.dsm-btn-sm,
.dsm-btn-group-sm>.dsm-btn-only.dsm-btn {
    min-width: 2rem
}

.dsm-btn-only>i {
    margin-right: 0
}

input[type="submit"].dsm-btn-block,
input[type="reset"].dsm-btn-block,
input[type="button"].dsm-btn-block {
    width: 100%
}

.dsm-dropzone {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    min-height: 200px;
    margin-bottom: 1rem;
    padding: 1rem 1rem;
    transition: border-color .35s ease-out;
    border: 2px dashed #e6e6e6;
    border-radius: .3125rem;
    background-color: #f1f1f1
}

.dsm-dropzone .note {
    font-size: .75rem;
    margin-top: .5rem;
    margin-bottom: 0
}

.dsm-dropzone:hover {
    border-color: rgba(230, 230, 230, 0.5)
}

.dsm-dropzone:focus {
    outline: none
}

.dsm-dropzone.dsm-dropzone-error,
.dsm-dropzone.dsm-dropzone-error:hover {
    border-color: #F04E4E
}

.dsm-dropzone.dsm-dropzone-success,
.dsm-dropzone.dsm-dropzone-success:hover {
    border-color: #06C270
}

.dsm-dropzone.dsm-dropzone-error .dsm-message-type .refreshing-loader,
.dsm-dropzone.dsm-dropzone-success .dsm-message-type .refreshing-loader {
    font-family: 'ds';
    font-size: 2rem
}

.dsm-dropzone.dsm-dropzone-error .dsm-message-type .refreshing-loader:before {
    content: '\e9ab';
    color: #F04E4E
}

.dsm-dropzone.dsm-dropzone-success .dsm-message-type .refreshing-loader:before {
    content: '\e943';
    color: #2D5798
}

.dsm-dropzone.dsm-dropzone-loading .dsm-message,
.dsm-dropzone.dsm-dropzone-error .dsm-message,
.dsm-dropzone.dsm-dropzone-success .dsm-message {
    display: none;
    transform: all 1s linear
}

.dsm-dropzone.dsm-dropzone-loading .dsm-message-loading,
.dsm-dropzone.dsm-dropzone-error .dsm-message-loading,
.dsm-dropzone.dsm-dropzone-success .dsm-message-loading {
    display: block
}

.dsm-dropzone.dsm-dropzone-loading .refreshing-loader:not(:required) {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 6px 0 5px;
    animation: spin 1000ms infinite linear;
    text-indent: 100%;
    color: transparent;
    border: 3px solid gray;
    border-left-color: transparent;
    border-radius: 50%
}

.dsm-dropzone.dsm-dropzone-loading .refreshing-loader:not(:required):after {
    position: absolute;
    display: block;
    overflow: hidden;
    width: 0;
    height: 0;
    margin-top: 18px;
    margin-left: 0;
    content: '';
    border: 4px solid transparent;
    border-top-color: gray;
    border-left-color: gray
}

.dsm-dropzone.dsm-dropzone-white {
    background-color: #fff
}

.dsm-dropzone.dsm-clickable {
    cursor: pointer
}

.dsm-dropzone.dsm-clickable .dz-message {
    cursor: pointer
}

.dsm-dropzone .dsm-message {
    margin: auto;
    padding: 1rem .5rem;
    text-align: center;
    filter: none
}

.dsm-dropzone .dsm-message.dsm-message-custom-icon {
    padding: 0
}

.dsm-dropzone .dsm-message.dsm-message-custom-icon:before {
    content: ''
}

.dsm-dropzone .dsm-message.dsm-message-custom-icon>i {
    font-size: 2.5rem;
    color: #2D5798
}

.dsm-dropzone .dsm-message.dsm-message-custom-icon .note {
    margin-top: 1rem
}

.dsm-dropzone .dsm-message:before {
    font-family: 'ds';
    font-size: 2.5rem;
    content: '\e9f4';
    color: #2D5798
}

.dsm-dropzone .dsm-message:focus {
    outline: none
}

.dsm-dropzone .dsm-message-loading {
    display: none;
    margin: auto;
    padding: 0;
    transform: all 1s linear;
    text-align: center
}

.dsm-dropzone .dsm-message-loading .dsm-message-type {
    position: relative;
    width: 90px;
    margin: auto;
    padding: 1rem 0 2rem;
    text-align: center;
    border: 1px solid #dadada;
    border-radius: .125rem;
    background-color: #e6e6e6
}

.dsm-dropzone .dsm-message-loading .dsm-message-type:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5rem;
    content: '';
    background: #fff
}

.dsm-dropzone .dsm-remove {
    font-size: 1rem;
    position: absolute;
    top: .35rem;
    right: .35rem;
    display: block;
    padding: .5rem .75rem;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    color: #b3b3b3;
    touch-action: manipulation
}

.dsm-dropzone .dsm-remove>i {
    font-weight: 600
}

.dsm-dropzone-inline {
    display: flex;
    flex-wrap: wrap
}

.dsm-dropzone-inline .dsm-dropzone {
    width: 225px;
    min-height: 200px;
    margin-right: 1rem
}

.dsm-dropzone-wrap {
    display: flex;
    flex-wrap: wrap
}

.dsm-dropzone-wrap .dsm-dropzone-item {
    font-size: .875rem;
    position: relative;
    width: 225px;
    margin: 0 1rem 1rem 0;
    transition: background-color .3s;
    border: 1px solid #dadada;
    border-radius: .25rem;
    background-color: #fff
}

.dsm-dropzone-wrap .dsm-dropzone-item-wrapper {
    position: relative;
    height: 150px
}

.dsm-dropzone-wrap .dsm-dropzone-item-wrapper-action {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    display: none;
    align-items: center;
    justify-content: center;
    content: '';
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    background: rgba(0, 0, 0, 0.5)
}

.dsm-dropzone-wrap .dsm-dropzone-item-wrapper:hover .dsm-dropzone-item-wrapper-action,
.dsm-dropzone-wrap .dsm-dropzone-item-wrapper.hover .dsm-dropzone-item-wrapper-action {
    display: flex
}

.dsm-dropzone-wrap .dsm-dropzone-item-picture>img {
    width: 100%;
    height: 100%;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.dsm-dropzone-wrap .dsm-dropzone-item-docx,
.dsm-dropzone-wrap .dsm-dropzone-item-ppt,
.dsm-dropzone-wrap .dsm-dropzone-item-pdf,
.dsm-dropzone-wrap .dsm-dropzone-item-xls,
.dsm-dropzone-wrap .dsm-dropzone-item-unknown {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #dadada;
    background-color: rgba(230, 230, 230, 0.45)
}

.dsm-dropzone-wrap .dsm-dropzone-item-docx>img,
.dsm-dropzone-wrap .dsm-dropzone-item-ppt>img,
.dsm-dropzone-wrap .dsm-dropzone-item-pdf>img,
.dsm-dropzone-wrap .dsm-dropzone-item-xls>img,
.dsm-dropzone-wrap .dsm-dropzone-item-unknown>img {
    width: auto;
    height: 72px
}

.dsm-dropzone-wrap .dsm-dropzone-item-remove {
    position: absolute;
    top: .5rem;
    right: .5rem;
    padding: 0.5rem
}

.dsm-dropzone-wrap .dsm-dropzone-item-remove .ds-trash {
    display: block;
    font-size: .875rem
}

.dsm-dropzone-wrap .dsm-dropzone-item-info {
    position: relative;
    padding: 0.75rem
}

.dsm-dropzone-wrap .dsm-dropzone-item-info p {
    overflow: hidden;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: .75rem;
    line-height: 1.5
}

.dsm-dropzone-wrap .dsm-dropzone-item-info-subtitle {
    color: #666
}

.dsm-dropzone-wrap .dsm-dropzone-item-info-title {
    font-weight: 600
}

.dsm-photo-gallery-photo {
    padding: 1.5rem
}

.dsm-photo-gallery-photo .dsm-dropzone-item {
    width: calc((100% - 1.5rem)/3);
    margin: 0 .5rem .5rem 0
}

.dsm-photo-gallery-photo .dsm-dropzone-item .dsm-dropzone-item-wrapper {
    height: 120px
}

.dsm-files {
    width: 80px;
    height: 72px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

.dsm-files.dsm-files-unknown {
    width: 72px;
    background-image: url("data:image/png;base64,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")
}

.dsm-files.dsm-files-xls {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAACQCAYAAAH4slAWAAAABGdBTUEAALGPC/xhBQAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAAoKADAAQAAAABAAAAkAAAAAAlBYM1AAASBElEQVR4Ae2dCXQURRqA/55MDshBFAnBQEARlxvxQHDJWxXQCB6gLKgosuABeIPIIUcQhOVcgUV3PdHFRcB1lcOgiCDgsrCKTzBA1PjkMoBCTAIBMkl6uzp0093TNdM91ddM/n4vr+v466+/vv5T3dNVXcUB5chY0J+nZEHDzu1oWeDTywmlTE9emaarUClgNmy5Qj+xIGVUVxWviv2Hggyr37xpUJpegl+rTE+IpFWUlMpZccd+lsPagOVNDlJYPm+bWKl01loQLh6kMFyBcPniRVEKpY7uBsQ6clYeydt+Dkjxs43TpGDQOchCSVlwk/l4gHN/vHCm/KkUvj34haAazSZwRt0muaBM1h24o7Uc1gZUFmozI4lzeoUyc9uq/nO0Mg2yG2mT5LjlFnpfoS7DxgsHTOP5mokyGEUgVG+dlsA10G0yTZlCr26wrJIv1VWoK20w0XKF/rTR3V6u4fnhSgO0PXa9rCbA+eOUItSwX6tMT/L04WKAtFQxK1RvTQQsb7JKobLLUob1rKalqTpYqXMlwtoOlqZAm65SqM1UxqUeO1RvTeQNK6ztrYUSfMiOSH1RpO5f2XSllUbCqoui5KYMG1EkyagUSoksZ93eJlSPHaq3JoZYbqH3Feoy1LsooXpxPXllWqheXimnFzaMMNK7gl6lZtIMG2hGqZWynjeQ07vjMRFokFatLZ/arrk2yXDc0B3UsDYiyPPG7t0GlVLvJtIN9OTZCmgyoYesbk7fp2F4zgAxHml/LiszEKD6IKl858G9kJJYH0rnfCGqKpz8oWjcYytmRnzDNmCTSiTs75PLGjWDr8etkAuFpXbuYUouIARS27dQRk2FqZdY0rLxydfF4J7iImjbpCW0zWwJe44USdlB5+Rth4PSzmbUPgEGZRhICGmg5IcStal9RsL2MUuhuqYa0sd0N6CeXSTsJTZbhfKnqlQ21E9WSYZ2pv6T0Ao4ne6Pj/c3DwSq9ltWsQ++1epKLyrXJhmOG36aCfWUGK62cE+Rocp7/hLHjoEpXGqDUJfCrjzDPkgMyFj4x3LhYSDFrDERPVFz3K69OXmdDBvI8mY8IgPPUYgdHzR7Wa2SR4KsJJEgK0HxeTBldNezwENCKGXad5taWZ/fD0lZmdpk5rjlz4Ng9c9O5iZqFVj8sxP/SbSAzcapBMkPJulHk1IpLV0pY2WYamBVdZVYz/FZm+X6Phq5WAzvPfKjnGZ3gGrgBc/miHUn+IURz3NHTssrxVCXOYOkJNvPVANJzZPX1BIjl/XE7C2iMZnjb7TdKGUFIQ38y8alsmx8XO1v/FOVp+U0JwIh3ywQA6avewUm5j4s2iK9YQhlmDRIo5QJN2CjlNWGQxIkwpJxJKz3X03S1YdimN7AcD1tGF9KD2mgZBAht2r3JtGOfzwwQ22PzTGqga0aZauqHrRkvBjv2/EGVbrdEaqBO8ctF+tW+t2jy2vpSWTtNo7ot/xpps693aJeYicun5E6PG9g2I7aSCslGa6GrxZGZPdKcemM7wclEm6cPe+DaCCrWyDB2CbIwUHDr4DNkMhY2L9GeNdji26aHSyvmWk6w6ZzXC/L/0dqBwKchRe2oXYJ8Px6ywFGMopiV/uc0Gs9QCes9lAdCJDxYiBABMhIgLE4eiAjQPEHu9Evc4zUFW4sz4gOSSah4QXgT0mWop48+88NcHrSuMrjJVAZqB2mCWdguG8+wpWPNN8XbnQ4UsV1pRz2gYxXGgEyAjT91rdPuxx4d+hsVbWX5d0KR8uPq9KkiHYYpe30fnCw5IiUHfVn0x64tmALZD3XU9XwH/LWwKUNm6rSfJwvaLiRjFPFEjzSYNMASaGyM6eCvi74ZsJK6Jh1OcmGhskNoHRu7RcJJE4mPCgH+UharBwRAZQar4Xyxai34Inr74Wfnl8nicDHe/8D0oQMOTGGApaMvv4wZQ00TmsYhKX3S4/ClqKdQemmEnQ+R9Erz/KJip4+o2mmbyJ6ivXgEbnFAydAxxn99YoYTtP7XEavMMsnNHr6jKYx/Qv3btdddaP4/tgBVV93ScMsVb5Ro6JJLmKAO8a8A8uHzpHbuqFwO1w5a6AY1/aN5FGmfkKSLBtLgYgAEiBtMi+VObz6xfvQ95Wn5DgJaCEenbkRRubUAlYJRnnEFEDywaT2wXjCqoUw6v3znqjkoYU4q+9T8N3kVUqRqA9bche2k4LenCq9+li+ItTTZzTNlAcaVVqX5BAg49X2cRxH/2aZUXldKC5Ov0h9ptswvoZ/zUsN5qp5SC40/m0vy2e2LO22fP4Ky7fGLA1xCyD2gSxXTSiLABEgIwHG4uiBCJCRAGNx6z1QWP2A0aaoKm45wCP5BZ18cXG9oopCBMYKz38HCl/5nLP8OZDYctnCQWnl/NktwlqOHSOwLaIiTs2R5oA7KVB7sSAnbxIx1HKAwhKEPYVV/tZHRIGhkFMAZRM5jhcWavFZukQcUZ6c28aV39b1m2TIbXMowDUeeoPf8j7QIeM9UY2w3uxTCJDhUvDApyBABoCkKAJEgIwEGIujByJARgKMxdEDESAjAcbi6IEIkJEAY3H0QATISICxuDhD9YKx3bOrqqo/43m+JaM+YP5WTnjB5k9JgYQL01lNcaS8j8xKIKuHWwHPEouFt7BV5SfZL4QlxoRX4vfalA6lyRXFx2qgXlLoTYrOFXDrY0NLJpkrG21pOFDpg6RES1Varczbd2FDvmc1EnP6vA3QXFtckUaAjNgRIAJkJMBYHD2QEaCpx5hnejwAU3qrNhOFFpNz4fip89sza+3Rflcy8I0x8FHBVq1Y1MZNeeDcDW8FNXTvpA+C0qSEt+6fJgXFc0XlmZiCRxplCiApcPWsu8lJPurFJ0HT9MZyXBm484qeymjQl+6qzCiNmAZYeGw//FJ+QtXc3RPeU8VJhHyMqDyW7lgLVcIma7F2mAZIALScequKg19Y0L514xZyWpI/UfUxIskYsXy6nB9LgYgACm9uYNmX+SoOO8b8U44XTV0rh0mg69z7VPFYikQEkAB4eNnzKg7CF09wTXY7aHHhxZCWdH69q8O/HYMCYTPHWD2Yvta8uc118N6D81RsiHcSmNKh/eRVSjd89viaCRF7IAFAVuQInNvDRQKihPd8/t+k5Jg9MwEkVLIn3UyFM+fT4OdGqnCUZpj6JaLXRrIvsd6xYufHesmm0/R2etFTwrL7i54+o2nMHpg/8iXdugZceTOQxxn2Q2cnGmlHGuWZF+Rc+GMCmJF6IXRv2VlmVFz6ixwmgeIZn6risRhhAliUp37eayOszLa16GuZE3nAfui6O+V4LAYiBjiv32gVj68O7BH3w77lpZGq9Pl3jVHFYy0SEUC/8HXEw93VSzpdv2CYzGbJfz+UwySwZ+K/VfFYikQE8MjMz1QM3vta/V3N4yv/rMpvdkEmdMr6nSotViKmAQ659nZI9Ceo2v+npZNVcRKZuPqvqrSto5ao4rESMQ1w0YDabdwkALPX64NZsEn9OovIL9csHSrpiOazKYD7Jqn7NtLwaev+Tm3/PW+OVeX1FtZfTRWWj4qlg+llghMgcOknJyi7WIepf2EX7fRs1QiQ8dIgQATISICxOHpgLAP0VdYwNs/+4n5h+KdMmAiaZn9V5mtIPFBRKMydCBgpybLNrRH9NBlx+Cx1VNdSr0FMLD4N8SWG2Iltc2v5u/PjjzTEJtNx/UCTwOq6ON6FGT0AASJARgKMxdEDESAjAcbi6IEIkJEAY3H0QATISICxOHogAmQkwFgcPZAN4C7LAQpzpA+w2RQ9pdMT6+dYDrA4v6B5XYDoi+N6bV+UX2b5+0C7/IcsryxM4X1dWLc02646vKDX8eWcHW40+ecSXt4PE5aQFqcve94BaxdFr9wd644n+UGsO6DUTuKIqfHQwfJbiFSBVefaFflju9ezilU06RE+CMwuC8AWzzug0F07th1ENF3AmLCV5zt63gFjAjQ2gkoAHZCKBjOcIIAO6ARlrINKAB2QigYznCCADugEZayDSgAdkIoGM5wggA7oBGWsg0oAHZCKBjOcIIAO6ARlrINKAB2QigYznCCADugEZayDSgAdkIoGM5wgIK+ZSrZDgxp+vtc+tGbel85iisI0IogX9rjzp5xfG9viKuqUOr+4iWGgarewnZwnl0nw2tUg64pXHi+BwInfIOniTOD8cV4zMars8Ys7aHp0jQ4vkySOeLr4KIDFPaFb+zG6xdongGTevtUt412vt8b7qwC5ziiMAfgjJAwgzLaXADqgvXxRexgC6IBhAGG2vQTQAe3li9rDEEAHDAMIs+0lgA5oL1/UHoaAPBISRi6i7IS4ePhy7DK4pGFWyPILNr4DE9eot2kJWeBcJtH71dh3IV7Y4op2rPl2M2g336DJYrrzBGztASurA9BxRn/YULg9ZMuevGEQzO03KqSMNvOqZm1hl7D7cyjnm7RmMTqfFpzH4nEJ3Zrm2W3Tu1+tE/cV7tKiA7Wqq4X9hy9u0Ajy92ylykgZuW1/Dx+NXCxFg85klCJ38QhYqdlRLEjQioREK7a4PG9IYkb6+UgdCDnigIQj6QXJhtZ92udQsV7RtDVcelFTWL37c6rM4C63wZL7p1HzT1SUQtvpfeG7Y/upMpZmoAMy4bT1Fqy17O0dq6HHwoeERa6EOTeU4+6rcuHtwS/o5j7T4wFYPHCCbh5J3P7Tbmg+KReOnyqlymCGtwg46oCk6Tv2fwutpt4GtK2viUy/TjfCiqFzSFA+Zvd9Gqb0Hi7HtYFFm5ZBz0UPa5Mx7nECjjsg4XG0/Li4eX3RrwepeG5p1x1WPbJAzF9y3zQYkTOAKjtoyTiYsHohNR8zvEvA9a0z//XgfLipTbeICJ0OnIFrZt8L+08UR1TekkJpqZaokZSktm8hBevE2ZUeUEn2rtdGAXkPaPYoPPoTZD3Xy13nM2s0ygcRcN0BiUXkJfTwd+m/bLVWk9c6V8++BwLVVdosjEcZAfoQgoMNadUoGxb0V28VHqp68kt52Zf58Nl3O0KJOZKXvO2wpfWczbD2lm6pcTYoc70HHHLt7bBz3HJI9CeYat6Hwg+UvN4jTJVBYe8RcNUByfu+RQPGU6k8vmIm3PUqfYhudI/BsOGJV4F8qYZHdBJwxQFTEuvDvkkfiu/7aNjuf2sCLNm+Cj7Ztw1uXPAgTQy6NG8Ph6avh8y0i6gymOFdAo47IHGYw4LDZKVnUKn0efkx+GDXRjn/fwcK4KpZd0N1TbWcpgykJSXD91NWAxkjxiO6CDjqgM/2HCLeMn0+/WrJEF33+UNg8w9fBVEkY7ttpvUD8u6PdqwcNhdm3v4ELRvTPUhA3xNsMDR/5Esw6ZZHqJrJK5UrZg6Abw4XUmWKy36BVnm3QUlFGVXmsT/cA5ufehN8nGNNo9qCGeEJ2H6VMlIvhIPTP4HuLTtTramoPAOtp90BPx4/RJWRMkrPnBTHksnMGtrRuVlrOPxC6Ns8rSymO0vAVgfsLYznFuWthfR69HdbZOZKq6m3wrHyE4ZbfraqUphy1Q/2CaMhtEP6oXNHh+tpIpjuAQK2OSCZ4bxcM6NF295DJUfhcmFmTNmZU9qssPEavkYYB75HnIIVSnjpkJkwr9/oUCKY5yIB1ycjuNh2S6pOLqA/j0ZSQeCO1pEUi9oytvWAUUsEDXeUADqgo7ixMi0BdEAtEYw7SgAd0FHcWJmWADqglgjGHSXgAw4qHa0xlioL8XVfLDXTzrYIo7LcG3ZWEMu640twRjbr9RUn0pEV8oVFyl9jVVaXyicWn4b4koDlTW6Q3chynV5WqJrJSVbMr66qHi98Nt6LB74Z8GBumrKXW8pim3Cr9QV4iDtVDQm/ngUuYN/a0HXaAVmukV1lM3Pb0pdRsKtSF/XWNQfEX8EuOhtWDYAOiF7gKgF0QFfxY+XogOgDrhJAB3QVP1aODog+4CoBdEBX8WPl6IDoA64SQAd0FT9Wjg6IPuAqAXRAV/Fj5VHggNxJvEyxSUBY1eyk5x1QmK7zYmzix1aRa6uajuVVJBf36dCzprr6E8G+qLCXhWMdmQ3D++K4m/a+vOnTqLqgl91ybdop/uQYnoPbhbmKlwLwKSwX24tlY9EBya1WWPnsRx/HrUpLqDdn+6J8+Wv+/wNKOLpfihjVmgAAAABJRU5ErkJggg==")
}

.dsm-files.dsm-files-docx {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKIAAACQCAYAAAH8R4ArAAAABGdBTUEAALGPC/xhBQAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAAoqADAAQAAAABAAAAkAAAAADxORPyAAAUSElEQVR4Ae1dCXwVxRn/9uUkCeGQUEHOQEEgh4JAQay2QCFgMYgEr6K1tdqfgqDijfUCNaiFpB54oKZaBUQwtEKhWK1FQKggECi3QioRgRBIQkKO15l92Xmzm9njbWbzdl9mfr9kv5n55pvv++/3Zmdn55BAJ6Tn7fTrZBkm75ieJvkMOWxkZuTtmsVdKNbDEaGSbOHY503xSx83xhIYEvjuiwYLArG0iuJTkNi6rblgye93xHwi1L/qbqKFQg/q3RFemTaSpFsliFAp6wXAwq4c0hMwjcHekn8j3J6/zqoswhdNqAZi5eMTZaH1lOY4SyqrAulchZadEUe3ipHa5CRDobsPn7BVgcp8jKUSaFpJs3pFmko1VpglKfA7scSrx9Qze7Hpr4xV1idJ9xliyipkJc07QpnoD1typFV5SVmlFVNpHl9U1Bim6XaEYcH1dXV/Zwqkaw2V5i5QstooW23pVT9JQ/PKDHNJJneTiUClRcdXmiZVWySIQIv8pmyGGK7ecogIkE5YadEBiEDcLh4uuFV+RLRLipPNttNWqkzumtJa1qi0vJpoFiph2Q8zLhxhSbZKQ0slTJiYrY3d1hvXxV1D9wtkYqiHu93+u548K+nJidHJ3GG0UnEoPGcq6m93vZLYIE8oiVuew0jZrqHcAkNeKaYrrJpebMgTYiZuwPkpiISlpg88kjh8Z4hq6LOjvvAs8pRR2JSHKv2EUdKqz9VC/FV5Cit5ANO8JJMj0cgnf7dgrSx+wtBUVTWlZ6ogLjZok6K40wpiJRop+drqHbJyHz2WLV8VZdrnvCTHj757m3xtzn9BaKha57y3CR6+bihJeXNNwMfOVtfA+e0T4dXpo+Q8ForW31GJeBNC5132kYL1ckEFxVv+uEaOJ2Tny9dbszJMBPPNZiKJq2ChZJTOVy21tEY+qc52R8wHq+8JqZNhpnZiq0Df1owvlPyQFGxKDzMUpWhex8YW6Ep40B7xSR6mOijjwPKceSH5ZHpe0RYA/yAHdQqKlqSSHdMGdLKsYDheG7C2rvdFoWDQqexRAkF7uAVLuR5BCbJemAN+/0NBne1T/Ub/HKJjYuwLYJS0PFDGKMtO4txj0u3Msms3T01/0t53XD3JrvdBbymYc1kf+eX9ud/+VIU4frlSXrCUDFaaksfzqkJwyed7Zdn3TLqE1HHt5X0JHROlYifpThKmNb73wHhS//HFvyd0cxGmCtKKJCfGyVFfQydt8Wd76GxH6EYK3vf6v+SK2ifFkwrvf+NfsPOb4yRetPBmmb72mb+RNKeIRgrOW4Y6zSgcfOs3cHl6F5nO/WALpP++QKbxvwu7tie0lsAfe3j+NVJQqbANup2f5uYoUXLd98avCd0chK6CepX37txOztq4+zs9Fq7pTAVfXLmNVLJBR5Fhd79PeJwkmAre+dInpM7hlCI/mfEXkt5cBPfejNXPg1YNZCJotXBz8AkFm4oyVwTbtO7QVH0albc89BGOsUKsLVcEG5nPIUEo2FQQBYICQQUBNO2R34djRaiFq+V20IIswpL+0u5BUFsX6JqT1IgkvkAz2y91BkSbU+29CDP6ODbd9a2h24H1+6V4ASKHuyRAFCByQICDCOGJHEBUfzy56sWu4K8OjK02QXh1ZcirIVS1xcTFAVoeoUpzc0SC8QvSoK42MGXOhZqmjxtrf6Z8c9gj+R+MdjOAGIOK4tI4S6sEmwMwRh1oRmwYPiwxFPF6kniwcLiDAkQOIKqfzgyB9PfuKjTBvRU1wZ1mp/mUdL25vlpePT5Fjtuvpp545IczxIZ4agI+SURE0Ss30VFC3z95MKEV4p1ZWQopX7v+6lVV3IsRUxC7TX1NZdc/n52siuNI/+7nkbQhd71L6GduuYzQCnHDz/sppHwtPl6uinsxYgoiNupUeRWx7YoM9RqcTfOvI3nHy87C5r3fkzgm7rgyk8Rv06wpSLvtbZLnZcISiClTXlbZ+PiNw0h8SN9OhO7S8NOcOm8VSfvTHcG9Fl5pWD2iZBbZ3DdAKe+Wq+mDBStaW+8HvGpKWZT06A3D4A/vbIB/zL1GZUd1TZ0c//Mnu6GAavumjuyPPLRExTviHmsTEfgvzVGpwSGis9SHJbmDxhtHXdQNRl7cjbD2u/VNQmNi7vubSPzte8fCTs3DZ/2u5pluQpRwkLD0c8b1l1fVoGmywa0r1j6t9sL/Fpeq1Hz47cCaKyXRp0wWQwnjH12uJEfE1TKI2NrONyxkGj3xiY+Y6R+u38dM/3hzcF8AJoPHEi21iYpNJaWV8NR7G5Uoua7YcIDQNDHpqZXw5NThdBKs3HhQFY+ECPf5VbxB6dU9E5xYY8dPT8mZfbv4KegNSSG1id4wqfm19KHNwhY1f7XWa3T3TzlgR3AGRNYLS1EfRt1vsW4rd84fxZwHCVGtuMvlLRAvDw6CyFF6uOYvcjTBsijPrLG2bFGYGMWDhQPwAkQBIgcEOIgQnihA5IBAE0X4QdrtSBcH65U6cfEeNHLWp4k6urq4FCO1Pbg0p8wxEDPyih5Co4/3o31Ikl2NRMjKSfXoLa8Q7XkyUSnqCIgZeTtrEIAhDbMpCnnpOmnagKjHJKme+4MlM6/ozpYAIL7Zy/J3yXMIuYOIAGz+nevC5r5+eS4nfxAliA+bTWGqmDuIYbIjrNUKEDnAL0AUIHJAgIMI4YkCRA4IcBAhPFGAyAEBDiKEJwoQOSDAQURwpOV3C2OgpKJ7U2VWl5fHQAhnUGnrw+dXxbZy//dmWm8JJi+JgvLiavTh3lUrEpPPPx+6DwzO96aVdhONTzeMhvIjleAHVwGIQTpdUgKlxR1r2nXpXO8m0Fi6RCMAY1kZbkgr3r49pjh3tCMDxzztC7aJPKVylMV781mOqsmidsx24LBS3kp6QZ7oJ3K4SwJEASIHBDiIEJ4oQOSAAAcRhl0cq4u78do9vPSMDq0mLICqhrV+dPrVw3vDstkTSNKCFV/BjIWfkrgXCcOf877/qZea6W3oPvv64LlkCgizrrlEIVXXmRPVp9vModYAqhg9FDEE8Sl0cBsdbh/PPgNN2WOb5n0gZwgdJfSItAsIjYkf0BpprwdDEAvW7VLZp/UiVaYmkhDP96AQjXhXRQ1B1Gra8/w22iTAbZxeiKJWlmKelDbqIa631xbpFfVUuimIx04Z7/s1+/qfEIP3FJ8kNCamX3WxKj4je6Aqrm0uVJkeipiCqF1VelFqisq8i3p1JPHcpZvh0+1HSPzha9UPHC2o+4+eIrxeJkxBpM9EwIZqvYk2ftGaIsBAKuG8ZPXPN6mVa0fdFJVtXU1BRNs/qMLUUf1JfDS1fYGSuGrLNwppeF3xxX7DfC9lmoKIjalAWxcoAX8DUQLdHuKNNljht2PS5OSxg3qosrXNhCrTYxHDNxbFlmeXfAlPTL1UiaIpy2gmNvq7LC1wsg3OyCvcii9yKDlZIR8AjCMY6Nf/vhNmTFQ/VP6z/1iA2eQ/PgXH7cGSJ85Dx//Q4ZYG76LTaJ7cD4LtYreOgXnvYzSeSJf1Om0JRO07MH64DLswuKkQBoF+8/hTYfCAHhZA9BOcle+1NEsgYqPq6oIf3dJ6dJB/pnrG1lC8mOfWsekq1khqD7FhlkGcj0Zb6JA1uCeJrtzYeDcSeg+dV+8aTXgxsW5bsC+pyvBoxDKIc9//UtdEug1UmF5b5dq9fhUVuV0tg3iS2rlOW/u/ixpvWcUCFpfbavGprK3DzXHLIIZqxIGjZcwikdYeYiNDAvGN1Y1/otqBWyZyVOKHEfSmophlqbOtMD9SsB6Olqo7v6sNXvPueHEddGqfqBSP2Kvrt7nifSwh7zu5ff5QKaSfM28FIkWeAJHDnRQgChA5IMBBhPBEASIHBDiIcLUnxsWqv9FwsNcRET7wSTMckcxBaN9U9ZQTDiIdERH4YJKVh74+1W5AyzACw9COVGVdaLwvHjrFdrBeIIych1ZMob46cVIkNXvJPj/49adFcKrHLWIwiK5uE90ClJkeAkQzhCzkCxAtgGTGIkA0Q8hCvgDRAkhmLAJEM4Qs5AsQLYBkxiJANEPIQr4A0QJIZiwCRDOELOQLEC2AZMYiQDRDyEI+fxAl+K+FeiOKhTuIvi5JrjmOxOk7hZbpzMJ1cAdxf/64al+0Lzg32WlLwiRfknyLDiyf8hyuPjiLPUzKhFJt5otFI/x1sAiNV/44lHKC110IoDMc35ISE2Zu+3VPspDJE454xZuH4k+UV3yFViz0cxekQpumIIAOVXrw62kDnsEyuD9WmqKYXtkT5ZXLhBPqoePd9Hq//+mM/KIJ2AJPOCLSM6LPI/GuK3HQ3C/1xVK84ogcLBYi3IyAcEQ3350WpJtwxBZ0s91sqnBEN9+dFqSbcMQWdLPdbKpwRDffnRakm3DEFnSz3WyqcEQ3350WpJtwxBZ0s91sqnBEN9+dFqSbcMQWdLPdbKp6N6Gx8weDVDcH/NIVaHNO12wvvuNvq12BYXxyMqSk9oC2ndWbRbpCOY8rEXDEcc8/CPUwF20tGdgcVt4h1uOWOaB+1enTcGTbdvmvdccU6HGJel9cB6psMSLR1mAvFCDv+1WLsZinoRIcgFX3tJhNBXhCp5WF96jD+46rH9FaLhHXRaBX5rBzCa3baHbB12UXGRoEJJAe2P5I//nYAYUTasAJJer318eifW9CKSJ4aQSkgP+Jt2YaFEGHDQHhiGGDXlRMIyAckUZD0GFDQDhi2KAXFdMICEek0RB02BCw/cb8y6GpMPri7rqKv/PJbvhyb4luPiujMzrTQe/QXYW/+PgZyNWcL6bk6V07oqNSH7kueCqolm//d6dUh7pp80XceQRsO+KWvd9D4WPZuhoO7N0RRty7WDeflfEkOgGQdWidlnfTnhL4bEexNlk3PuuawTBNcwQtzTzpyUI6KugwIGD70YxPsGEdB6TYcOmAC2Bwnx8pUdNrp3aJlpwQC5pt0LppK4pGO9Tc8ctMbTKJ7z58AiLxSCJioEcI246I7TM7yNroqGItPo/eoP/o1PKORCf2ak+p1PIo8dvHZ0KrOP35G2Y2KHLE1VkEmuSI3xw7De+s26Wr4fU/6we4f2YWOiTHw23jMszYVPn0yceqDE3E6MdwqKQM/vJpi9sCToOQO6JNckRsglmLMnOi+VkV+EWCPl6bhmbOe5voKKHxaakDe3UkcRaBX6h6dW7LypLTIvGoRV1jXZ7RZEfc879S+ODzvbpm4peEKNRP0wttEmJh2oSLmdmL0BHkj7+7ASqp8+BpRrNWcabm+HK67NGT5bBoTRGdJOgwItBkR8S6G7WKifExjQ7Bpu19+LqhgPbLo5MInbt0M+ADtf+4XH12tMKQPbw3pHU/T4mqrhk9O8DPMrup0uiIkc40n6CbBwEujvj1oR/gr5sO6mo8Q6dlSoyLBr1HdyE6nBy3tjg8t2wLmuDCnuGi1yrqycXyTpw+Cy//9WtMiuASBLg4IrbFqL/Vt0t7yLqkRyOTH5wyFKKj2Crg1lAJpyqq4dVV25Wo6prz077Q5wJ1P7BdUhzcNAqdTKYT5ry/ScxB18EmXMlsL7ChDR5k/sfWb3VLaluo+JgouHcS+0Xmi13fwXr0R4fcpVvoqIrWjiveddVA3ZefM5XnIO+jraryIhJ+BGx/WWGpjvtdo3Q++40e2B36d2sPuw6flIveN3kwxMWyq6dbQ6Weg2ioZdm/98KkEY337LxxZH+YXfAF4OEk3Nu8K5v98oNlPb34S6irZz/mlbpCuUplVSCdUx9PH0p5wRt4P+DWImJA8We3z3fqf3pTWsUY9Di+HzkiK+wtLoWPUP+QFQxbxesDA+I3jx4AbZPiWcXhbHUNPP+hfsvKLCQSmwUBro6INTZ6G73lF2mQjIZr7r56ECSgt2lWyP0g2DfU5uNJFJ9tP6JNluP4GzWeNGE0ZDMPTZY4V1vPLC8Sw4sAd0dc89W3sBn1F1kBD9NgR3loyhBWtvw2i8cOjYLRzJtPnp0M6T1TmMVrauvgWeoFiMkkEsOGAHdHxJYYvUE/duNwSE6MYxqMWyyz3tvHmw9B0bfHmeXx27lewGORldW1etkiPcwIOOKIhWhMcQcaWwwlnKupgwUr2APXWjlGfUUtL47Xo5eTuWjIRgT3IuCII2JzjfqKLDjwkEoVckYroQBNtPgeTUOzGvILt0IZGrYRwb0IOOaIS9D3530NX0asmD/P4CWFVZ41xMPiw2l4AFsEdyPgmCNis622im+tLYJjZWdDQiq/cJs8HGNWaOHHX8MPIco2kyny+SPAHlHmVA9+hOI/JwKeDJGQne+EaCEzDAg42iKGwR5RpUcREI7o0RsXaWoLR4y0O+pRe4QjevTGRZrawhEj7Y561B7hiB69cZGmNnJE6ZtIM6o57YmNYX83b04dIqEuH/hix6DpzKGNJkeC5Rxs6HbBhRATHctBkhARDR/fuRetTEqEcfNnoU3dn0C0+Imb+EVSdFJdSnS7Wt/JSqg4ediEW2QbIeAHvzxBNPBlRZLw7Kvchr9Auay8ZES4wim7xaVsRPPDUgOKheE/ms2OHh3yMoSG2qPQjzaqXmdlYRg09GyVPklCWBpt5L5q+mm3WBedvaTeL/9W3KKR0IM3AuKtmTeiQp4tBIQj2oJNFOKNgHBE3ogKebYQEI5oCzZRiDcCwhF5Iyrk2UJAOKIt2EQh3ggIR+SNqJBnCwHhiLZgE4V4IyAckTeiQp4tBIQj2oJNFOKNgHBE3ogKebYQ8Iojimlqtm6v+wuh3WDke+sVR3zZ/ZAKDUNGAM2DTYiBt3A5TzjiwRU5L0dFRQ2UJKgJ2VhRwJUISCB9flPm5KSipTnlWMHAvrGuVJWt1BU3/zP+8KnjM9F8wKvRXx80kRLPmxTBzQhIgCa/Ssckv3+jX5JeOrQ8Z61W3f8DVPq7sDuSaHsAAAAASUVORK5CYII=")
}

.dsm-files.dsm-files-ppt {
    background-image: url("data:image/png;base64,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")
}

.dsm-files.dsm-files-pdf {
    background-image: url("data:image/png;base64,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")
}

.dragger-preview-video-dialog .preview-video {
    width: 100%;
    max-height: calc(100vh - 150px)
}

.dropup,
.dropright,
.dropdown,
.dropleft {
    position: relative
}

.dsm-dropdown-toggle {
    white-space: nowrap
}

.dsm-dropdown-toggle.dsm-dropdown-not-icon {
    padding: .1875rem .5rem;
    border-radius: .3125rem;
    font-size: 1rem;
    color: #000
}

.dsm-dropdown-toggle.dsm-dropdown-not-icon.dsm-dropdown-not-icon-md {
    padding: .5rem .75rem
}

.dsm-dropdown-toggle.dsm-dropdown-not-icon~.dsm-dropdown-menu {
    border-radius: .625rem;
    margin-top: 5px;
    padding: 0
}

.dsm-dropdown-toggle.dsm-dropdown-not-icon~.dsm-dropdown-menu .dsm-dropdown-item {
    padding: .6875rem 1rem
}

.dsm-dropdown-toggle.dsm-dropdown-not-icon~.dsm-dropdown-menu .dsm-dropdown-item:first-child:active,
.dsm-dropdown-toggle.dsm-dropdown-not-icon~.dsm-dropdown-menu .dsm-dropdown-item:first-child:hover {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem
}

.dsm-dropdown-toggle.dsm-dropdown-not-icon~.dsm-dropdown-menu .dsm-dropdown-item:last-child:active,
.dsm-dropdown-toggle.dsm-dropdown-not-icon~.dsm-dropdown-menu .dsm-dropdown-item:last-child:hover {
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem
}

.dsm-dropdown-toggle.dsm-dropdown-not-icon~.dsm-dropdown-menu:hover {
    background-color: #fafafa
}

.dsm-dropdown-toggle.dsm-dropdown-not-icon:hover {
    background: #f1f1f1;
    color: #666
}

.dsm-dropdown-toggle.dsm-dropdown-not-icon:after {
    content: none
}

.dsm-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: .875rem;
    color: #000;
    text-align: left;
    list-style: none;
    background-color: #fff;
    box-shadow: 0 0.3125rem 1rem rgba(0, 0, 0, 0.2);
    border-radius: .25rem
}

.dsm-dropdown-menu-left {
    right: auto;
    left: 0
}

.dsm-dropdown-menu-right {
    right: 0;
    left: auto
}

@media (min-width: 576px) {
    .dsm-dropdown-menu-sm-left {
        right: auto;
        left: 0
    }

    .dsm-dropdown-menu-sm-right {
        right: 0;
        left: auto
    }
}

@media (min-width: 768px) {
    .dsm-dropdown-menu-md-left {
        right: auto;
        left: 0
    }

    .dsm-dropdown-menu-md-right {
        right: 0;
        left: auto
    }
}

@media (min-width: 992px) {
    .dsm-dropdown-menu-lg-left {
        right: auto;
        left: 0
    }

    .dsm-dropdown-menu-lg-right {
        right: 0;
        left: auto
    }
}

@media (min-width: 1200px) {
    .dsm-dropdown-menu-xl-left {
        right: auto;
        left: 0
    }

    .dsm-dropdown-menu-xl-right {
        right: 0;
        left: auto
    }
}

.dropup .dsm-dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: .125rem
}

.dsm-dropdown-toggle-none::after {
    content: none
}

.dropright .dsm-dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: .125rem
}

.dropright .dsm-dropdown-toggle::after {
    vertical-align: 0
}

.dropleft .dsm-dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: .125rem
}

.dropleft .dsm-dropdown-toggle::before {
    vertical-align: 0
}

.dsm-dropdown-menu[x-placement^="top"],
.dsm-dropdown-menu[x-placement^="right"],
.dsm-dropdown-menu[x-placement^="bottom"],
.dsm-dropdown-menu[x-placement^="left"] {
    right: auto;
    bottom: auto
}

.dsm-dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid #ccc
}

.dsm-dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #1a1a1a;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

.dsm-dropdown-item a {
    color: #1a1a1a
}

.dsm-dropdown-item:hover,
.dsm-dropdown-item:focus {
    cursor: pointer;
    color: #0d0d0d;
    text-decoration: none;
    background-color: #f1f1f1
}

.dsm-dropdown-item.active,
.dsm-dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #2D5798
}

.dsm-dropdown-item.active a,
.dsm-dropdown-item:active a {
    color: #fff
}

.dsm-dropdown-item.disabled,
.dsm-dropdown-item:disabled {
    color: #666;
    pointer-events: none;
    background-color: transparent
}

.dsm-dropdown-item.disabled a,
.dsm-dropdown-item:disabled a {
    color: #666
}

.dsm-dropdown-menu.show {
    display: block
}

.dsm-dropdown-header {
    display: block;
    padding: .5rem 1.5rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #666;
    white-space: nowrap
}

.dsm-dropdown-item-text {
    display: block;
    padding: .25rem 1.5rem;
    color: #1a1a1a
}

.dsm-collapse {
    font-size: .75rem;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-bottom: none;
    background: #fff;
    border-radius: .3125rem
}

.dsm-collapse.dsm-collapse-outline {
    border: none
}

.dsm-collapse.dsm-collapse-outline .dsm-collapse-item {
    border-color: transparent
}

.dsm-collapse.dsm-collapse-outline.dsm-collapse-spacing-none .dsm-collapse-header,
.dsm-collapse.dsm-collapse-outline.dsm-collapse-spacing-none .dsm-collapse-content-box {
    padding-left: 0;
    padding-right: 0
}

.dsm-collapse.dsm-collapse-bg-light .dsm-collapse-item .dsm-collapse-content {
    background-color: #f5f5f5
}

.dsm-collapse.dsm-collapse-border-none {
    border: transparent
}

.dsm-collapse.dsm-collapse-border-none .dsm-collapse-item:last-child {
    border-bottom-color: transparent
}

.dsm-collapse.dsm-collapse-border-radius-none {
    border-radius: 0
}

.dsm-collapse.dsm-collapse-border-radius-none .dsm-collapse-item:first-child {
    border-radius: 0
}

.dsm-collapse.dsm-collapse-border-radius-none .dsm-collapse-item:first-child .dsm-collapse-header {
    border-radius: 0
}

.dsm-collapse-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125)
}

.dsm-collapse-item:first-child {
    border-top-left-radius: .3125rem;
    border-top-right-radius: .3125rem
}

.dsm-collapse-item:first-child .dsm-collapse-header {
    border-top-left-radius: .3125rem;
    border-top-right-radius: .3125rem
}

.dsm-collapse-item:last-child {
    border-bottom-left-radius: .3125rem;
    border-bottom-right-radius: .3125rem
}

.dsm-collapse-item:last-child .dsm-collapse-header.collapsed {
    border-bottom-left-radius: .3125rem;
    border-bottom-right-radius: .3125rem
}

.dsm-collapse-item.collapsed .dsm-collapse-extend-icon {
    transform: rotate(0)
}

.dsm-collapse-header {
    position: relative;
    padding: .75rem 1rem;
    padding-right: 2rem;
    cursor: pointer
}

.dsm-collapse-header-extra {
    color: rgba(0, 0, 0, 0.65)
}

.dsm-collapse-header>a {
    display: block
}

.dsm-collapse-header .dsm-collapse-title {
    font-size: .875rem
}

.dsm-collapse-header .dsm-collapse-main-title {
    font-weight: 600;
    color: #000;
    font-size: .875rem
}

.dsm-collapse-header.badge-light {
    background-color: #f5f5f5
}

.dsm-collapse-header.badge-primary.collapsed {
    background-color: #fff
}
.badge-primary {
    background-color: #2D5798
}

.dsm-collapse-header.badge-primary.collapsed .dsm-collapse-title {
    color: #000
}

.dsm-collapse-header.badge-primary .dsm-collapse-title {
    color: #fff
}

.dsm-collapse-header .float-right {
    padding-top: .1rem
}

.dsm-collapse-header .dsm-collapse-extend-icon {
    display: inline-block;
    position: absolute;
    right: 1rem;
    padding: .2rem;
    top: 50%;
    margin-top: -0.65rem;
    transition: all 0.2s ease-in-out;
    transform: rotate(180deg)
}

.dsm-collapse-header .dsm-collapse-extend-icon.circle-badge {
    background: #333;
    color: #fff;
    text-align: center;
    line-height: 1;
    border-radius: 50%
}

.dsm-collapse-header .dsm-collapse-extend-icon.circle-badge.badge-light {
    color: #333;
    background-color: #f5f5f5
}

.dsm-collapse-header .dsm-collapse-extend-icon.circle-badge.badge-light:hover {
    background-color: #e2e2e2
}

.dsm-collapse-header .dsm-collapse-extend-icon.circle-badge i {
    transform: scale(0.8);
    display: block
}

.dsm-collapse-header.collapsed .dsm-collapse-extend-icon {
    transform: rotate(180deg)
}

.dsm-collapse-header .collapsed .dsm-collapse-extend-icon {
    transform: rotate(0)
}

.dsm-collapse-header.dsm-collapse-header-light {
    background-color: #f5f5f5
}

.dsm-collapse-header.dsm-collapse-header-light .dsm-collapse-extend-icon {
    color: #333;
    background-color: #f5f5f5
}

.dsm-collapse-header.dsm-collapse-header-light .dsm-collapse-extend-icon:hover {
    background-color: #e2e2e2
}

.dsm-collapse-header.dsm-collapse-header-primary {
    background-color: #2D5798
}

.dsm-collapse-header.dsm-collapse-header-primary .dsm-collapse-main-title {
    color: #fff
}

.dsm-collapse-header.dsm-collapse-header-primary.collapsed {
    background-color: #fff
}

.dsm-collapse-header.dsm-collapse-header-primary.collapsed .dsm-collapse-title,
.dsm-collapse-header.dsm-collapse-header-primary.collapsed .dsm-collapse-main-title,
.dsm-collapse-header.dsm-collapse-header-primary.collapsed .dsm-collapse-extend-icon {
    color: #000
}

.dsm-collapse-header.dsm-collapse-header-primary .dsm-collapse-title {
    color: #fff
}

.dsm-collapse-header.dsm-collapse-header-primary .dsm-collapse-extend-icon {
    background-color: transparent
}

.dsm-collapse-content .dsm-collapse-content-box {
    padding: .5rem 1rem
}

.dsm-collapse-content .dsm-collapse-content-box .dsm-menu-ul {
    padding: 0
}

.dsm-btn-group,
.dsm-btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle
}

.dsm-btn-group>.dsm-btn,
.dsm-btn-group-vertical>.dsm-btn {
    position: relative;
    flex: 1 1 auto;
    min-width: auto
}

.dsm-btn-group>.dsm-btn.dsm-dropdown-toggle i,
.dsm-btn-group-vertical>.dsm-btn.dsm-dropdown-toggle i {
    color: inherit
}

.dsm-btn-group>.dsm-btn:hover,
.dsm-btn-group>.dsm-btn.hover,
.dsm-btn-group>.dsm-btn.dsm-btn-secondary:not(:disabled):not(.disabled).hover,
.dsm-btn-group-vertical>.dsm-btn:hover,
.dsm-btn-group-vertical>.dsm-btn.hover,
.dsm-btn-group-vertical>.dsm-btn.dsm-btn-secondary:not(:disabled):not(.disabled).hover {
    color: #2D5798;
}

.dsm-btn-group>.dsm-btn:hover,
.dsm-btn-group-vertical>.dsm-btn:hover {
    z-index: 1
}

.dsm-btn-group>.dsm-btn:focus,
.dsm-btn-group>.dsm-btn:active,
.dsm-btn-group>.dsm-btn.active,
.dsm-btn-group-vertical>.dsm-btn:focus,
.dsm-btn-group-vertical>.dsm-btn:active,
.dsm-btn-group-vertical>.dsm-btn.active {
    z-index: 1
}

.dsm-btn-group>.dsm-btn.disabled:hover,
.dsm-btn-group>.dsm-btn:disabled:hover,
.dsm-btn-group-vertical>.dsm-btn.disabled:hover,
.dsm-btn-group-vertical>.dsm-btn:disabled:hover {
    color: #c2c2c2
}

.dsm-btn-group>.dsm-btn.disabled.dsm-dropdown-toggle i,
.dsm-btn-group>.dsm-btn:disabled.dsm-dropdown-toggle i,
.dsm-btn-group-vertical>.dsm-btn.disabled.dsm-dropdown-toggle i,
.dsm-btn-group-vertical>.dsm-btn:disabled.dsm-dropdown-toggle i {
    color: #c2c2c2
}

.dsm-btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.dsm-btn-toolbar .dsm-input-group {
    width: auto
}

.dsm-btn-group>.dsm-btn:not(:first-child),
.dsm-btn-group>.dsm-btn-group:not(:first-child) {
    margin-left: -1px
}

.dsm-btn-group>.dsm-btn:not(:last-child):not(.dsm-dropdown-toggle),
.dsm-btn-group>.dsm-btn-group:not(:last-child)>.dsm-btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.dsm-btn-group>.dsm-btn:not(:first-child),
.dsm-btn-group>.dsm-btn-group:not(:first-child)>.dsm-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.dsm-dropdown-toggle-split {
    padding-right: .75rem;
    padding-left: .75rem
}

.dsm-dropdown-toggle-split::after,
.dropup .dsm-dropdown-toggle-split::after,
.dropright .dsm-dropdown-toggle-split::after {
    margin-left: 0
}

.dropleft .dsm-dropdown-toggle-split::before {
    margin-right: 0
}

.dsm-btn-sm+.dsm-dropdown-toggle-split,
.dsm-btn-group-sm>.dsm-btn+.dsm-dropdown-toggle-split {
    padding-right: .75rem;
    padding-left: .75rem
}

.dsm-btn-lg+.dsm-dropdown-toggle-split,
.dsm-btn-group-lg>.dsm-btn+.dsm-dropdown-toggle-split {
    padding-right: .9375rem;
    padding-left: .9375rem
}

.dsm-btn-group-vertical {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

.dsm-btn-group-vertical>.dsm-btn,
.dsm-btn-group-vertical>.dsm-btn-group {
    width: 100%
}

.dsm-btn-group-vertical>.dsm-btn:not(:first-child),
.dsm-btn-group-vertical>.dsm-btn-group:not(:first-child) {
    margin-top: -1px
}

.dsm-btn-group-vertical>.dsm-btn:not(:last-child):not(.dsm-dropdown-toggle),
.dsm-btn-group-vertical>.dsm-btn-group:not(:last-child)>.dsm-btn {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.dsm-btn-group-vertical>.dsm-btn:not(:first-child),
.dsm-btn-group-vertical>.dsm-btn-group:not(:first-child)>.dsm-btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.dsm-btn-group-toggle>.dsm-btn,
.dsm-btn-group-toggle>.dsm-btn-group>.dsm-btn {
    margin-bottom: 0
}

.dsm-btn-group-toggle>.dsm-btn input[type="radio"],
.dsm-btn-group-toggle>.dsm-btn input[type="checkbox"],
.dsm-btn-group-toggle>.dsm-btn-group>.dsm-btn input[type="radio"],
.dsm-btn-group-toggle>.dsm-btn-group>.dsm-btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.dsm-btn-upload-file {
    width: 240px
}

.dsm-btn-upload-file>input {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0
}

.dsm-input-group {
    position: relative;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: stretch
}

.dsm-input-group>.dsm-form-control,
.dsm-input-group>.dsm-form-control-plaintext,
.dsm-input-group>.dsm-select,
.dsm-input-group>.dsm-file {
    position: relative;
    width: 1%;
    margin-bottom: 0;
    flex: 1 1 auto
}

.dsm-input-group>.dsm-form-control+.dsm-form-control,
.dsm-input-group>.dsm-form-control+.dsm-select,
.dsm-input-group>.dsm-form-control+.dsm-file,
.dsm-input-group>.dsm-form-control-plaintext+.dsm-form-control,
.dsm-input-group>.dsm-form-control-plaintext+.dsm-select,
.dsm-input-group>.dsm-form-control-plaintext+.dsm-file,
.dsm-input-group>.dsm-select+.dsm-form-control,
.dsm-input-group>.dsm-select+.dsm-select,
.dsm-input-group>.dsm-select+.dsm-file,
.dsm-input-group>.dsm-file+.dsm-form-control,
.dsm-input-group>.dsm-file+.dsm-select,
.dsm-input-group>.dsm-file+.dsm-file {
    margin-left: -1px
}

.dsm-input-group>.dsm-form-control:focus,
.dsm-input-group>.dsm-select:focus,
.dsm-input-group>.dsm-file .dsm-file-input:focus~.dsm-file-label {
    z-index: 3
}

.dsm-input-group>.dsm-file .dsm-file-input:focus {
    z-index: 4
}

.dsm-input-group>.dsm-form-control:not(:last-child),
.dsm-input-group>.dsm-select:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.dsm-input-group>.dsm-form-control:not(:first-child),
.dsm-input-group>.dsm-select:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.dsm-input-group>.dsm-file {
    display: flex;
    align-items: center
}

.dsm-input-group>.dsm-file:not(:last-child) .dsm-file-label,
.dsm-input-group>.dsm-file:not(:last-child) .dsm-file-label::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.dsm-input-group>.dsm-file:not(:first-child) .dsm-file-label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.dsm-input-group.icon .dsm-input-group-prepend,
.dsm-input-group.icon .dsm-input-group-append {
    position: absolute;
    z-index: 4;
    top: .75rem;
    color: #9a9a9a
}

.dsm-input-group.icon .dsm-input-group-prepend i,
.dsm-input-group.icon .dsm-input-group-append i {
    cursor: auto;
    pointer-events: auto
}

.dsm-input-group.icon .dsm-form-control {
    border-radius: .3125rem;
    text-overflow: ellipsis
}

.dsm-input-group.icon .dsm-input-group-prepend {
    left: .75rem
}

.dsm-input-group.icon .dsm-input-group-prepend+.dsm-form-control {
    padding-left: 2.5rem
}

.dsm-input-group.icon .dsm-input-group-append {
    right: .75rem
}

.dsm-input-group.icon .dsm-input-group-append+.dsm-form-control {
    padding-right: 2.5rem
}

.dsm-input-group.icon .dsm-input-group-append {
    right: .75rem
}

.dsm-input-group.icon.icon-append .dsm-form-control {
    padding-right: 2.5rem;
    padding-left: .75rem
}

.dsm-input-group.icon.icon-append .dsm-text-tips {
    position: absolute;
    right: 2.5rem;
    top: 50%;
    z-index: 10;
    margin-top: -0.55rem
}

.dsm-input-group.icon.icon-append.icon-btn-group .dsm-input-group-append {
    border-left: 1px solid #dadada;
    display: inline-block;
    height: 100%;
    top: 0;
    right: 0;
    padding: 0.5rem
}

.dsm-input-group-prepend,
.dsm-input-group-append {
    display: flex
}

.dsm-input-group-prepend .dsm-btn,
.dsm-input-group-append .dsm-btn {
    position: relative;
    z-index: 2
}

.dsm-input-group-prepend .dsm-btn:focus,
.dsm-input-group-append .dsm-btn:focus {
    z-index: 3
}

.dsm-input-group-prepend .dsm-btn+.dsm-btn,
.dsm-input-group-prepend .dsm-btn+.dsm-input-group-text,
.dsm-input-group-prepend .dsm-input-group-text+.dsm-input-group-text,
.dsm-input-group-prepend .dsm-input-group-text+.dsm-btn,
.dsm-input-group-append .dsm-btn+.dsm-btn,
.dsm-input-group-append .dsm-btn+.dsm-input-group-text,
.dsm-input-group-append .dsm-input-group-text+.dsm-input-group-text,
.dsm-input-group-append .dsm-input-group-text+.dsm-btn {
    margin-left: -1px
}

.dsm-input-group-prepend {
    margin-right: -1px
}

.dsm-input-group-append {
    margin-left: -1px
}

.dsm-input-group-text {
    font-weight: 400;
    line-height: 1.5;
    display: flex;
    margin-bottom: 0;
    padding: .625rem .75rem;
    text-align: center;
    white-space: nowrap;
    color: #090909;
    border: 1px solid #dadada;
    background-color: #ccc;
    align-items: center;
    font-size: .75rem;
    border-radius: .25rem
}

.dsm-input-group-text input[type="radio"],
.dsm-input-group-text input[type="checkbox"] {
    margin-top: 0
}

.dsm-input-group-lg>.dsm-form-control:not(textarea),
.dsm-input-group-lg>.dsm-select {
    height: calc(1.8em + 1.5rem + 2px)
}

.dsm-input-group-lg>.dsm-form-control,
.dsm-input-group-lg>.dsm-select,
.dsm-input-group-lg>.dsm-input-group-prepend>.dsm-input-group-text,
.dsm-input-group-lg>.dsm-input-group-append>.dsm-input-group-text,
.dsm-input-group-lg>.dsm-input-group-prepend>.dsm-btn,
.dsm-input-group-lg>.dsm-input-group-append>.dsm-btn {
    line-height: 1.8;
    padding: .75rem 1.25rem;
    font-size: 1.57143rem;
    border-radius: .5rem
}

.dsm-input-group-sm>.dsm-form-control:not(textarea),
.dsm-input-group-sm>.dsm-select {
    height: 2rem
}

.dsm-input-group-sm>.dsm-form-control,
.dsm-input-group-sm>.dsm-select,
.dsm-input-group-sm>.dsm-input-group-prepend>.dsm-input-group-text,
.dsm-input-group-sm>.dsm-input-group-append>.dsm-input-group-text,
.dsm-input-group-sm>.dsm-input-group-prepend>.dsm-btn,
.dsm-input-group-sm>.dsm-input-group-append>.dsm-btn {
    line-height: 1.5;
    padding: .375rem .75rem;
    font-size: .75rem;
    border-radius: .25rem
}

.dsm-input-group-control-sm.icon .dsm-input-group-append,
.dsm-input-group-control-sm.icon .dsm-input-group-prepend {
    top: .625rem
}

.dsm-input-group-control-sm.icon .dsm-input-group-append>i,
.dsm-input-group-control-sm.icon .dsm-input-group-prepend>i {
    font-size: .875rem;
}

.dsm-input-group-control-sm.icon .dsm-input-group-prepend+.dsm-form-control {
    padding-left: 2rem
}

.dsm-input-group-lg>.dsm-select,
.dsm-input-group-sm>.dsm-select {
    padding-right: 1.75rem
}

.dsm-input-group>.dsm-input-group-prepend>.dsm-btn,
.dsm-input-group>.dsm-input-group-prepend>.dsm-input-group-text,
.dsm-input-group>.dsm-input-group-append:not(:last-child)>.dsm-btn,
.dsm-input-group>.dsm-input-group-append:not(:last-child)>.dsm-input-group-text,
.dsm-input-group>.dsm-input-group-append:last-child>.dsm-btn:not(:last-child):not(.dsm-dropdown-toggle),
.dsm-input-group>.dsm-input-group-append:last-child>.dsm-input-group-text:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.dsm-input-group>.dsm-input-group-append>.dsm-btn,
.dsm-input-group>.dsm-input-group-append>.dsm-input-group-text,
.dsm-input-group>.dsm-input-group-prepend:not(:first-child)>.dsm-btn,
.dsm-input-group>.dsm-input-group-prepend:not(:first-child)>.dsm-input-group-text,
.dsm-input-group>.dsm-input-group-prepend:first-child>.dsm-btn:not(:first-child),
.dsm-input-group>.dsm-input-group-prepend:first-child>.dsm-input-group-text:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.dsm-input-number {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0
}

.dsm-input-number-handler {
    position: relative;
    display: block;
    width: 100%;
    height: 50%;
    overflow: hidden;
    color: #fff;
    font-weight: bold;
    line-height: 0;
    text-align: center;
    transition: all 0.1s linear
}

.dsm-input-number-handler:active {
    background: #fff
}

.dsm-input-number-handler:hover .dsm-input-number-handler-up-inner,
.dsm-input-number-handler:hover .dsm-input-number-handler-down-inner {
    color: #fff
}

.dsm-input-number-handler-up-inner,
.dsm-input-number-handler-down-inner {
    position: absolute;
    right: 0.365rem;
    color: #fff;
    transition: all 0.1s linear;
    user-select: none;
    width: 0;
    height: 0;
    border-width: 0.25rem
}

.dsm-input-number-handler-up-inner {
    margin-top: -0.3125rem;
    border-color: transparent transparent rgba(0, 0, 0, 0.65) transparent;
    border-style: dashed dashed solid dashed
}

.dsm-input-number-handler-down-inner {
    margin-top: 0.125rem;
    border-color: rgba(0, 0, 0, 0.65) transparent transparent transparent;
    border-style: solid dashed dashed dashed
}

.dsm-input-number-handler-up-disabled,
.dsm-input-number-handler-down-disabled {
    cursor: not-allowed
}

.dsm-input-number-handler-up-disabled .dsm-input-number-handler-up-inner,
.dsm-input-number-handler-down-disabled .dsm-input-number-handler-up-inner {
    margin-top: -0.3125rem;
    border-color: transparent transparent rgba(0, 0, 0, 0.15) transparent;
    border-style: dashed dashed solid dashed
}

.dsm-input-number-handler-up-disabled .dsm-input-number-handler-down-inner,
.dsm-input-number-handler-down-disabled .dsm-input-number-handler-down-inner {
    margin-top: 0.125rem;
    border-color: rgba(0, 0, 0, 0.15) transparent transparent transparent;
    border-style: solid dashed dashed dashed
}

.dsm-input-number-handler-up-disabled:hover .dsm-input-number-handler-up-inner,
.dsm-input-number-handler-down-disabled:hover .dsm-input-number-handler-down-inner {
    color: #dadada
}

.dsm-input-number-input-wrap .dsm-form-control {
    padding-right: 24px
}

.dsm-input-number-handler-wrap {
    position: absolute;
    top: 1px;
    right: 0;
    width: 22px;
    height: calc(100% - 2px);
    border-left: 1px solid #dadada;
    transition: opacity 0.24s linear 0.1s
}

.dsm-input-number-handler-wrap .dsm-input-number-handler .dsm-input-number-handler-up-inner,
.dsm-input-number-handler-wrap .dsm-input-number-handler .dsm-input-number-handler-down-inner {
    min-width: auto;
    margin-right: 0;
    font-size: 7px
}

.dsm-input-number-borderless .dsm-input-number-handler-wrap {
    border-left-width: 0
}

.dsm-input-number-handler-up {
    border-top-right-radius: .3125rem;
    width: calc(100% - 1px);
    cursor: pointer
}

.dsm-input-number-handler-up-inner {
    top: 50%;
    text-align: center
}

.dsm-input-number-handler-down {
    top: 0;
    border-top: 1px solid #dadada;
    width: calc(100% - 1px);
    border-bottom-right-radius: .3125rem;
    cursor: pointer
}

.dsm-input-number-handler-down-inner {
    top: 50%;
    text-align: center;
    transform: translateY(-50%)
}

.dsm-input-number-borderless .dsm-input-number-handler-down {
    border-top-width: 0
}

.dsm-input-number-borderless {
    box-shadow: none
}

.dsm-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem
}

.dsm-control-sm {
    padding-left: 1.25rem;
    line-height: 1rem;
    min-height: 1rem
}

.dsm-control-sm .dsm-control-label {
    line-height: 1rem;
    font-size: .8125rem
}

.dsm-control-sm .dsm-control-label::before,
.dsm-control-sm .dsm-control-label::after {
    width: 1rem;
    height: 1rem;
    left: -20px
}

.dsm-control-inline {
    display: inline-flex;
    margin-right: 1rem;
    margin-bottom: .25rem
}

.dsm-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0
}

.dsm-control-input:checked~.dsm-control-label::before {
    color: #2D5798;
    border-color: #d5d5d5
}

.dsm-control-input:focus~.dsm-control-label::before,
.dsm-control-input:hover~.dsm-control-label::before {
    border-color: #2D5798;
    box-shadow: 0 0 3px 0 #2D5798
}

.dsm-control-input:not(:disabled):active~.dsm-control-label::before {
    color: #2D5798;
    background-color: #058;
    border-color: #058
}

.dsm-control-input:disabled~.dsm-control-label {
    color: #c2c2c2
}

.dsm-control-input:disabled~.dsm-control-label::before {
    cursor: not-allowed;
    box-shadow: none;
    border-color: #dadada;
    background-color: #f0f0f0
}

.dsm-control {
    padding-right: 0.5rem
}

.dsm-control .dsm-control-input:disabled+.dsm-control-label {
    cursor: default
}

.dsm-control-label {
    color: #090909;
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
    line-height: 1.25rem;
    cursor: pointer
}

.dsm-control-label::before {
    position: absolute;
    top: 0;
    left: -24px;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: 1px solid #dadada
}

.dsm-control-label::after {
    position: absolute;
    top: 0;
    left: -24px;
    text-align: center;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    content: "";
    background: no-repeat 50% 50%;
    background-size: 18px
}

.dsm-checkbox .dsm-control-label::before {
    border-radius: 2px
}

.dsm-checkbox .dsm-control-input:checked~.dsm-control-label::before {
    border-color: #2D5798;
    background: #2D5798
}

.dsm-checkbox .dsm-control-input:checked~.dsm-control-label::after {
    top: 1px;
    content: "\e9de";
    font-family: "ds";
    color: #fff
}

.dsm-checkbox .dsm-control-input:indeterminate~.dsm-control-label::before {
    border-color: #2D5798;
    background: #2D5798
}

.dsm-checkbox .dsm-control-input:indeterminate~.dsm-control-label::after {
    content: "\e9de";
    font-family: "ds";
    color: #fff
}

.dsm-checkbox .dsm-control-input:disabled:checked~.dsm-control-label::before {
    color: #ccc;
    border-color: #dadada;
    background-color: #f0f0f0
}

.dsm-checkbox .dsm-control-input:disabled:checked~.dsm-control-label::after {
    color: #ccc
}

.dsm-checkbox .dsm-control-input:disabled:indeterminate~.dsm-control-label::before {
    color: #ccc;
    border-color: #dadada;
    background-color: #f0f0f0
}

.dsm-new-checkbox .dsm-control-label {
    font-size: 1rem;
    margin-left: .25rem;
    line-height: 1.5rem
}

.dsm-new-checkbox .dsm-control-label::before {
    border-radius: 2px;
    width: 1.125rem;
    height: 1.125rem;
    top: 3px;
    left: -25px
}

.dsm-new-checkbox .dsm-control-input:indeterminate~.dsm-control-label::after {
    content: " ";
    top: 7px;
    left: -21px;
    width: .625rem;
    height: .625rem;
    background: #2D5798
}

.dsm-new-checkbox .dsm-control-input:disabled:checked~.dsm-control-label::before {
    color: #ccc;
    border-color: #dadada;
    background-color: #f0f0f0
}

.dsm-new-checkbox .dsm-control-input:disabled:checked~.dsm-control-label::after {
    background-image: url("data:image/svg+xml,<?xml version='1.0' standalone='no'?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg t='1665538735782' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='1938' xmlns:xlink='http://www.w3.org/1999/xlink' fill='%23dadada' width='200' height='200'><path d='M1004.50304 266.82624l-587.072 594.16064-17.1904 16.19328-17.1904-16.19328L19.49696 493.03808l118.53696-119.9872 262.17856 265.37984 485.7536-491.6096L1004.50304 266.82624 1004.50304 266.82624zM1004.50304 266.82624' p-id='1939'></path></svg>");
    color: #dadada
}

.dsm-new-checkbox .dsm-control-input:disabled:indeterminate~.dsm-control-label::before {
    color: #ccc;
    border-color: #dadada;
    background-color: #f0f0f0
}

.dsm-new-checkbox .dsm-control-input:disabled:indeterminate~.dsm-control-label::after {
    background-color: #dadada
}

.dsm-new-checkbox .dsm-control-input:checked~.dsm-control-label::before {
    border-color: #2D5798;
    background: #2D5798
}

.dsm-new-checkbox .dsm-control-input:checked~.dsm-control-label::after {
    top: 6px;
    left: -22px;
    content: " ";
    width: .75rem;
    height: .75rem;
    background-image: url("data:image/svg+xml,<?xml version='1.0' standalone='no'?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg t='1665538735782' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='1938' xmlns:xlink='http://www.w3.org/1999/xlink' fill='%23fff' width='200' height='200'><path d='M1004.50304 266.82624l-587.072 594.16064-17.1904 16.19328-17.1904-16.19328L19.49696 493.03808l118.53696-119.9872 262.17856 265.37984 485.7536-491.6096L1004.50304 266.82624 1004.50304 266.82624zM1004.50304 266.82624' p-id='1939'></path></svg>");
    background-size: 100%;
    color: #fff
}

.dsm-new-checkbox.dsm-control-sm {
    padding-left: 1.25rem
}

.dsm-new-checkbox.dsm-control-sm .dsm-control-label {
    font-size: .8125rem;
    line-height: 1.25rem
}

.dsm-new-checkbox.dsm-control-sm .dsm-control-label::before {
    width: 1rem;
    height: 1rem;
    top: 2px;
    left: -22px
}

.dsm-new-checkbox.dsm-control-sm .dsm-control-input:checked~.dsm-control-label::after {
    top: 5px;
    left: -19px;
    width: .625rem;
    height: .625rem
}

.dsm-new-checkbox.dsm-control-sm .dsm-control-input:indeterminate~.dsm-control-label::after {
    top: 5px;
    left: -19px;
    width: .625rem;
    height: .625rem
}

.dsm-radio .dsm-control-label::before {
    border-radius: 50%
}

.dsm-radio .dsm-control-input:checked~.dsm-control-label::before {
    border-color: #2D5798
}

.dsm-radio .dsm-control-input:checked~.dsm-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%232D5798'/%3e%3c/svg%3e")
}

.dsm-radio .dsm-control-input:disabled:checked~.dsm-control-label::before {
    background-color: #f0f0f0
}

.dsm-radio.dsm-control-sm .dsm-control-label::after {
    background-size: 14px
}

.dsm-switch {
    display: inline-block;
    width: 48px;
    margin: 0
}

.dsm-switch .dsm-control-label::before {
    top: 0;
    left: -24px;
    width: 3rem;
    height: 1.5rem;
    pointer-events: all;
    background-color: #d5d5d5;
    border-color: #d5d5d5;
    border-radius: 12px
}

.dsm-switch .dsm-control-label::after {
    top: 2px;
    left: -22px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .dsm-switch .dsm-control-label::after {
        transition: none
    }
}

.dsm-switch .dsm-control-input {
    width: 100%;
    height: 100%;
    right: 0;
    z-index: 1;
    cursor: pointer
}

.dsm-switch .dsm-control-input:checked~.dsm-control-label::before {
    border-color: #2D5798;
    background-color: #2D5798
}

.dsm-switch .dsm-control-input:checked~.dsm-control-label::after {
    background-color: #fff;
    transform: translateX(24px)
}

.dsm-switch .dsm-control-input:focus~.dsm-control-label::before,
.dsm-switch .dsm-control-input:hover~.dsm-control-label::before {
    border-color: transparent;
    box-shadow: none
}

.dsm-switch .dsm-control-input:disabled {
    pointer-events: none
}

.dsm-switch .dsm-control-input:disabled:checked~.dsm-control-label::before,
.dsm-switch .dsm-control-input:disabled~.dsm-control-label::before {
    opacity: .5;
    background-color: #2D5798
}

.dsm-switch .dsm-control-input:disabled~.dsm-control-label::before {
    background-color: #d5d5d5;
    border-color: #d5d5d5
}

.dsm-select {
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 1.25rem + 2px);
    padding: .625rem 1.75rem .625rem .75rem;
    font-size: .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    vertical-align: middle;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;
    background-color: #fff;
    border: 1px solid #dadada;
    border-radius: .3125rem;
    appearance: none
}

.dsm-select:focus {
    border-color: #2D5798;
    outline: 0;
    box-shadow: 0 0 0 .0625rem #2D5798
}

.dsm-select:focus::-ms-value {
    color: #333;
    background-color: #fff
}

.dsm-select[multiple],
.dsm-select[size]:not([size="1"]) {
    height: auto;
    padding-right: .75rem;
    background-image: none
}

.dsm-select:disabled {
    color: #666;
    background-color: #ccc
}

.dsm-select::-ms-expand {
    display: none
}

.dsm-select-sm {
    height: 2rem;
    padding-top: .375rem;
    padding-bottom: .375rem;
    padding-left: .75rem;
    font-size: .875rem
}

.dsm-select-lg {
    height: calc(1.8em + 1.5rem + 2px);
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 1.25rem;
    font-size: 1.375rem
}

.dsm-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 1.25rem + 2px);
    margin-bottom: 0
}

.dsm-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + 1.25rem + 2px);
    margin: 0;
    opacity: 0
}

.dsm-file-input:focus~.dsm-file-label {
    border-color: #2D5798;
    box-shadow: 0 0 .0625rem 0 #2D5798
}

.dsm-file-input:disabled~.dsm-file-label {
    background-color: #f0f0f0
}

.dsm-file-input:lang(en)~.dsm-file-label::after {
    content: "Browse"
}

.dsm-file-input~.dsm-file-label[data-browse]::after {
    content: attr(data-browse)
}

.dsm-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + 1.25rem + 2px);
    padding: .625rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    border: 1px solid #dadada;
    border-radius: .3125rem
}

.dsm-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + 1.25rem);
    padding: .625rem .75rem;
    line-height: 1.5;
    color: #333;
    content: "Browse";
    background-color: #ccc;
    border-left: inherit;
    border-radius: 0 .3125rem .3125rem 0
}

.dsm-range {
    width: 100%;
    height: calc(1rem + .125rem);
    padding: 0;
    background-color: transparent;
    appearance: none
}

.dsm-range:focus {
    outline: none
}

.dsm-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 .0625rem 0 #2D5798
}

.dsm-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 .0625rem 0 #2D5798
}

.dsm-range:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 .0625rem 0 #2D5798
}

.dsm-range::-moz-focus-outer {
    border: 0
}

.dsm-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -.25rem;
    background-color: #2D5798;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none
}

@media (prefers-reduced-motion: reduce) {
    .dsm-range::-webkit-slider-thumb {
        transition: none
    }
}

.dsm-range::-webkit-slider-thumb:active {
    background-color: #55bfff
}

.dsm-range::-webkit-slider-runnable-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #b3b3b3;
    border-color: transparent;
    border-radius: 1rem
}

.dsm-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #2D5798;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none
}

@media (prefers-reduced-motion: reduce) {
    .dsm-range::-moz-range-thumb {
        transition: none
    }
}

.dsm-range::-moz-range-thumb:active {
    background-color: #55bfff
}

.dsm-range::-moz-range-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #b3b3b3;
    border-color: transparent;
    border-radius: 1rem
}

.dsm-range::-ms-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: .0625rem;
    margin-left: .0625rem;
    background-color: #2D5798;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none
}

@media (prefers-reduced-motion: reduce) {
    .dsm-range::-ms-thumb {
        transition: none
    }
}

.dsm-range::-ms-thumb:active {
    background-color: #55bfff
}

.dsm-range::-ms-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    border-width: .5rem
}

.dsm-range::-ms-fill-lower {
    background-color: #b3b3b3;
    border-radius: 1rem
}

.dsm-range::-ms-fill-upper {
    margin-right: 15px;
    background-color: #b3b3b3;
    border-radius: 1rem
}

.dsm-range:disabled::-webkit-slider-thumb {
    background-color: gray
}

.dsm-range:disabled::-webkit-slider-runnable-track {
    cursor: default
}

.dsm-range:disabled::-moz-range-thumb {
    background-color: gray
}

.dsm-range:disabled::-moz-range-track {
    cursor: default
}

.dsm-range:disabled::-ms-thumb {
    background-color: gray
}

.dsm-control-label::before,
.dsm-file-label,
.dsm-select {
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {

    .dsm-control-label::before,
    .dsm-file-label,
    .dsm-select {
        transition: none
    }
}

.annular {
    width: 219px;
    height: 219px;
    border-radius: 50%;
    border: 1rem solid transparent;
    margin: .75rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #000
}

.annular.annular-primary {
    border-color: #2D5798
}

.annular.annular-black {
    border-color: #1a1a1a
}

.annular-number {
    margin: 0;
    font-size: 3.4375rem;
    font-weight: 200
}

.annular-read-only {
    opacity: 0
}

.annular-text {
    font-size: 1.5rem;
    line-height: 2.1875rem;
    font-weight: 400;
    height: 70px;
    overflow: hidden;
    text-overflow: ellipsis
}

.annular-text>span {
    display: block
}

.titles-disabled {
    opacity: .25;
    pointer-events: none;
    cursor: move
}

.dsm-dashboard {
    display: flex;
    flex-wrap: wrap
}

.dsm-dashboard .dsm-dashboard-item {
    width: 320px;
    height: 400px
}

.dsm-dashboard.dsm-dashboard-group .dsm-dashboard-item {
    margin: 0 2rem 2rem 0
}

.dsm-drag-ui {
    box-shadow: 0 0 0.625rem inset #ccc;
    border-radius: .625rem
}

.dsm-drag-box {
    position: fixed;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 999;
    pointer-events: none;
    visibility: hidden;
    transition: none 0s ease 0s;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0, 0)
}

.dsm-nav-scroll {
    position: relative;
    background: #fff
}

.dsm-nav-scroll.dsm-nav-scroll-padding {
    padding: 0 1.25rem
}

.dsm-nav-scroll.dsm-nav-scroll-padding .dsm-nav-item:first-child {
    margin-left: 1rem
}

.dsm-nav-scroll.dsm-nav-scroll-padding .dsm-nav-item:last-child {
    margin-right: 1rem
}

.dsm-nav-scroll.dsm-nav-scroll-padding .dsm-nav-scroll-content::before,
.dsm-nav-scroll.dsm-nav-scroll-padding .dsm-nav-scroll-content::after {
    content: '';
    z-index: 1;
    padding: 2.71875rem 1.25rem 0 0
}

.dsm-nav-scroll.dsm-nav-scroll-padding .dsm-nav-scroll-content::before {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, white, transparent)
}

.dsm-nav-scroll.dsm-nav-scroll-padding .dsm-nav-scroll-content::after {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(to left, white, transparent)
}

.dsm-nav-scroll .dsm-nav {
    display: inline-flex;
    flex-wrap: nowrap;
    transition: transform 0.1s
}

.dsm-nav-scroll .dsm-nav-prev,
.dsm-nav-scroll .dsm-nav-next {
    padding: 2.71875rem 1.25rem 0 0;
    cursor: pointer
}

.dsm-nav-scroll .dsm-nav-prev::after,
.dsm-nav-scroll .dsm-nav-next::after {
    content: '';
    position: absolute;
    top: calc(50% - .3125rem);
    left: calc(50% - .3125rem / 2)
}

.dsm-nav-scroll .dsm-nav-prev {
    position: absolute;
    top: 0;
    left: 0
}

.dsm-nav-scroll .dsm-nav-prev::after {
    border-width: .3125rem .3125rem .3125rem 0;
    border-style: solid;
    border-color: transparent rgba(9, 9, 9, 0.65) transparent transparent
}

.dsm-nav-scroll .dsm-nav-prev:hover::after {
    border-color: transparent #090909 transparent transparent
}

.dsm-nav-scroll .dsm-nav-next {
    position: absolute;
    top: 0;
    right: 0
}

.dsm-nav-scroll .dsm-nav-next::after {
    border-width: .3125rem 0 .3125rem .3125rem;
    border-style: solid;
    border-color: transparent transparent transparent rgba(9, 9, 9, 0.65)
}

.dsm-nav-scroll .dsm-nav-next:hover::after {
    border-color: transparent transparent transparent #090909
}

.dsm-nav-scroll .dsm-nav-scroll-content {
    position: relative;
    overflow: hidden
}

.dsm-nav-scroll .dsm-nav-scroll-content .dsm-nav-link {
    white-space: nowrap
}

.dsm-nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.dsm-nav-link {
    display: block;
    padding: .59812rem 1.25rem .725rem 1.25rem;
    font-size: 1rem;
    cursor: pointer
}

.dsm-nav-link:hover,
.dsm-nav-link:focus {
    text-decoration: none
}

.dsm-nav-link.disabled {
    color: #666;
    pointer-events: none;
    cursor: default
}

.dsm-nav-tabs {
    border: 1px solid #dadada;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    background-color: #f2f2f2
}

.dsm-nav-tabs .dsm-nav-item {
    margin-bottom: -1px
}

.dsm-nav-tabs .dsm-nav-item:first-child .dsm-nav-link {
    border-left: none;
    border-top-left-radius: .25rem
}

.dsm-nav-tabs .dsm-nav-link {
    color: #000;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent
}

.dsm-nav-tabs .dsm-nav-link:hover,
.dsm-nav-tabs .dsm-nav-link:focus {
    color: #2D5798
}

.dsm-nav-tabs .dsm-nav-link.disabled {
    color: #666;
    background-color: transparent;
    border-color: transparent
}

.dsm-nav-tabs .dsm-nav-link.active,
.dsm-nav-tabs .dsm-nav-item.show .dsm-nav-link {
    border-left: 1px solid #dadada;
    border-right: 1px solid #dadada;
    color: #2D5798;
    background-color: #fff
}

.dsm-nav-tabs .dsm-dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.dsm-nav-tabs.dsm-nav-box-shadow {
    box-shadow: 0 2px 3px 0 rgba(168, 183, 199, 0.3)
}

.dsm-nav-tabs.dsm-nav-tabs-outline {
    background-color: transparent;
    border: transparent;
    border-bottom: 1px solid #dadada
}

.dsm-nav-tabs.dsm-nav-tabs-outline .dsm-nav-link.active,
.dsm-nav-tabs.dsm-nav-tabs-outline .dsm-nav-item.show .dsm-nav-link {
    background-color: transparent;
    color: #005fb2;
    border-left: none;
    border-right: none;
    border-bottom: 3px solid #2D5798
}

.dsm-nav-tabs.dsm-nav-tabs-outline .dsm-nav-link:hover {
    color: #005fb2;
    border-bottom: 3px solid #2D5798
}

.dsm-nav-tabs.dsm-nav-tabs-ellipsis .dsm-nav-item {
    max-width: 25%
}

.dsm-nav-tabs.dsm-nav-tabs-ellipsis .dsm-nav-item .dsm-nav-link {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-align: center
}

.dsm-nav-tabs.dsm-nav-tabs-ellipsis .dsm-nav-item .dsm-nav-link>span {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-align: center
}

.dsm-nav-tabs-line {
    border: none;
    background-color: transparent
}

.dsm-nav-tabs-line .dsm-nav-item {
    position: relative;
    margin: 0 1rem;
    cursor: pointer
}

.dsm-nav-tabs-line .dsm-nav-item:first-child {
    margin-left: 0
}

.dsm-nav-tabs-line .dsm-nav-item:last-child {
    margin-right: 0
}

.dsm-nav-tabs-line .dsm-nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: calc(50% - .75rem * 0.5);
    right: -1rem;
    width: 1px;
    height: .75rem;
    background: rgba(9, 9, 9, 0.15)
}

.dsm-nav-tabs-line .dsm-nav-link {
    padding: .75rem 0 .75rem 0;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid transparent;
    color: rgba(9, 9, 9, 0.65);
    font-size: .8125rem;
    font-weight: 600;
    line-height: 1.5
}

.dsm-nav-tabs-line .dsm-nav-link:hover,
.dsm-nav-tabs-line .dsm-nav-link:focus {
    color: #2D5798;
    border-bottom: 2px solid #2D5798
}

.dsm-nav-tabs-line .dsm-nav-link.active,
.dsm-nav-tabs-line .dsm-nav-item.show .dsm-nav-link {
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #2D5798;
    background-color: transparent
}

.dsm-nav-tabs-line.dsm-nav-tabs-outline {
    border: none
}

.dsm-nav-tabs-line.dsm-nav-tabs-outline .dsm-nav-link:hover,
.dsm-nav-tabs-line.dsm-nav-tabs-outline .dsm-nav-link:focus {
    color: #2D5798;
    border-bottom: 2px solid #2D5798
}

.dsm-nav-tabs-line.dsm-nav-tabs-outline .dsm-nav-link.active,
.dsm-nav-tabs-line.dsm-nav-tabs-outline .dsm-nav-item.show .dsm-nav-link {
    border-bottom: 2px solid #2D5798
}

.dsm-nav-pills .dsm-nav-link {
    border-radius: .3125rem
}

.dsm-nav-pills .dsm-nav-link.active,
.dsm-nav-pills .show>.dsm-nav-link {
    color: #000;
    background-color: #2D5798
}

.dsm-nav-fill .dsm-nav-item {
    flex: 1 1 auto;
    text-align: center
}

.dsm-nav-justified .dsm-nav-item {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center
}

.dsm-tab-content {
    font-size: .75rem;
    border: 1px solid #dadada;
    border-top: 0;
    padding: 1.25rem 1.25rem 1rem 1.25rem;
    background-color: #fff;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.dsm-tab-content>.dsm-tab-pane {
    display: none
}

.dsm-tab-content>.active {
    display: block
}

.dsm-tab-content.dsm-tab-content-shadow {
    box-shadow: 0 2px 3px 0 rgba(168, 183, 199, 0.3)
}

.dsm-tab-content.dsm-tab-content-outline {
    background-color: transparent;
    border: transparent;
    position: relative
}

.dsm-tab-content.dsm-tab-content-line {
    position: relative;
    padding: 1.25rem 0 1rem 0;
    background-color: transparent;
    border: transparent;
    font-size: .8125rem;
    color: #090909
}

.dsm-nav-tabs-horizontal {
    display: flex;
    flex-flow: row
}

.dsm-nav-tabs-horizontal .dsm-nav-tabs-outline {
    min-width: 200px;
    flex-flow: column;
    border-bottom: none;
    border-right: 1px solid #dadada
}

.dsm-nav-tabs-horizontal .dsm-nav-tabs-outline .dsm-nav-link {
    font-size: 1rem
}

.dsm-nav-tabs-horizontal .dsm-nav-tabs-outline .dsm-nav-link.active {
    border-bottom: none;
    border-right: 3px solid #2D5798
}

.dsm-nav-tabs-horizontal .dsm-nav-tabs-outline .dsm-nav-link:hover {
    border-bottom: none
}

.dsm-nav-tabs-horizontal .dsm-tab-content-outline {
    padding-left: 3rem;
    flex-grow: 1
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 1rem
}

.navbar>.container,
.navbar>.container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between
}

.navbar-brand {
    display: inline-block;
    padding-top: .44375rem;
    padding-bottom: .44375rem;
    margin-right: 1rem;
    font-size: 1.375rem;
    line-height: inherit;
    white-space: nowrap
}

.navbar-brand:hover,
.navbar-brand:focus {
    text-decoration: none
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0
}

.navbar-nav .dsm-dropdown-menu {
    position: static;
    float: none
}

.navbar-text {
    display: inline-block;
    padding-top: .725rem;
    padding-bottom: .725rem
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.375rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .3125rem
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    text-decoration: none
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%
}

@media (max-width: 575.98px) {

    .navbar-expand-sm>.container,
    .navbar-expand-sm>.container-fluid {
        padding-right: 0;
        padding-left: 0
    }
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        flex-flow: row nowrap;
        justify-content: flex-start
    }

    .navbar-expand-sm .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-sm .navbar-nav .dsm-dropdown-menu {
        position: absolute
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-sm>.container,
    .navbar-expand-sm>.container-fluid {
        flex-wrap: nowrap
    }

    .navbar-expand-sm .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-sm .navbar-toggler {
        display: none
    }
}

@media (max-width: 767.98px) {

    .navbar-expand-md>.container,
    .navbar-expand-md>.container-fluid {
        padding-right: 0;
        padding-left: 0
    }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        flex-flow: row nowrap;
        justify-content: flex-start
    }

    .navbar-expand-md .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-md .navbar-nav .dsm-dropdown-menu {
        position: absolute
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-md>.container,
    .navbar-expand-md>.container-fluid {
        flex-wrap: nowrap
    }

    .navbar-expand-md .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-md .navbar-toggler {
        display: none
    }
}

@media (max-width: 991.98px) {

    .navbar-expand-lg>.container,
    .navbar-expand-lg>.container-fluid {
        padding-right: 0;
        padding-left: 0
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-flow: row nowrap;
        justify-content: flex-start
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-lg .navbar-nav .dsm-dropdown-menu {
        position: absolute
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-lg>.container,
    .navbar-expand-lg>.container-fluid {
        flex-wrap: nowrap
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-lg .navbar-toggler {
        display: none
    }
}

@media (max-width: 1199.98px) {

    .navbar-expand-xl>.container,
    .navbar-expand-xl>.container-fluid {
        padding-right: 0;
        padding-left: 0
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl {
        flex-flow: row nowrap;
        justify-content: flex-start
    }

    .navbar-expand-xl .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-xl .navbar-nav .dsm-dropdown-menu {
        position: absolute
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-xl>.container,
    .navbar-expand-xl>.container-fluid {
        flex-wrap: nowrap
    }

    .navbar-expand-xl .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-xl .navbar-toggler {
        display: none
    }
}

.navbar-expand {
    flex-flow: row nowrap;
    justify-content: flex-start
}

.navbar-expand>.container,
.navbar-expand>.container-fluid {
    padding-right: 0;
    padding-left: 0
}

.navbar-expand .navbar-nav {
    flex-direction: row
}

.navbar-expand .navbar-nav .dsm-dropdown-menu {
    position: absolute
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem
}

.navbar-expand>.container,
.navbar-expand>.container-fluid {
    flex-wrap: nowrap
}

.navbar-expand .navbar-collapse {
    display: flex !important;
    flex-basis: auto
}

.navbar-expand .navbar-toggler {
    display: none
}

.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, 0.9)
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
    color: rgba(0, 0, 0, 0.9)
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.5)
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: rgba(0, 0, 0, 0.7)
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, 0.3)
}

.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
    color: rgba(0, 0, 0, 0.9)
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1)
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0,0,0,0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-light .navbar-text {
    color: rgba(0, 0, 0, 0.5)
}

.navbar-light .navbar-text a {
    color: rgba(0, 0, 0, 0.9)
}

.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
    color: rgba(0, 0, 0, 0.9)
}

.navbar-dark .navbar-brand {
    color: #fff
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
    color: #fff
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5)
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75)
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25)
}

.navbar-dark .navbar-nav .show>.nav-link,
.navbar-dark .navbar-nav .active>.nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff
}

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.1)
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.5)
}

.navbar-dark .navbar-text a {
    color: #fff
}

.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
    color: #fff
}

.dsm-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: .3125rem
}

.dsm-card>hr {
    margin-right: 0;
    margin-left: 0
}

.dsm-card>.dsm-list-group:first-child .dsm-list-group-item:first-child {
    border-top-left-radius: .3125rem;
    border-top-right-radius: .3125rem
}

.dsm-card>.dsm-list-group:last-child .dsm-list-group-item:last-child {
    border-bottom-right-radius: .3125rem;
    border-bottom-left-radius: .3125rem
}

.dsm-card-body {
    flex: 1 1 auto;
    padding: 1.25rem
}

.dsm-card-title {
    margin-bottom: .75rem
}

.dsm-card-subtitle {
    margin-top: -.375rem;
    margin-bottom: 0
}

.dsm-card-text:last-child {
    margin-bottom: 0
}

.dsm-card-link:hover {
    text-decoration: none
}

.dsm-card-link+.dsm-card-link {
    margin-left: 1.25rem
}

.dsm-card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125)
}

.dsm-card-header:first-child {
    border-radius: calc(.3125rem - 1px) calc(.3125rem - 1px) 0 0
}

.dsm-card-header+.dsm-list-group .dsm-list-group-item:first-child {
    border-top: 0
}

.dsm-card-footer {
    padding: .75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125)
}

.dsm-card-footer:last-child {
    border-radius: 0 0 calc(.3125rem - 1px) calc(.3125rem - 1px)
}

.dsm-card-header-tabs {
    margin-right: -.625rem;
    margin-bottom: -.75rem;
    margin-left: -.625rem;
    border-bottom: 0
}

.dsm-card-header-pills {
    margin-right: -.625rem;
    margin-left: -.625rem
}

.dsm-card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem
}

.dsm-card-img {
    width: 100%;
    border-radius: calc(.3125rem - 1px)
}

.dsm-card-img-top {
    width: 100%;
    border-top-left-radius: calc(.3125rem - 1px);
    border-top-right-radius: calc(.3125rem - 1px)
}

.dsm-card-img-bottom {
    width: 100%;
    border-bottom-right-radius: calc(.3125rem - 1px);
    border-bottom-left-radius: calc(.3125rem - 1px)
}

.dsm-card-deck {
    display: flex;
    flex-direction: column
}

.dsm-card-deck .dsm-card {
    margin-bottom: 15px
}

@media (min-width: 576px) {
    .dsm-card-deck {
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px
    }

    .dsm-card-deck .dsm-card {
        display: flex;
        flex: 1 0 0%;
        flex-direction: column;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px
    }
}

.dsm-card-group {
    display: flex;
    flex-direction: column
}

.dsm-card-group>.dsm-card {
    margin-bottom: 15px
}

@media (min-width: 576px) {
    .dsm-card-group {
        flex-flow: row wrap
    }

    .dsm-card-group>.dsm-card {
        flex: 1 0 0%;
        margin-bottom: 0
    }

    .dsm-card-group>.dsm-card+.dsm-card {
        margin-left: 0;
        border-left: 0
    }

    .dsm-card-group>.dsm-card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }

    .dsm-card-group>.dsm-card:not(:last-child) .dsm-card-img-top,
    .dsm-card-group>.dsm-card:not(:last-child) .dsm-card-header {
        border-top-right-radius: 0
    }

    .dsm-card-group>.dsm-card:not(:last-child) .dsm-card-img-bottom,
    .dsm-card-group>.dsm-card:not(:last-child) .dsm-card-footer {
        border-bottom-right-radius: 0
    }

    .dsm-card-group>.dsm-card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }

    .dsm-card-group>.dsm-card:not(:first-child) .dsm-card-img-top,
    .dsm-card-group>.dsm-card:not(:first-child) .dsm-card-header {
        border-top-left-radius: 0
    }

    .dsm-card-group>.dsm-card:not(:first-child) .dsm-card-img-bottom,
    .dsm-card-group>.dsm-card:not(:first-child) .dsm-card-footer {
        border-bottom-left-radius: 0
    }
}

.dsm-card-columns .dsm-card {
    margin-bottom: .75rem
}

@media (min-width: 576px) {
    .dsm-card-columns {
        column-count: 3;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1
    }

    .dsm-card-columns .dsm-card {
        display: inline-block;
        width: 100%
    }
}

.accordion>.dsm-card {
    overflow: hidden
}

.accordion>.dsm-card:not(:first-of-type) .dsm-card-header:first-child {
    border-radius: 0
}

.accordion>.dsm-card:not(:first-of-type):not(:last-of-type) {
    border-bottom: 0;
    border-radius: 0
}

.accordion>.dsm-card:first-of-type {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.accordion>.dsm-card:last-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.accordion>.dsm-card .dsm-card-header {
    margin-bottom: -1px
}

.dsm-card-contact {
    min-height: 130px;
    background: #fff;
    border: 2px solid transparent;
    box-shadow: 0 2px 4px 0 rgba(153, 153, 153, 0.5);
    transition: all 0.2s ease-in-out
}

.dsm-card-contact:hover {
    border-color: #2D5798
}

.dsm-card-contact .dsm-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.875rem 1rem
}

.dsm-card-contact p {
    margin: 0;
    padding: 0
}

.dsm-card-contact-info {
    position: relative;
    font-size: .875rem
}

.dsm-card-contact-info .dsm-btn-group {
    position: absolute;
    right: -0.5rem;
    top: -0.5rem
}

.dsm-card-contact>.dsm-btn-group {
    position: absolute;
    top: 0.375rem;
    right: 0.375rem
}

.dsm-card-contact .dsm-card-contact-title {
    font-weight: bold;
    font-size: 0.8125rem
}

.dsm-card-contact .dsm-card-contact-text {
    font-size: .75rem;
    color: #808080
}

.dsm-card-contact .dsm-card-contact-text-icon {
    font-size: .875rem;
    margin-left: 1rem
}

.dsm-card-contact .dsm-card-contact-text-mini {
    font-size: .75rem;
    transform: scale(0.8);
    transform-origin: left
}

.dsm-dashboard-card {
    min-height: 150px;
    background: #fff;
    box-shadow: 0 2px 3px 0 rgba(168, 183, 199, 0.3);
    border-color: #e3e3e3;
    transition: all 0.2s ease-in-out;
    border-radius: .625rem
}

.dsm-dashboard-card .dsm-card-body {
    display: flex;
    flex-direction: column;
    padding: 0.875rem;
    cursor: move
}

.dsm-dashboard-card .dsm-card-body.dsm-card-body-center {
    text-align: center
}

.dsm-card-border-transparent {
    border-color: transparent
}

.dsm-card.dsm-card-selected-primary {
    border-color: #2D5798;
    background-color: rgba(45, 87, 152, 0.1);
    box-shadow: 0 0 0 0.0625rem #2D5798
}

.dsm-card.dsm-card-selected-dark {
    border: 2px solid #4d4d4d;
    border-radius: 5px;
    background-color: rgba(77, 77, 77, 0.1)
}

.dsm-card.bg-outline-primary {
    border-color: #2D5798;
    background-color: rgba(45, 87, 152, 0.35);
    box-shadow: 0 0 0 0.0625rem #2D5798
}

.dsm-card.bg-outline-warning {
    border-color: #ffb75d;
    background-color: rgba(255, 199, 0, 0.35);
    box-shadow: 0 0 0 0.0625rem #ffb75d
}

.dsm-card.bg-outline-danger {
    border-color: #F04E4E;
    background-color: rgba(240, 78, 78, 0.35);
    box-shadow: 0 0 0 0.0625rem #F04E4E
}

.dsm-card.bg-outline-success {
    border-color: #06C270;
    background-color: rgba(6, 194, 112, 0.35);
    box-shadow: 0 0 0 0.0625rem #06C270
}

.dsm-card.border-danger {
    border-color: #F04E4E
}

.dsm-card-outline-title {
    font-size: 1.75rem;
    font-weight: 400
}

.dsm-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #ccc;
    border-radius: .3125rem
}

.dsm-breadcrumb-item+.dsm-breadcrumb-item {
    padding-left: .5rem
}

.dsm-breadcrumb-item+.dsm-breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: #666;
    content: "/"
}

.dsm-breadcrumb-item+.dsm-breadcrumb-item:hover::before {
    text-decoration: underline
}

.dsm-breadcrumb-item+.dsm-breadcrumb-item:hover::before {
    text-decoration: none
}

.dsm-breadcrumb-item.active {
    color: #666
}

.dsm-react-breadcrumb {
    color: rgba(9, 9, 9, 0.45);
    font-family: 'Open Sans';
    font-size: .8125rem;
    letter-spacing: 0;
    line-height: 1.25rem
}

.dsm-react-breadcrumb a {
    font-size: .8125rem;
    text-decoration: none;
    color: rgba(9, 9, 9, 0.45)
}

.dsm-react-breadcrumb a:hover {
    color: #090909;
    opacity: 1
}

.dsm-react-breadcrumb-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.dsm-react-breadcrumb-separator {
    margin: 0 4px
}

.dsm-react-breadcrumb-item {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.dsm-react-breadcrumb-item:hover,
.dsm-react-breadcrumb-item:last-child {
    color: #090909
}

.dsm-react-breadcrumb-item i {
    font-size: .8125rem;
    line-height: 1.25rem;
    margin-right: 4px
}

.dsm-pagination {
    display: flex;
    margin: 0;
    padding: 5px 0;
    list-style: none;
    border-radius: .3125rem
}

.dsm-pagination-link {
    min-width: 40px;
    position: relative;
    text-align: center;
    display: block;
    padding: .75rem .75rem;
    margin-left: -1px;
    line-height: .875rem;
    color: #2D5798;
    background-color: #fff;
    border: 1px solid #e3e3e3
}

.dsm-pagination-link:hover {
    z-index: 2;
    text-decoration: none;
    background-color: #f1f1f1;
    border-color: #dadada
}

.dsm-pagination-link:focus {
    z-index: 2;
    outline: none;
    box-shadow: none;
    text-decoration: none;
    background-color: #f1f1f1;
    border-color: #dadada
}

.dsm-pagination-item:first-child .dsm-pagination-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.dsm-pagination-item:last-child .dsm-pagination-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.dsm-pagination-item.active .dsm-pagination-link {
    z-index: 1;
    color: #fff;
    background-color: #2D5798;
    border-color: #2D5798
}

.dsm-pagination-item.disabled .dsm-pagination-link {
    color: #ccc;
    pointer-events: none;
    cursor: auto;
    background-color: rgba(230, 230, 230, 0.25);
    border-color: #e6e6e6
}

.dsm-pagination-item.dsm-pagination-item-gutter-left {
    margin-right: .75rem
}

.dsm-pagination-item.dsm-pagination-item-gutter-right {
    margin-left: .75rem
}

.dsm-pagination-lg .dsm-page-link {
    padding: .75rem .875rem;
    font-size: 1.57143rem;
    line-height: 1.8
}

.dsm-pagination-lg .dsm-page-item:first-child .dsm-page-link {
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem
}

.dsm-pagination-lg .dsm-page-item:last-child .dsm-page-link {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem
}

.dsm-pagination-sm .dsm-page-link {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5
}

.dsm-pagination-sm .dsm-page-item:first-child .dsm-page-link {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.dsm-pagination-sm .dsm-page-item:last-child .dsm-page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.align-items-center-new-version .dsm-pagination-item {
    margin-right: .75rem
}

.align-items-center-new-version .dsm-pagination-item .dsm-pagination-link {
    min-width: 33px;
    padding: 0;
    margin-left: -1px;
    line-height: 30px;
    color: #090909;
    border-radius: .25rem;
    border-color: rgba(9, 9, 9, 0.15);
    font-size: 13px
}

.align-items-center-new-version .dsm-pagination-item .dsm-pagination-link:hover {
    background-color: #fff;
    border-color: #2D5798;
    color: #2D5798
}

.align-items-center-new-version .dsm-pagination-item .dsm-pagination-link:focus {
    background-color: #fff
}

.align-items-center-new-version .dsm-pagination-item.active .dsm-pagination-link {
    z-index: 1;
    color: #2D5798;
    background-color: #fff;
    border-color: #2D5798
}

.align-items-center-new-version .dsm-pagination-item.active.disabled .dsm-pagination-link {
    background-color: rgba(9, 9, 9, 0.15)
}

.align-items-center-new-version .dsm-pagination-item.disabled .dsm-pagination-link {
    color: rgba(9, 9, 9, 0.25);
    border-color: rgba(9, 9, 9, 0.15)
}

.align-items-center-new-version .dsm-pagination-item .ds-more-line {
    font-size: 18px
}

.align-items-center-new-version .dsm-pagination-item .ds-angle-left-alt {
    font-size: .75rem
}

.align-items-center-new-version .dsm-pagination-item .ds-angle-right-alt {
    font-size: .75rem
}

.align-items-center-new-version .dsm-pagination-item .ds-arrow-left-s-line {
    font-size: 18px
}

.align-items-center-new-version .dsm-pagination-item .ds-arrow-right-s-line {
    font-size: 18px;
    margin-left: 1px
}

.align-items-center-new-version .dsm-pagination-item-gutter-right {
    margin: 0
}

.align-items-center-new-version .dsm-pagination-shortcut-key .dsm-pagination-link {
    border: none;
    background-color: #fff
}

.align-items-center-new-version .dsm-pagination-shortcut-key .dsm-pagination-link:hover {
    background-color: none;
    border-color: none;
    color: #2D5798
}

.align-items-center-new-version .dsm-pagination-shortcut-key .dsm-pagination-link:focus {
    background-color: none;
    border-color: none
}

.align-items-center-new-version .c-dropdown {
    padding: 5px 0;
    width: 100px;
    margin-left: 1rem
}

.align-items-center-new-version .c-dropdown .dsm-menu-box .dsm-input-group.icon .dsm-input-group-append {
    top: 0.5rem
}

.align-items-center-new-version .c-dropdown .dsm-menu-box .dsm-input-group.icon .dsm-input-group-append .ds {
    color: rgba(9, 9, 9, 0.65)
}

.align-items-center-new-version .c-dropdown .dsm-menu-box .dsm-input-group.icon .dsm-form-control {
    padding: 0 .75rem;
    line-height: 30px;
    height: auto;
    cursor: pointer;
    color: rgba(9, 9, 9, 0.65);
    font-size: 13px
}

.align-items-center-new-version .c-dropdown .dsm-menu-box .dsm-input-group.icon .dsm-form-control:hover {
    border-color: #2D5798
}

.align-items-center-new-version .c-dropdown .dsm-dropdown-menu {
    min-width: 6rem
}

.align-items-center-new-version .c-dropdown .dsm-dropdown-menu .dsm-menu-ul i.dsm-menu-icon-select {
    display: none
}

.align-items-center-new-version .quick-jumper {
    padding: 5px 0;
    color: rgba(9, 9, 9, 0.65);
    font-size: 13px;
    line-height: 30px;
    margin-left: .5rem
}

.align-items-center-new-version .quick-jumper .dsm-form-control {
    width: 60px;
    height: auto;
    padding: 1px .75rem 0;
    margin: 0 .5rem 0;
    font-size: 13px
}

.dsm-pills {
    position: relative;
    min-width: 100px;
    display: inline-block;
    font-weight: 400;
    color: #000;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    margin-right: 1rem;
    cursor: pointer;
    padding: .625rem .75rem .625rem 1rem;
    font-size: .75rem;
    border-radius: .3125rem
}

.dsm-pills:hover {
    color: #000;
    text-decoration: none
}

.dsm-pills:focus,
.dsm-pills.focus {
    outline: 0
}

.dsm-pills.disabled,
.dsm-pills:disabled {
    opacity: .65;
    cursor: not-allowed
}

.dsm-pills>span {
    display: inline-block;
    max-width: 90%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: bottom
}

.dsm-pills a.dsm-pills-close {
    float: right;
    margin-left: 1rem
}

.dsm-pills a.dsm-pills-close i {
    margin-right: 0
}

.dsm-pills a:hover {
    text-decoration: none
}

.dsm-pills-middle {
    padding: .375rem .75rem .375rem .75rem;
    font-size: .75rem;
    border-radius: .3125rem
}

.dsm-pills-small {
    padding: .25rem .75rem .25rem .5rem;
    font-size: .75rem;
    border-radius: .3125rem
}

.dsm-pills-outline-primary {
    color: #2D5798;
    border-color: #2D5798
}

.dsm-pills-outline-primary:hover {
    color: #fff;
    background-color: #2D5798;
    border-color: #2D5798
}

.dsm-pills-outline-primary:hover a.dsm-pills-close {
    color: #000
}

.dsm-pills-outline-primary.disabled,
.dsm-pills-outline-primary:disabled {
    color: #2D5798;
    background-color: transparent
}

.dsm-pills-outline-primary:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #2D5798;
    border-color: #2D5798
}

.dsm-pills-outline-primary:not(:disabled):not(.disabled):active a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-primary:not(:disabled):not(.disabled):hover {
    background-color: #00578a;
    color: #e6e6e6
}

.dsm-pills-outline-primary:not(:disabled):not(.disabled):hover:focus,
.dsm-pills-outline-primary:not(:disabled):not(.disabled):hover:active,
.dsm-pills-outline-primary:not(:disabled):not(.disabled):hover.active {
    background: #2D5798;
    color: #e6e6e6
}

.dsm-pills-outline-primary:not(:disabled):not(.disabled):hover:focus a.dsm-pills-close,
.dsm-pills-outline-primary:not(:disabled):not(.disabled):hover:active a.dsm-pills-close,
.dsm-pills-outline-primary:not(:disabled):not(.disabled):hover.active a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-primary:not(:disabled):not(.disabled):hover a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-primary a.dsm-pills-close {
    color: #2D5798
}

.dsm-pills-outline-secondary {
    background-color: #fff;
    border-color: #e6e6e6;
    color: #000
}

.dsm-pills-outline-secondary:hover {
    color: #1a1a1a;
    background-color: #ececec;
    background-color: #f4f4f4;
    border-color: #1a1a1a
}

.dsm-pills-outline-secondary.disabled,
.dsm-pills-outline-secondary:disabled {
    color: #000;
    background-color: #f4f4f4;
    border-color: #e6e6e6;
    opacity: .65
}

.dsm-pills-outline-secondary:not(:disabled):not(.disabled).active {
    background: #000;
    color: #e6e6e6;
    border-color: #e6e6e6
}

.dsm-pills-outline-secondary:not(:disabled):not(.disabled).active a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-secondary:not(:disabled):not(.disabled).hover {
    color: #1a1a1a;
    background-color: #f4f4f4;
    border-color: #1a1a1a;
    border-color: #dfdfdf
}

.dsm-pills-outline-secondary:not(:disabled):not(.disabled).hover:focus,
.dsm-pills-outline-secondary:not(:disabled):not(.disabled).hover.focus,
.dsm-pills-outline-secondary:not(:disabled):not(.disabled).hover:active,
.dsm-pills-outline-secondary:not(:disabled):not(.disabled).hover.active {
    background: #000;
    color: #e6e6e6
}

.dsm-pills-outline-secondary:not(:disabled):not(.disabled).hover:focus a.dsm-pills-close,
.dsm-pills-outline-secondary:not(:disabled):not(.disabled).hover.focus a.dsm-pills-close,
.dsm-pills-outline-secondary:not(:disabled):not(.disabled).hover:active a.dsm-pills-close,
.dsm-pills-outline-secondary:not(:disabled):not(.disabled).hover.active a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-secondary a.dsm-pills-close {
    color: #000
}

.dsm-pills-outline-danger {
    color: #F04E4E;
    border-color: #F04E4E
}

.dsm-pills-outline-danger:hover {
    color: #fff;
    background-color: #F04E4E;
    border-color: #F04E4E
}

.dsm-pills-outline-danger:hover a.dsm-pills-close {
    color: #000
}

.dsm-pills-outline-danger.disabled,
.dsm-pills-outline-danger:disabled {
    color: #F04E4E;
    background-color: transparent
}

.dsm-pills-outline-danger:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #F04E4E;
    border-color: #F04E4E
}

.dsm-pills-outline-danger:not(:disabled):not(.disabled):active a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-danger:not(:disabled):not(.disabled):hover {
    background-color: #b90218;
    color: #e6e6e6
}

.dsm-pills-outline-danger:not(:disabled):not(.disabled):hover:focus,
.dsm-pills-outline-danger:not(:disabled):not(.disabled):hover:active,
.dsm-pills-outline-danger:not(:disabled):not(.disabled):hover.active {
    background: #F04E4E;
    color: #e6e6e6
}

.dsm-pills-outline-danger:not(:disabled):not(.disabled):hover:focus a.dsm-pills-close,
.dsm-pills-outline-danger:not(:disabled):not(.disabled):hover:active a.dsm-pills-close,
.dsm-pills-outline-danger:not(:disabled):not(.disabled):hover.active a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-danger:not(:disabled):not(.disabled):hover a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-danger a.dsm-pills-close {
    color: #F04E4E
}

.dsm-pills-outline-success {
    color: #06C270;
    border-color: #06C270
}

.dsm-pills-outline-success:hover {
    color: #fff;
    background-color: #06C270;
    border-color: #06C270
}

.dsm-pills-outline-success:hover a.dsm-pills-close {
    color: #000
}

.dsm-pills-outline-success.disabled,
.dsm-pills-outline-success:disabled {
    color: #06C270;
    background-color: transparent
}

.dsm-pills-outline-success:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #06C270;
    border-color: #06C270
}

.dsm-pills-outline-success:not(:disabled):not(.disabled):active a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-success:not(:disabled):not(.disabled):hover {
    background-color: #1a6f25;
    color: #e6e6e6
}

.dsm-pills-outline-success:not(:disabled):not(.disabled):hover:focus,
.dsm-pills-outline-success:not(:disabled):not(.disabled):hover:active,
.dsm-pills-outline-success:not(:disabled):not(.disabled):hover.active {
    background: #06C270;
    color: #e6e6e6
}

.dsm-pills-outline-success:not(:disabled):not(.disabled):hover:focus a.dsm-pills-close,
.dsm-pills-outline-success:not(:disabled):not(.disabled):hover:active a.dsm-pills-close,
.dsm-pills-outline-success:not(:disabled):not(.disabled):hover.active a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-success:not(:disabled):not(.disabled):hover a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-success a.dsm-pills-close {
    color: #06C270
}

.dsm-pills-outline-warning {
    color: #ffb75d;
    border-color: #ffb75d
}

.dsm-pills-outline-warning:hover {
    color: #1a1a1a;
    background-color: #ffb75d;
    border-color: #ffb75d
}

.dsm-pills-outline-warning:hover a.dsm-pills-close {
    color: #000
}

.dsm-pills-outline-warning.disabled,
.dsm-pills-outline-warning:disabled {
    color: #ffb75d;
    background-color: transparent
}

.dsm-pills-outline-warning:not(:disabled):not(.disabled):active {
    color: #1a1a1a;
    background-color: #ffb75d;
    border-color: #ffb75d
}

.dsm-pills-outline-warning:not(:disabled):not(.disabled):active a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-warning:not(:disabled):not(.disabled):hover {
    background-color: #ffad46;
    color: #e6e6e6
}

.dsm-pills-outline-warning:not(:disabled):not(.disabled):hover:focus,
.dsm-pills-outline-warning:not(:disabled):not(.disabled):hover:active,
.dsm-pills-outline-warning:not(:disabled):not(.disabled):hover.active {
    background: #ffb75d;
    color: #e6e6e6
}

.dsm-pills-outline-warning:not(:disabled):not(.disabled):hover:focus a.dsm-pills-close,
.dsm-pills-outline-warning:not(:disabled):not(.disabled):hover:active a.dsm-pills-close,
.dsm-pills-outline-warning:not(:disabled):not(.disabled):hover.active a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-warning:not(:disabled):not(.disabled):hover a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-warning a.dsm-pills-close {
    color: #ffb75d
}

.dsm-pills-outline-light {
    color: #e6e6e6;
    border-color: #e6e6e6
}

.dsm-pills-outline-light:hover {
    color: #1a1a1a;
    background-color: #e6e6e6;
    border-color: #e6e6e6
}

.dsm-pills-outline-light:hover a.dsm-pills-close {
    color: #000
}

.dsm-pills-outline-light.disabled,
.dsm-pills-outline-light:disabled {
    color: #e6e6e6;
    background-color: transparent
}

.dsm-pills-outline-light:not(:disabled):not(.disabled):active {
    color: #1a1a1a;
    background-color: #e6e6e6;
    border-color: #e6e6e6
}

.dsm-pills-outline-light:not(:disabled):not(.disabled):active a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-light:not(:disabled):not(.disabled):hover {
    background-color: #dadada;
    color: #e6e6e6
}

.dsm-pills-outline-light:not(:disabled):not(.disabled):hover:focus,
.dsm-pills-outline-light:not(:disabled):not(.disabled):hover:active,
.dsm-pills-outline-light:not(:disabled):not(.disabled):hover.active {
    background: #e6e6e6;
    color: #e6e6e6
}

.dsm-pills-outline-light:not(:disabled):not(.disabled):hover:focus a.dsm-pills-close,
.dsm-pills-outline-light:not(:disabled):not(.disabled):hover:active a.dsm-pills-close,
.dsm-pills-outline-light:not(:disabled):not(.disabled):hover.active a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-light:not(:disabled):not(.disabled):hover a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-light a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-sategray {
    color: #999;
    border-color: #999
}

.dsm-pills-outline-sategray:hover {
    color: #1a1a1a;
    background-color: #999;
    border-color: #999
}

.dsm-pills-outline-sategray:hover a.dsm-pills-close {
    color: #000
}

.dsm-pills-outline-sategray.disabled,
.dsm-pills-outline-sategray:disabled {
    color: #999;
    background-color: transparent
}

.dsm-pills-outline-sategray:not(:disabled):not(.disabled):active {
    color: #1a1a1a;
    background-color: #999;
    border-color: #999
}

.dsm-pills-outline-sategray:not(:disabled):not(.disabled):active a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-sategray:not(:disabled):not(.disabled):hover {
    background-color: #8e8e8e;
    color: #e6e6e6
}

.dsm-pills-outline-sategray:not(:disabled):not(.disabled):hover:focus,
.dsm-pills-outline-sategray:not(:disabled):not(.disabled):hover:active,
.dsm-pills-outline-sategray:not(:disabled):not(.disabled):hover.active {
    background: #999;
    color: #e6e6e6
}

.dsm-pills-outline-sategray:not(:disabled):not(.disabled):hover:focus a.dsm-pills-close,
.dsm-pills-outline-sategray:not(:disabled):not(.disabled):hover:active a.dsm-pills-close,
.dsm-pills-outline-sategray:not(:disabled):not(.disabled):hover.active a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-sategray:not(:disabled):not(.disabled):hover a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-sategray a.dsm-pills-close {
    color: #999
}

.dsm-pills-outline-dark {
    color: #333;
    border-color: #333
}

.dsm-pills-outline-dark:hover {
    color: #fff;
    background-color: #333;
    border-color: #333
}

.dsm-pills-outline-dark:hover a.dsm-pills-close {
    color: #000
}

.dsm-pills-outline-dark.disabled,
.dsm-pills-outline-dark:disabled {
    color: #333;
    background-color: transparent
}

.dsm-pills-outline-dark:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #333;
    border-color: #333
}

.dsm-pills-outline-dark:not(:disabled):not(.disabled):active a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-dark:not(:disabled):not(.disabled):hover {
    background-color: #282828;
    color: #e6e6e6
}

.dsm-pills-outline-dark:not(:disabled):not(.disabled):hover:focus,
.dsm-pills-outline-dark:not(:disabled):not(.disabled):hover:active,
.dsm-pills-outline-dark:not(:disabled):not(.disabled):hover.active {
    background: #333;
    color: #e6e6e6
}

.dsm-pills-outline-dark:not(:disabled):not(.disabled):hover:focus a.dsm-pills-close,
.dsm-pills-outline-dark:not(:disabled):not(.disabled):hover:active a.dsm-pills-close,
.dsm-pills-outline-dark:not(:disabled):not(.disabled):hover.active a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-dark:not(:disabled):not(.disabled):hover a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-dark a.dsm-pills-close {
    color: #333
}

.dsm-pills-outline-black {
    color: #000;
    border-color: #000
}

.dsm-pills-outline-black:hover {
    color: #fff;
    background-color: #000;
    border-color: #000
}

.dsm-pills-outline-black:hover a.dsm-pills-close {
    color: #000
}

.dsm-pills-outline-black.disabled,
.dsm-pills-outline-black:disabled {
    color: #000;
    background-color: transparent
}

.dsm-pills-outline-black:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #000;
    border-color: #000
}

.dsm-pills-outline-black:not(:disabled):not(.disabled):active a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-black:not(:disabled):not(.disabled):hover {
    background-color: #000;
    color: #e6e6e6
}

.dsm-pills-outline-black:not(:disabled):not(.disabled):hover:focus,
.dsm-pills-outline-black:not(:disabled):not(.disabled):hover:active,
.dsm-pills-outline-black:not(:disabled):not(.disabled):hover.active {
    background: #000;
    color: #e6e6e6
}

.dsm-pills-outline-black:not(:disabled):not(.disabled):hover:focus a.dsm-pills-close,
.dsm-pills-outline-black:not(:disabled):not(.disabled):hover:active a.dsm-pills-close,
.dsm-pills-outline-black:not(:disabled):not(.disabled):hover.active a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-black:not(:disabled):not(.disabled):hover a.dsm-pills-close {
    color: #e6e6e6
}

.dsm-pills-outline-black a.dsm-pills-close {
    color: #000
}

.dsm-badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .3125rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .dsm-badge {
        transition: none
    }
}

a.dsm-badge:hover,
a.dsm-badge:focus {
    text-decoration: none
}

.dsm-badge:empty {
    display: none
}

.dsm-btn .dsm-badge {
    position: relative;
    top: -1px
}

.dsm-badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem
}

.dsm-badge-primary {
    color: #fff;
    background-color: #2D5798
}

a.dsm-badge-primary:hover,
a.dsm-badge-primary:focus {
    color: #fff;
    background-color: #00456e
}

a.dsm-badge-primary:focus,
a.dsm-badge-primary.focus {
    outline: 0;
    box-shadow: 0 0 0 .0625rem rgba(0, 101, 161, 0.5)
}

.dsm-badge-secondary {
    color: #1a1a1a;
    background-color: #fff
}

a.dsm-badge-secondary:hover,
a.dsm-badge-secondary:focus {
    color: #1a1a1a;
    background-color: #e6e6e6
}

a.dsm-badge-secondary:focus,
a.dsm-badge-secondary.focus {
    outline: 0;
    box-shadow: 0 0 0 .0625rem rgba(255, 255, 255, 0.5)
}

.dsm-badge-danger {
    color: #fff;
    background-color: #F04E4E
}

a.dsm-badge-danger:hover,
a.dsm-badge-danger:focus {
    color: #fff;
    background-color: #ec1f1f
}

a.dsm-badge-danger:focus,
a.dsm-badge-danger.focus {
    outline: 0;
    box-shadow: 0 0 0 .0625rem rgba(240, 78, 78, 0.5)
}

.dsm-badge-success {
    color: #fff;
    background-color: #06C270
}

a.dsm-badge-success:hover,
a.dsm-badge-success:focus {
    color: #fff;
    background-color: #049153
}

a.dsm-badge-success:focus,
a.dsm-badge-success.focus {
    outline: 0;
    box-shadow: 0 0 0 .0625rem rgba(6, 194, 112, 0.5)
}

.dsm-badge-warning {
    color: #1a1a1a;
    background-color: #ffb75d
}

a.dsm-badge-warning:hover,
a.dsm-badge-warning:focus {
    color: #1a1a1a;
    background-color: #cc9f00
}

a.dsm-badge-warning:focus,
a.dsm-badge-warning.focus {
    outline: 0;
    box-shadow: 0 0 0 .0625rem rgba(255, 199, 0, 0.5)
}

.dsm-badge-light {
    color: #1a1a1a;
    background-color: #e6e6e6
}

a.dsm-badge-light:hover,
a.dsm-badge-light:focus {
    color: #1a1a1a;
    background-color: #ccc
}

a.dsm-badge-light:focus,
a.dsm-badge-light.focus {
    outline: 0;
    box-shadow: 0 0 0 .0625rem rgba(230, 230, 230, 0.5)
}

.dsm-badge-sategray {
    color: #1a1a1a;
    background-color: #999
}

a.dsm-badge-sategray:hover,
a.dsm-badge-sategray:focus {
    color: #1a1a1a;
    background-color: gray
}

a.dsm-badge-sategray:focus,
a.dsm-badge-sategray.focus {
    outline: 0;
    box-shadow: 0 0 0 .0625rem rgba(153, 153, 153, 0.5)
}

.dsm-badge-dark {
    color: #fff;
    background-color: #333
}

a.dsm-badge-dark:hover,
a.dsm-badge-dark:focus {
    color: #fff;
    background-color: #1a1a1a
}

a.dsm-badge-dark:focus,
a.dsm-badge-dark.focus {
    outline: 0;
    box-shadow: 0 0 0 .0625rem rgba(51, 51, 51, 0.5)
}

.dsm-badge-black {
    color: #fff;
    background-color: #000
}

a.dsm-badge-black:hover,
a.dsm-badge-black:focus {
    color: #fff;
    background-color: #000
}

a.dsm-badge-black:focus,
a.dsm-badge-black.focus {
    outline: 0;
    box-shadow: 0 0 0 .0625rem rgba(0, 0, 0, 0.5)
}

.dsm-jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #ccc;
    border-radius: .5rem
}

@media (min-width: 576px) {
    .dsm-jumbotron {
        padding: 4rem 2rem
    }
}

.dsm-jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0
}

.dsm-alert {
    line-height: 1.1875rem;
    position: relative;
    margin-bottom: 1rem;
    padding: .875rem 1.25rem .6875rem 3.125rem;
    border: 1px solid transparent;
    border-radius: .3125rem
}

.dsm-alert>i {
    position: absolute;
    top: 13px;
    left: 1.25rem;
    font-size: 20px
}

.dsm-alert-heading {
    color: inherit
}

.dsm-alert-link {
    font-weight: 600
}

.dsm-alert-dismissible {
    padding-right: 4rem
}

.dsm-alert-dismissible .dsm-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: .6875rem 1.25rem;
    color: inherit
}

.dsm-alert-dismissible .dsm-close i {
    display: inline-block;
    font-size: 1rem;
    font-weight: bolder;
    transform: translateY(-2px)
}

.dsm-alert-primary {
    color: #fff;
    border-color: #2D5798;
    background-color: #2D5798
}

.dsm-alert-primary hr.dsm-hr {
    border-top-color: #058
}

.dsm-alert-primary .dsm-alert-link {
    color: #e6e6e6
}

.dsm-alert-secondary {
    color: #fff;
    border-color: #fff;
    background-color: #fff
}

.dsm-alert-secondary hr.dsm-hr {
    border-top-color: #f2f2f2
}

.dsm-alert-secondary .dsm-alert-link {
    color: #e6e6e6
}

.dsm-alert-danger {
    color: #fff;
    border-color: #F04E4E;
    background-color: #F04E4E
}

.dsm-alert-danger hr.dsm-hr {
    border-top-color: #ee3636
}

.dsm-alert-danger .dsm-alert-link {
    color: #e6e6e6
}

.dsm-alert-success {
    color: #fff;
    border-color: #06C270;
    background-color: #06C270
}

.dsm-alert-success hr.dsm-hr {
    border-top-color: #05a962
}

.dsm-alert-success .dsm-alert-link {
    color: #e6e6e6
}

.dsm-alert-warning {
    color: #333;
    border-color: #ffb75d;
    background-color: #ffb75d
}

.dsm-alert-warning hr.dsm-hr {
    border-top-color: #e6b300
}

.dsm-alert-warning .dsm-alert-link {
    color: #1a1a1a
}

.dsm-alert-light {
    color: #fff;
    border-color: #e6e6e6;
    background-color: #e6e6e6
}

.dsm-alert-light hr.dsm-hr {
    border-top-color: #d9d9d9
}

.dsm-alert-light .dsm-alert-link {
    color: #e6e6e6
}

.dsm-alert-sategray {
    color: #fff;
    border-color: #999;
    background-color: #999
}

.dsm-alert-sategray hr.dsm-hr {
    border-top-color: #8c8c8c
}

.dsm-alert-sategray .dsm-alert-link {
    color: #e6e6e6
}

.dsm-alert-dark {
    color: #fff;
    border-color: #333;
    background-color: #333
}

.dsm-alert-dark hr.dsm-hr {
    border-top-color: #262626
}

.dsm-alert-dark .dsm-alert-link {
    color: #e6e6e6
}

.dsm-alert-black {
    color: #fff;
    border-color: #000;
    background-color: #000
}

.dsm-alert-black hr.dsm-hr {
    border-top-color: #000
}

.dsm-alert-black .dsm-alert-link {
    color: #e6e6e6
}

.dsm-alert-close {
    font-size: .875rem;
    position: absolute;
    top: 1rem;
    right: 1rem
}

.dsm-alert-close.close {
    font-size: .875rem
}

@keyframes progress-bar-stripes {
    from {
        background-position: .675rem 0
    }

    to {
        background-position: 0 0
    }
}

.dsm-progress {
    display: flex;
    height: .675rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: rgba(51, 51, 51, 0.1);
    border-radius: 1rem;
    padding: .2rem
}

.dsm-progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #2D5798;
    transition: width 0.6s ease;
    border-radius: 1rem
}

@media (prefers-reduced-motion: reduce) {
    .dsm-progress-bar {
        transition: none
    }
}

.dsm-progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: .675rem .675rem
}

.dsm-progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite
}

@media (prefers-reduced-motion: reduce) {
    .dsm-progress-bar-animated {
        animation: none
    }
}

.dsm-media {
    display: flex;
    align-items: flex-start
}

.dsm-media-body {
    flex: 1
}

.nav-open {
    overflow: hidden
}

.dsm-wrapper {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    min-height: 45px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1)
}

@media (max-width: 1024px) {
    .dsm-wrapper {
        left: 0;
        transition: left .3s linear
    }
}

@media (max-width: 1024px) {
    .dsm-wrapper.slide-nav-toggle {
        left: 250px
    }
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top-color: #333
}

.caret.primary {
    border-top-color: #2D5798
}

.dsm-navbar {
    width: 100%;
    padding: 0 0 0 15px;
    background: #2D5798
}

@media (max-width: 1024px) {
    .dsm-navbar {
        padding: 0
    }
}

.dsm-navbar:after {
    content: '';
    clear: both;
    display: table
}

.dsm-navbar .dsm-nav-header .logo {
    line-height: 45px;
    display: block
}

.dsm-navbar .dsm-nav-header .logo img {
    width: auto;
    height: 25px;
    margin-right: 15px
}

@media (max-width: 1024px) {
    .dsm-navbar .dsm-nav-header .logo img {
        display: none
    }
}

.dsm-navbar .dsm-nav-header .logo .customer-logo {
    display: inline-block;
    vertical-align: middle;
    width: 160px;
    height: 25px;
    background-image: url(../../sources/images/logo/default@min.png);
    background-image: image-set(url(../../sources/images/logo/default@min.png) 1x, url(../../sources/images/logo/default@min2x.png) 2x);
    background-size: contain;
    background-repeat: no-repeat
}

@media (max-width: 1024px) {
    .dsm-navbar .dsm-nav-header .logo {
        margin-left: 40px
    }
}

.dsm-navbar .top-nav>li {
    float: left;
    position: relative
}

.dsm-navbar .top-nav>li .rap-manager a {
    color: #3071d4
}

.dsm-navbar .top-nav>li>a {
    display: block;
    color: #fff;
    transition: all 0.2s ease-in-out;
    padding: 0 10px;
    line-height: 45px
}

.dsm-navbar .top-nav>li>a:hover,
.dsm-navbar .top-nav>li>a:focus {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2)
}

.dsm-navbar .top-nav>li>a.dsm-dropdown-toggle::after {
    display: none
}

@media (max-width: 414px) {
    .dsm-navbar .top-nav>li.hidden-xs {
        display: none
    }
}

.dsm-navbar .top-nav>li.top-nav-search {
    display: none
}

.dsm-navbar .top-nav>li.top-nav-search .top-search-menu {
    padding: 10px;
    margin: 0
}

.dsm-navbar .top-nav>li.top-nav-search .top-search-menu>li {
    min-width: 220px;
    margin-bottom: 10px
}

.dsm-navbar .top-nav>li.top-nav-search .top-search-menu>li:last-child {
    margin-bottom: 0
}

@media (max-width: 414px) {
    .dsm-navbar .top-nav>li.top-nav-search .top-search-menu {
        width: 100%;
        position: fixed;
        left: 0;
        right: 0;
        top: 45px;
        background-clip: inherit
    }
}

@media (max-width: 1366px) {
    .dsm-navbar .top-nav>li.top-nav-search {
        display: block
    }
}

.dsm-navbar .toggle-left-nav-btn {
    display: none;
    color: #fff
}

@media (max-width: 1024px) {
    .dsm-navbar .toggle-left-nav-btn {
        height: 45px;
        display: flex;
        align-items: center;
        left: 10px;
        top: 0;
        position: absolute
    }
}

.fixed-sidebar-left {
    display: table;
    width: 100%;
    background: #f5f5f5
}

.fixed-sidebar-left>.slimScrollDiv {
    overflow: visible !important
}

@media (max-width: 1024px) {
    .fixed-sidebar-left>.slimScrollDiv {
        overflow: scroll !important
    }
}

.fixed-sidebar-left .shortcuts {
    display: table-cell;
    vertical-align: top;
    padding-top: 8px
}

.fixed-sidebar-left .shortcuts>ul {
    list-style: none;
    float: right;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin-bottom: 0
}

.fixed-sidebar-left .shortcuts>ul>li {
    padding-right: 10px;
    float: left
}

.fixed-sidebar-left .shortcuts>ul>li .dsm-input-group {
    width: 190px;
    transition: width 0.3s
}

.fixed-sidebar-left .shortcuts>ul>li .dsm-input-group.long {
    width: 340px
}

.fixed-sidebar-left .shortcuts>ul>li .dsm-input-group.icon input:focus {
    border-color: #dadada;
    box-shadow: none
}

.fixed-sidebar-left .shortcuts>ul>li .dsm-input-group.icon input {
    height: 32px;
    line-height: 1
}

.fixed-sidebar-left .shortcuts>ul>li .dsm-input-group.icon .dsm-input-group-append {
    border-left: 1px solid #dadada;
    padding-left: .75rem;
    top: .5rem
}

.fixed-sidebar-left .shortcuts>ul>li>a {
    color: #fff
}

@media (max-width: 1365px) {
    .fixed-sidebar-left .shortcuts {
        display: none
    }
}

.fixed-sidebar-left .shortcuts .dsm-menu-box.show .dsm-menu-search .icon .dsm-input-group-append i:before {
    transform: rotate(0)
}

.fixed-sidebar-left .side-nav {
    display: table-cell;
    overflow: visible !important;
    background: #f5f5f5
}

.fixed-sidebar-left .side-nav li.visiable-mobile {
    display: none
}

@media (max-width: 1024px) {
    .fixed-sidebar-left .side-nav li.visiable-mobile {
        display: block
    }
}

.fixed-sidebar-left .side-nav>li {
    position: relative;
    margin: 5px;
    margin-bottom: 0;
    float: left;
    width: auto
}

.fixed-sidebar-left .side-nav>li>a {
    font-size: 1rem;
    color: #333;
    padding: 10px 15px;
    position: relative;
    display: block;
    text-align: left;
    border-bottom: 3px solid transparent
}

.fixed-sidebar-left .side-nav>li>a.active {
    border-bottom: 3px solid #F04E4E;
    color: #F04E4E
}

@media (max-width: 1024px) {
    .fixed-sidebar-left .side-nav>li>a.active {
        border-bottom: none
    }
}

.fixed-sidebar-left .side-nav>li>a .caret {
    color: #F04E4E
}

@media (max-width: 1024px) {
    .fixed-sidebar-left .side-nav>li>a .caret {
        position: absolute;
        top: 50%;
        right: 15px;
        border-top-color: #F04E4E
    }
}

.fixed-sidebar-left .side-nav>li>a>i {
    display: none
}

@media (max-width: 1024px) {
    .fixed-sidebar-left .side-nav>li>a>i {
        display: inline-block;
        font-size: 18px;
        position: relative;
        top: 0;
        padding-right: 5px
    }
}

.fixed-sidebar-left .side-nav>li:hover>a {
    background: #fff;
    color: #F04E4E;
    border-bottom-color: transparent !important
}

.fixed-sidebar-left .side-nav>li:hover>a .caret {
    border-top-color: #F04E4E
}

@media (max-width: 1024px) {
    .fixed-sidebar-left .side-nav>li:hover>a .caret {
        border-top-color: #333
    }
}

.fixed-sidebar-left .side-nav>li:hover>ul {
    display: block
}

@media (max-width: 1024px) {
    .fixed-sidebar-left .side-nav>li {
        width: 100% !important;
        margin: 0;
        border-bottom: 1px solid #0078c0
    }
}

.fixed-sidebar-left .side-nav>li>.submenu {
    height: auto;
    left: 0;
    width: 270px;
    padding: 10px;
    position: absolute;
    z-index: 10;
    background: linear-gradient(#fff, #fdfae9);
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.15);
    list-style: none
}

.fixed-sidebar-left .side-nav>li>.submenu.two-col-list {
    width: 520px
}

.fixed-sidebar-left .side-nav>li>.submenu>li {
    width: 250px;
    float: left
}

@media (max-width: 1024px) {
    .fixed-sidebar-left .side-nav>li>.submenu>li {
        padding-left: 30px
    }
}

.fixed-sidebar-left .side-nav>li>.submenu>li a {
    padding: 10px;
    display: block;
    color: #333
}

.fixed-sidebar-left .side-nav>li>.submenu>li a:hover {
    color: #F04E4E
}

.fixed-sidebar-left .side-nav>li>.submenu>li a.current {
    color: #F04E4E
}

@media (max-width: 1024px) {
    .fixed-sidebar-left .side-nav>li>.submenu>li a {
        color: #fff
    }

    .fixed-sidebar-left .side-nav>li>.submenu>li a:hover,
    .fixed-sidebar-left .side-nav>li>.submenu>li a:focus {
        color: #fff
    }
}

@media (max-width: 1024px) {
    .fixed-sidebar-left .side-nav>li>.submenu {
        position: relative;
        width: 100% !important;
        height: auto;
        background: transparent;
        overflow: hidden;
        box-shadow: none;
        padding: 0;
        margin-bottom: 10px
    }

    .fixed-sidebar-left .side-nav>li>.submenu.collapse {
        display: none
    }

    .fixed-sidebar-left .side-nav>li>.submenu.collapse.show {
        display: block
    }
}

@media (max-width: 1024px) {
    .fixed-sidebar-left .side-nav {
        position: absolute;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        max-height: 100%;
        background: #2D5798
    }

    .fixed-sidebar-left .side-nav>li>a {
        color: #fff
    }
}

@media (max-width: 1024px) {
    .fixed-sidebar-left {
        position: fixed;
        width: 250px;
        height: 100%;
        left: -250px;
        top: 0;
        bottom: 0;
        overflow: hidden;
        transition: left .3s linear;
        background: #2D5798
    }
}

@media (max-width: 1024px) {

    .view-page .esm-bg,
    .view-page main {
        position: relative;
        left: 0;
        transition: left .3s linear
    }
}

@media (max-width: 1024px) {
    .slide-nav-toggle>.fixed-sidebar-left {
        left: 0
    }

    .slide-nav-toggle~.esm-bg,
    .slide-nav-toggle~main {
        left: 250px
    }
}

.dsm-list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0
}

.dsm-list-group-item-action {
    width: 100%;
    color: #4d4d4d;
    text-align: inherit
}

.dsm-list-group-item-action:hover,
.dsm-list-group-item-action:focus {
    z-index: 1;
    color: #4d4d4d;
    text-decoration: none;
    background-color: #e6e6e6
}

.dsm-list-group-item-action:active {
    color: #000;
    background-color: #ccc
}

.dsm-list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125)
}

.dsm-list-group-item:first-child {
    border-top-left-radius: .3125rem;
    border-top-right-radius: .3125rem
}

.dsm-list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: .3125rem;
    border-bottom-left-radius: .3125rem
}

.dsm-list-group-item.disabled,
.dsm-list-group-item:disabled {
    color: #666;
    pointer-events: none;
    background-color: #fff
}

.dsm-list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #2D5798;
    border-color: #2D5798
}

.dsm-list-group-horizontal {
    flex-direction: row
}

.dsm-list-group-horizontal .dsm-list-group-item {
    margin-right: -1px;
    margin-bottom: 0
}

.dsm-list-group-horizontal .dsm-list-group-item:first-child {
    border-top-left-radius: .3125rem;
    border-bottom-left-radius: .3125rem;
    border-top-right-radius: 0
}

.dsm-list-group-horizontal .dsm-list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: .3125rem;
    border-bottom-right-radius: .3125rem;
    border-bottom-left-radius: 0
}

@media (min-width: 576px) {
    .dsm-list-group-horizontal-sm {
        flex-direction: row
    }

    .dsm-list-group-horizontal-sm .dsm-list-group-item {
        margin-right: -1px;
        margin-bottom: 0
    }

    .dsm-list-group-horizontal-sm .dsm-list-group-item:first-child {
        border-top-left-radius: .3125rem;
        border-bottom-left-radius: .3125rem;
        border-top-right-radius: 0
    }

    .dsm-list-group-horizontal-sm .dsm-list-group-item:last-child {
        margin-right: 0;
        border-top-right-radius: .3125rem;
        border-bottom-right-radius: .3125rem;
        border-bottom-left-radius: 0
    }
}

@media (min-width: 768px) {
    .dsm-list-group-horizontal-md {
        flex-direction: row
    }

    .dsm-list-group-horizontal-md .dsm-list-group-item {
        margin-right: -1px;
        margin-bottom: 0
    }

    .dsm-list-group-horizontal-md .dsm-list-group-item:first-child {
        border-top-left-radius: .3125rem;
        border-bottom-left-radius: .3125rem;
        border-top-right-radius: 0
    }

    .dsm-list-group-horizontal-md .dsm-list-group-item:last-child {
        margin-right: 0;
        border-top-right-radius: .3125rem;
        border-bottom-right-radius: .3125rem;
        border-bottom-left-radius: 0
    }
}

@media (min-width: 992px) {
    .dsm-list-group-horizontal-lg {
        flex-direction: row
    }

    .dsm-list-group-horizontal-lg .dsm-list-group-item {
        margin-right: -1px;
        margin-bottom: 0
    }

    .dsm-list-group-horizontal-lg .dsm-list-group-item:first-child {
        border-top-left-radius: .3125rem;
        border-bottom-left-radius: .3125rem;
        border-top-right-radius: 0
    }

    .dsm-list-group-horizontal-lg .dsm-list-group-item:last-child {
        margin-right: 0;
        border-top-right-radius: .3125rem;
        border-bottom-right-radius: .3125rem;
        border-bottom-left-radius: 0
    }
}

@media (min-width: 1200px) {
    .dsm-list-group-horizontal-xl {
        flex-direction: row
    }

    .dsm-list-group-horizontal-xl .dsm-list-group-item {
        margin-right: -1px;
        margin-bottom: 0
    }

    .dsm-list-group-horizontal-xl .dsm-list-group-item:first-child {
        border-top-left-radius: .3125rem;
        border-bottom-left-radius: .3125rem;
        border-top-right-radius: 0
    }

    .dsm-list-group-horizontal-xl .dsm-list-group-item:last-child {
        margin-right: 0;
        border-top-right-radius: .3125rem;
        border-bottom-right-radius: .3125rem;
        border-bottom-left-radius: 0
    }
}

.dsm-list-group-flush .dsm-list-group-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0
}

.dsm-list-group-flush .dsm-list-group-item:last-child {
    margin-bottom: -1px
}

.dsm-list-group-flush:first-child .dsm-list-group-item:first-child {
    border-top: 0
}

.dsm-list-group-flush:last-child .dsm-list-group-item:last-child {
    margin-bottom: 0;
    border-bottom: 0
}

.dsm-list-group-item-primary {
    color: #172d4f;
    background-color: #c4d0e2
}

.dsm-list-group-item-primary.dsm-list-group-item-action:hover,
.dsm-list-group-item-primary.dsm-list-group-item-action:focus {
    color: #172d4f;
    background-color: #b3c2da
}

.dsm-list-group-item-primary.dsm-list-group-item-action.active {
    color: #fff;
    background-color: #172d4f;
    border-color: #172d4f
}

.dsm-list-group-item-secondary {
    color: #858585;
    background-color: #fff
}

.dsm-list-group-item-secondary.dsm-list-group-item-action:hover,
.dsm-list-group-item-secondary.dsm-list-group-item-action:focus {
    color: #858585;
    background-color: #f2f2f2
}

.dsm-list-group-item-secondary.dsm-list-group-item-action.active {
    color: #fff;
    background-color: #858585;
    border-color: #858585
}

.dsm-list-group-item-danger {
    color: #7d2929;
    background-color: #fbcdcd
}

.dsm-list-group-item-danger.dsm-list-group-item-action:hover,
.dsm-list-group-item-danger.dsm-list-group-item-action:focus {
    color: #7d2929;
    background-color: #f9b5b5
}

.dsm-list-group-item-danger.dsm-list-group-item-action.active {
    color: #fff;
    background-color: #7d2929;
    border-color: #7d2929
}

.dsm-list-group-item-success {
    color: #03653a;
    background-color: #b9eed7
}

.dsm-list-group-item-success.dsm-list-group-item-action:hover,
.dsm-list-group-item-success.dsm-list-group-item-action:focus {
    color: #03653a;
    background-color: #a4e9cb
}

.dsm-list-group-item-success.dsm-list-group-item-action.active {
    color: #fff;
    background-color: #03653a;
    border-color: #03653a
}

.dsm-list-group-item-warning {
    color: #856700;
    background-color: #ffefb8
}

.dsm-list-group-item-warning.dsm-list-group-item-action:hover,
.dsm-list-group-item-warning.dsm-list-group-item-action:focus {
    color: #856700;
    background-color: #ffe99f
}

.dsm-list-group-item-warning.dsm-list-group-item-action.active {
    color: #fff;
    background-color: #856700;
    border-color: #856700
}

.dsm-list-group-item-light {
    color: #777;
    background-color: #f8f8f8
}

.dsm-list-group-item-light.dsm-list-group-item-action:hover,
.dsm-list-group-item-light.dsm-list-group-item-action:focus {
    color: #777;
    background-color: #ebebeb
}

.dsm-list-group-item-light.dsm-list-group-item-action.active {
    color: #fff;
    background-color: #777;
    border-color: #777
}

.dsm-list-group-item-sategray {
    color: #505050;
    background-color: #e2e2e2
}

.dsm-list-group-item-sategray.dsm-list-group-item-action:hover,
.dsm-list-group-item-sategray.dsm-list-group-item-action:focus {
    color: #505050;
    background-color: #d5d5d5
}

.dsm-list-group-item-sategray.dsm-list-group-item-action.active {
    color: #fff;
    background-color: #505050;
    border-color: #505050
}

.dsm-list-group-item-dark {
    color: #1b1b1b;
    background-color: #c6c6c6
}

.dsm-list-group-item-dark.dsm-list-group-item-action:hover,
.dsm-list-group-item-dark.dsm-list-group-item-action:focus {
    color: #1b1b1b;
    background-color: #b9b9b9
}

.dsm-list-group-item-dark.dsm-list-group-item-action.active {
    color: #fff;
    background-color: #1b1b1b;
    border-color: #1b1b1b
}

.dsm-list-group-item-black {
    color: #000;
    background-color: #b8b8b8
}

.dsm-list-group-item-black.dsm-list-group-item-action:hover,
.dsm-list-group-item-black.dsm-list-group-item-action:focus {
    color: #000;
    background-color: #ababab
}

.dsm-list-group-item-black.dsm-list-group-item-action.active {
    color: #fff;
    background-color: #000;
    border-color: #000
}

.button-list {
    margin: 0;
    padding: 0;
    list-style: none
}

.button-list li a {
    text-align: center;
    padding: 6px;
    display: block;
    border: 1px solid #e6e6e6;
    color: #666;
    border-radius: 3px;
    margin-bottom: 10px
}

.button-list li a:hover,
.button-list li a:focus {
    border-color: #2D5798;
    color: #2D5798
}

.dsm-list-group-outlilne .dsm-list-group-item {
    padding-left: 0;
    padding-right: 0
}

.dsm-list-group-outlilne .dsm-list-group-item.active,
.dsm-list-group-outlilne .dsm-list-group-item:hover,
.dsm-list-group-outlilne .dsm-list-group-item:active {
    color: #2D5798;
    background-color: transparent;
    border-color: #ddd
}

.dsm-list-group-outlilne .dsm-list-group-item.active {
    font-weight: 600
}

.dsm-close {
    float: right;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    color: #fff
}

.dsm-close:hover {
    color: #fff;
    text-decoration: none
}

.dsm-close:not(:disabled):not(.disabled):hover,
.dsm-close:not(:disabled):not(.disabled):focus {
    opacity: .75
}

button.dsm-close {
    padding: 0;
    background-color: transparent;
    border: 0;
    appearance: none
}

a.dsm-close.disabled {
    pointer-events: none
}

.dsm-toast {
    max-width: 350px;
    overflow: hidden;
    font-size: .875rem;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    border-radius: .25rem
}

.dsm-toast:not(:last-child) {
    margin-bottom: .75rem
}

.dsm-toast.showing {
    opacity: 1
}

.dsm-toast.show {
    display: block;
    opacity: 1
}

.dsm-toast.hide {
    display: none
}

.dsm-toast-header {
    display: flex;
    align-items: center;
    padding: .25rem .75rem;
    color: #666;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05)
}

.dsm-toast-body {
    padding: .75rem
}

.dsm-modal-open {
    overflow: hidden
}

.dsm-modal-open .dsm-modal {
    overflow-x: hidden;
    overflow-y: auto
}

.dsm-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0
}

.dsm-modal.dsm-modal-inline {
    position: relative;
    display: block;
    z-index: 10
}

.dsm-modal.dsm-modal-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0 !important
}

.dsm-modal.dsm-modal-fullscreen .dsm-modal-dialog {
    min-height: 100%;
    height: 100%;
    max-width: none;
    margin: 0
}

.dsm-modal.dsm-modal-fullscreen .dsm-dialog-content {
    height: 100%;
    border-radius: 0
}

.dsm-modal.dsm-modal-fullscreen .dsm-dialog-content .dsm-modal-body {
    overflow: hidden
}

.dsm-modal.dsm-modal-fullscreen .dsm-dialog-content .dsm-modal-body .dsm-swiper-container.gallery-top {
    height: calc(100% - 165px)
}

.dsm-modal.dsm-modal-slider-right {
    padding: 0 !important
}

.dsm-modal.dsm-modal-slider-right .dsm-modal-dialog {
    transform: translate(100%, 0);
    margin-top: 0;
    margin-right: 0;
    height: 100vh;
    margin-bottom: 0;
    transition: transform .3s ease-out
}

.dsm-modal.dsm-modal-slider-right .dsm-modal-dialog .dsm-dialog-content {
    border-radius: 0;
    height: 100%
}

.dsm-modal.dsm-modal-slider-right .dsm-modal-dialog .dsm-dialog-content .dsm-dialog-header {
    border-radius: 0
}

.dsm-modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem
}

.dsm-modal.fade .dsm-modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px)
}

@media (prefers-reduced-motion: reduce) {
    .dsm-modal.fade .dsm-modal-dialog {
        transition: none
    }
}

.dsm-modal.show .dsm-modal-dialog {
    transform: none
}

.dsm-modal-dialog-scrollable {
    display: flex;
    max-height: calc(100% - 1rem)
}

.dsm-modal-dialog-scrollable .dsm-dialog-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden
}

.dsm-modal-dialog-scrollable .dsm-dialog-header,
.dsm-modal-dialog-scrollable .dsm-modal-footer {
    flex-shrink: 0
}

.dsm-modal-dialog-scrollable .dsm-modal-body {
    overflow-y: auto
}

.dsm-modal-dialog-centered {
    display: flex;
    align-items: center;
    max-height: 90%;
    overflow-y: auto;
    min-height: calc(100% - 1rem);
    -ms-overflow-style: none;
    width: calc(100vw + 18px);
    scrollbar-width: none
}

.dsm-modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    content: ""
}

.dsm-modal-dialog-centered.dsm-modal-dialog-scrollable {
    flex-direction: column;
    justify-content: center;
    height: 100%
}

.dsm-modal-dialog-centered.dsm-modal-dialog-scrollable .dsm-dialog-content {
    max-height: none
}

.dsm-modal-dialog-centered.dsm-modal-dialog-scrollable::before {
    content: none
}

.dsm-modal-dialog-centered::-webkit-scrollbar {
    display: none
}

.dsm-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #2b2b2b;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.1);
    border-radius: .25rem;
    outline: 0
}

.dsm-modal-content.light {
    background-color: #f5f5f5
}

.dsm-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

.dsm-modal-backdrop.fade {
    opacity: 0
}

.dsm-modal-backdrop.show {
    opacity: .5
}

.dsm-dialog-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 0;
    margin: 0 20px;
    border-bottom: 1px solid #dadada;
    background-color: #fff;
    color: #2b2b2b;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    position: sticky;
    top: 0;
    z-index: 10
}

.dsm-dialog-header .close {
    padding: 1rem 1.25rem;
    margin: -.7rem -1.25rem -1rem auto;
    font-size: .875rem;
    font-weight: 600;
    color: #fff;
    opacity: 1;
    text-shadow: none
}

.dsm-dialog-close {
  color: #5f5f5f
}

.dsm-dialog-footer {
    position: sticky;
    bottom: 0;
    z-index: 10;
    background: #fff !important;
}

.dsm-dialog-footer .dsm-btn {
  font-size: 14px;
  padding: 8px 1rem;
  line-height: 1;
  font-weight: 600
}

.dsm-dialog-footer .text-link {
  padding: 8px 1rem;
  line-height: 1;
  border: 1px solid #dadada;
  border-radius: .25rem;
  color: #2b2b2b !important;
  font-weight: 600
}

.dsm-dialog-title {
  font-size: 1rem
}

.dsm-dialog-body {
  padding: 20px
}

.dsm-dialog-side .dsm-dialog-header {
    margin: 0;
    padding: 20px
}

.dsm-modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1rem;
    font-weight: 600;
    color: #fff
}

.dsm-modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 20px;
    font-size: .75rem
}

.dsm-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.dsm-modal-footer>:not(:first-child) {
    margin-left: .25rem
}

.dsm-modal-footer>:not(:last-child) {
    margin-right: .25rem
}

.dsm-modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width: 576px) {
    .dsm-modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto
    }

    .dsm-modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem)
    }

    .dsm-modal-dialog-scrollable .dsm-dialog-content {
        max-height: calc(100vh - 3.5rem)
    }

    .dsm-modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

    .dsm-modal-dialog-centered::before {
        height: calc(100vh - 3.5rem)
    }

    .dsm-modal-sm {
        max-width: 350px
    }
}

@media (min-width: 992px) {

    .dsm-modal-lg,
    .dsm-modal-xl {
        max-width: 800px
    }
}

@media (min-width: 1200px) {
    .dsm-modal-xl {
        max-width: 70%
    }
}

.dsm-swiper-container.gallery-top {
    height: 85vh;
    padding: 0;
    background: #333
}

.dsm-swiper-container.gallery-top .dsm-swiper-slide {
    display: flex;
    background-color: #333;
    justify-content: center;
    align-items: center
}

.dsm-swiper-container.gallery-top .dsm-swiper-slide .gallery-top-text {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 100%;
    padding: 5px;
    color: #fff;
    background: #000;
    font-size: 1rem
}

.dsm-swiper-container.gallery-top .dsm-swiper-slide img {
    max-width: 100%;
    max-height: 100%
}

.dsm-swiper-container.gallery-top .dsm-swiper-button-next,
.dsm-swiper-container.gallery-top .dsm-swiper-button-prev {
    position: absolute;
    top: auto;
    bottom: 0;
    font-size: 2rem;
    padding: .875rem;
    display: block;
    width: auto;
    height: auto;
    color: #fff;
    background: #2D5798
}

.dsm-swiper-container.gallery-top .dsm-swiper-button-next::after,
.dsm-swiper-container.gallery-top .dsm-swiper-button-prev::after {
    content: none
}

.dsm-swiper-container.gallery-top .dsm-swiper-button-prev {
    left: 50%;
    margin-left: -60px;
    background-color: #fff;
    color: #000
}

.dsm-swiper-container.gallery-top .dsm-swiper-button-prev .ds-arrow-left {
    font-size: 2rem
}

.dsm-swiper-container.gallery-top .dsm-swiper-button-next {
    right: 50%;
    margin-right: -60px
}

.dsm-swiper-container.gallery-top .dsm-swiper-button-next .ds-arrow-right {
    font-size: 2rem
}

.dsm-swiper-container.gallery-top .dsm-swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.dsm-swiper-container.gallery-thumbs {
    margin: 0 1rem;
    padding: 1rem 0 0
}

.dsm-swiper-container.gallery-thumbs .dsm-swiper-slide {
    cursor: pointer;
    width: 12rem;
    height: 9.5rem;
    margin-right: 1rem;
    border-bottom: 7px solid #fff;
    padding-bottom: 1.0625rem
}

.dsm-swiper-container.gallery-thumbs .dsm-swiper-slide .dsm-swiper-thumbs {
    position: relative;
    width: 100%;
    height: 100%
}

.dsm-swiper-container.gallery-thumbs .dsm-swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.dsm-swiper-container.gallery-thumbs .dsm-swiper-slide .dsm-delete-thumbs {
    position: absolute;
    top: -.825rem;
    right: -.8rem;
    color: #F04E4E;
    font-size: 1.6875rem
}

.dsm-swiper-container.gallery-thumbs .dsm-swiper-slide.dsm-swiper-slide-thumb-active {
    border-bottom-color: #2D5798
}

.dsm-swiper-container.gallery-thumbs .dsm-swiper-slide:hover {
    opacity: .8
}

.dsm-swiper-container.gallery-thumbs .dsm-swiper-slide-none {
    background: linear-gradient(45deg, transparent 49.5%, #b3b3b3 49.5%, #b3b3b3 50.5%, transparent 50.5%);
    background-size: 20px 20px;
    padding-bottom: 0px !important;
    height: 7rem
}

.dsm-swiper-container.gallery-no-spacing {
    padding: 0;
    height: 85vh;
    background: #333
}

.dsm-swiper-container.gallery-no-spacing .rotate-and-zoom {
    position: relative
}

.dsm-swiper-container.gallery-no-spacing .dsm-swiper-button-next,
.dsm-swiper-container.gallery-no-spacing .dsm-swiper-button-prev {
    left: auto;
    border-radius: 0;
    bottom: 0;
    top: auto;
    right: 0;
    margin-right: 0
}

.dsm-swiper-container.gallery-no-spacing .dsm-swiper-button-prev {
    bottom: 60px
}

.dsm-swiper-container.gallery-no-spacing .dsm-swiper-pagination {
    display: none
}

.dsm-swiper-container .dsm-files-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 260px
}

.dsm-swiper-container .dsm-files-wrap .dsm-files {
    width: 204px;
    height: 183px
}

.dsm-photo-action {
    text-align: right;
    padding: 0 1rem
}

.dsm-photo-action a {
    font-size: 1rem;
    color: #2D5798;
    cursor: pointer
}

.dsm-photo-gallery-upload-flex {
    display: flex
}

.dsm-photo-gallery-upload-flex .dsm-photo-gallery-upload-items {
    width: 50%
}

.dsm-photo-gallery-upload-flex .dsm-dropzone {
    min-height: 161px
}

.dsm-photo-gallery-list {
    height: 85vh;
    background-color: #f5f5f5
}

.dsm-photo-gallery-list.dsm-new-photo-gallery-list .dsm-dropzone-item-wrapper {
    height: 0 !important;
    padding-bottom: 60%
}

.dsm-photo-gallery-list.dsm-new-photo-gallery-list .dsm-dropzone-item-wrapper .dsm-files {
    width: 100%;
    height: 100%;
    max-width: 80px;
    max-height: 72px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.dsm-photo-gallery-list.dsm-new-photo-gallery-list .dsm-dropzone-item-picture>img {
    position: absolute;
    object-fit: initial
}

.dsm-photo-gallery-list.dsm-new-photo-gallery-list.img-fit-cover .dsm-dropzone-item-picture>img {
    object-fit: cover
}

.dsm-photo-gallery-list.dsm-new-photo-gallery-list.img-fit-contain .dsm-dropzone-item-picture>img {
    object-fit: contain
}

.dsm-photo-gallery-title {
    padding-bottom: 2rem
}

.dsm-photo-gallery-title .dsm-photo-gallery-title-text {
    display: inline-block;
    width: calc(100% - 100px);
    vertical-align: middle;
    margin: 0;
    padding-right: 5rem
}

.photo-container-bottom {
    margin-top: -120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}

.photo-container-bottom .rotate-and-zoom {
    position: absolute;
    right: .625rem;
    bottom: .625rem;
    z-index: 1;
    display: flex;
    justify-content: space-between
}

.photo-container-bottom .rotate-and-zoom .rotate {
    margin-right: 1rem
}

.photo-container-bottom .rotate-and-zoom .rotate-btn-left {
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjIycHgiIGhlaWdodD0iMjJweCIgdmlld0JveD0iMCAwIDIyIDIyIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDx0aXRsZT43NjRGRUY2Ri1CQTg1LTQ3MzEtQjBEQy1GNTk1QzU2NTA2OEY8L3RpdGxlPg0KICAgIDxnIGlkPSJJbnRlcm5hbC1wYWdlIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPg0KICAgICAgICA8ZyBpZD0iMy4yLVBob3RvLXZpZXciIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00MDQuMDAwMDAwLCAtOTUzLjAwMDAwMCkiIHN0cm9rZT0iIzAwNjVBMSIgc3Ryb2tlLXdpZHRoPSIxLjUiPg0KICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwLTUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM5NS4wMDAwMDAsIDk0NC4wMDAwMDApIj4NCiAgICAgICAgICAgICAgICA8ZyBpZD0iQXJyb3dzLy1Sb3RhdGUtcmlnaHQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuMDAwMDAwKSI+DQogICAgICAgICAgICAgICAgICAgIDxnIGlkPSJyZWRvIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjYxODg3OSwgMC42MjE5MTkpIj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxwb2x5bGluZSBpZD0iU2hhcGUiIHBvaW50cz0iMTguNzU2MTIwNyAwLjAwMTQxNDcwNTYgMTguNzU2MTIwNyA2LjI1MTQxNDcxIDEyLjUwNjEyMDcgNi4yNTE0MTQ3MSI+PC9wb2x5bGluZT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik05LjM4MTEyMDcxLDE4Ljc1MTQxNjMgQzQuNjEyNzg0ODgsMTguNzU0MjEyNiAwLjYwMTk3Mjc3NCwxNS4xNzczNDUyIDAuMDYxMTIxNDUyNCwxMC40Mzk3ODExIEMtMC40Nzk3Mjk4Nyw1LjcwMjIxNjkgMi42MjE3MDExNywxLjMxMzM5OTQgNy4yNjc5NzQ4OCwwLjI0MTQwMzU4NCBDMTEuOTE0MjQ4NiwtMC44MzA1OTIyMzEgMTYuNjI1MDA3NywxLjc1NTc4NDA4IDE4LjIxNDQ1NCw2LjI1MTQxNDcxIiBpZD0iU2hhcGUiPjwvcGF0aD4NCiAgICAgICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgICAgIDwvZz4NCiAgICAgICAgICAgIDwvZz4NCiAgICAgICAgPC9nPg0KICAgIDwvZz4NCjwvc3ZnPg==") no-repeat center #fff
}

.photo-container-bottom .rotate-and-zoom .rotate-btn-right {
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjIycHgiIGhlaWdodD0iMjJweCIgdmlld0JveD0iMCAwIDIyIDIyIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDx0aXRsZT5FNkE4N0FDNS0zQjA4LTQ2MkMtODNEQS04OUUxMjRGRjAwMkU8L3RpdGxlPg0KICAgIDxnIGlkPSJJbnRlcm5hbC1wYWdlIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPg0KICAgICAgICA8ZyBpZD0iMy4yLVBob3RvLXZpZXciIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00NDQuMDAwMDAwLCAtOTUzLjAwMDAwMCkiIHN0cm9rZT0iIzAwNjVBMSIgc3Ryb2tlLXdpZHRoPSIxLjUiPg0KICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwLTUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM5NS4wMDAwMDAsIDk0NC4wMDAwMDApIj4NCiAgICAgICAgICAgICAgICA8ZyBpZD0iR3JvdXAtMTQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwLjAwMDAwMCwgMC4wMDAwMDApIj4NCiAgICAgICAgICAgICAgICAgICAgPGcgaWQ9IkFycm93cy8tUm90YXRlLWxlZnQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIwLjAwMDAwMCwgMjAuMDAwMDAwKSBzY2FsZSgtMSwgMSkgdHJhbnNsYXRlKC0yMC4wMDAwMDAsIC0yMC4wMDAwMDApIHRyYW5zbGF0ZSgxMC4wMDAwMDAsIDEwLjAwMDAwMCkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGcgaWQ9InJlZG8iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuNjE4ODc5LCAwLjYyMTkxOSkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwb2x5bGluZSBpZD0iU2hhcGUiIHBvaW50cz0iMTguNzU2MTIwNyAwLjAwMTQxNDcwNTYgMTguNzU2MTIwNyA2LjI1MTQxNDcxIDEyLjUwNjEyMDcgNi4yNTE0MTQ3MSI+PC9wb2x5bGluZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNOS4zODExMjA3MSwxOC43NTE0MTYzIEM0LjYxMjc4NDg4LDE4Ljc1NDIxMjYgMC42MDE5NzI3NzQsMTUuMTc3MzQ1MiAwLjA2MTEyMTQ1MjQsMTAuNDM5NzgxMSBDLTAuNDc5NzI5ODcsNS43MDIyMTY5IDIuNjIxNzAxMTcsMS4zMTMzOTk0IDcuMjY3OTc0ODgsMC4yNDE0MDM1ODQgQzExLjkxNDI0ODYsLTAuODMwNTkyMjMxIDE2LjYyNTAwNzcsMS43NTU3ODQwOCAxOC4yMTQ0NTQsNi4yNTE0MTQ3MSIgaWQ9IlNoYXBlIj48L3BhdGg+DQogICAgICAgICAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICAgICAgICAgIDwvZz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICA8L2c+DQogICAgICAgIDwvZz4NCiAgICA8L2c+DQo8L3N2Zz4=") no-repeat center #fff
}

.photo-container-bottom .rotate-and-zoom .zoom-btn-in {
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuc1hsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4NCiAgICA8ZyBpZD0iMy4zLVBob3RvLXZpZXctKFJlYWN0aXZlKSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQ5NS4wMDAwMDAsIC05NTQuMDAwMDAwKSIgZmlsbD0nIzAwNjVBMScgZmlsbC1ydWxlPSJub256ZXJvIj4NCiAgICAgICAgPGcgaWQ9Ikdyb3VwLTUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM5NS4wMDAwMDAsIDk0NC4wMDAwMDApIj4NCiAgICAgICAgICAgIDxnIGlkPSJHcm91cC0zIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg5MC4wMDAwMDAsIDAuMDAwMDAwKSI+DQogICAgICAgICAgICAgICAgPGcgaWQ9Inpvb20taW4iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuMDAwMDAwKSI+DQogICAgICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik04LjE3NzU2ODk2LC0wLjAwMDgzMzMyOTUyOSBDMTIuNjkzMTcyOCwtMC4wMDAzMzUxMTA5NzQgMTYuMzUzNjY4NCwzLjY2MDE2MDU0IDE2LjM1NDE2NjcsOC4xNzU3NjQzOCBDMTYuMzU0Mzg2NywxMC4xNzAwODUzIDE1LjYzMDIxNTMsMTIuMDQ2MDcyIDE0LjM4NTI5NTMsMTMuNDk4ODk3IEwxOS44MTY5NzMyLDE4LjkzMjI1NjQgQzIwLjA2MTAzMzUsMTkuMTc2MzUxNCAyMC4wNjEwMDUzLDE5LjU3MjA3OTUgMTkuODE2OTEwMywxOS44MTYxMzk4IEMxOS41OTUwMDU3LDIwLjAzODAxMjkgMTkuMjQ3Nzg0NSwyMC4wNTgxNTk5IDE5LjAwMzEyMTIsMTkuODc2NTk3MSBMMTguOTMzMDI2OCwxOS44MTYwNzcgTDEzLjUwMDg5NywxNC4zODM5MTM5IEMxMi44NTYyNTA4LDE0LjkzNzAxMTcgMTIuMTE4OTU2NywxNS4zOTQ5MjYzIDExLjMwNjQ3NzMsMTUuNzMxNTE4OCBDOC4yNTA2NzMwNiwxNi45OTc0NzE5IDQuNzMzMTY1NzQsMTYuMjk3ODk3MSAyLjM5NDMwMTAxLDEzLjk1OTAzMjMgQzAuMDU1NDM2MjgxMywxMS42MjAxNjc2IC0wLjY0NDEzODU2NSw4LjEwMjY2MDI3IDAuNjIxODE0NDg0LDUuMDQ2ODU2MDcgQzEuODg3NzY3NTMsMS45OTEwNTE4NyA0Ljg2OTkxNDc2LC0wLjAwMTE5ODI3MTggOC4xNzc1Njg5NiwtMC4wMDA4MzMzMjk1MjkgWiBNMTMuMDc1NTg5NywxMy4wNzM4NjAyIEMxNC4zNTE0NjEyLDExLjc5NjExODUgMTUuMTA0MzczMiwxMC4wNDc1MjM4IDE1LjEwNDE2NjcsOC4xNzU5MDIyOSBDMTUuMTAzNzQ0Niw0LjM1MDU0NjY3IDEyLjAwMjc4NjcsMS4yNDk1ODg3MiA4LjE3NzQzMTA0LDEuMjQ5MTY2NjYgQzUuMzc1Mzc5NzUsMS4yNDg4NTc1MSAyLjg0OTA3ODkzLDIuOTM2NTc1MzggMS43NzY2Mzc1MSw1LjUyNTI3NDA3IEMwLjcwNDE5NjA4NSw4LjExMzk3Mjc3IDEuMjk2ODM1LDExLjA5Mzc5OTQgMy4yNzgxODQ0OSwxMy4wNzUxNDg4IEM1LjI1OTUzMzk3LDE1LjA1NjQ5ODMgOC4yMzkzNjA1NiwxNS42NDkxMzcyIDEwLjgyODA1OTMsMTQuNTc2Njk1OCBDMTEuNjM3MDI3NiwxNC4yNDE1NTc5IDEyLjM1ODAwOTUsMTMuNzY0NDQxNSAxMi45NjY5ODYzLDEzLjE4MTI5OTcgTDEzLjA3NTU4OTcsMTMuMDczODYwMiBMMTMuMDc1NTg5NywxMy4wNzM4NjAyIFogTTguMTI1LDMuNzQ5MTY2NjcgQzguNDQxNDEzMTQsMy43NDkxNjY2NyA4LjcwMjkwOTEzLDMuOTg0Mjk0OSA4Ljc0NDI5NDQ5LDQuMjg5MzU3ODcgTDguNzUsNC4zNzQxNjY2NyBMOC43NDk5Mjc2OCw3LjQ5ODE2NjY3IEwxMS44NzUsNy40OTkxNjY2NyBDMTIuMjIwMTc4LDcuNDk5MTY2NjcgMTIuNSw3Ljc3ODk4ODcgMTIuNSw4LjEyNDE2NjY3IEMxMi41LDguNDQwNTc5OCAxMi4yNjQ4NzE4LDguNzAyMDc1OCAxMS45NTk4MDg4LDguNzQzNDYxMTUgTDExLjg3NSw4Ljc0OTE2NjY3IEw4Ljc0OTkyNzY4LDguNzQ4MTY2NjcgTDguNzUsMTEuODc0MTY2NyBDOC43NSwxMi4yMTkzNDQ2IDguNDcwMTc3OTcsMTIuNDk5MTY2NyA4LjEyNSwxMi40OTkxNjY3IEM3LjgwODU4Njg2LDEyLjQ5OTE2NjcgNy41NDcwOTA4NywxMi4yNjQwMzg0IDcuNTA1NzA1NTEsMTEuOTU4OTc1NSBMNy41LDExLjg3NDE2NjcgTDcuNDk5OTI3NjgsOC43NDgxNjY2NyBMNC4zNzUsOC43NDkxNjY2NyBDNC4wMjk4MjIwMyw4Ljc0OTE2NjY3IDMuNzUsOC40NjkzNDQ2NCAzLjc1LDguMTI0MTY2NjcgQzMuNzUsNy44MDc3NTM1MyAzLjk4NTEyODIzLDcuNTQ2MjU3NTMgNC4yOTAxOTEyLDcuNTA0ODcyMTggTDQuMzc1LDcuNDk5MTY2NjcgTDcuNDk5OTI3NjgsNy40OTgxNjY2NyBMNy41LDQuMzc0MTY2NjcgQzcuNSw0LjAyODk4ODcgNy43Nzk4MjIwMywzLjc0OTE2NjY3IDguMTI1LDMuNzQ5MTY2NjcgWiIgaWQ9IkNvbWJpbmVkLVNoYXBlIj48L3BhdGg+DQogICAgICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgPC9nPg0KICAgICAgICA8L2c+DQogICAgPC9nPg0KPC9zdmc+") no-repeat center #fff
}

.photo-container-bottom .rotate-and-zoom .zoom-btn-out {
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuc1hsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4NCiAgICA8ZyBpZD0iMy4zLVBob3RvLXZpZXctKFJlYWN0aXZlKSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTUzNS4wMDAwMDAsIC05NTQuMDAwMDAwKSIgZmlsbD0nIzAwNjVBMScgZmlsbC1ydWxlPSJub256ZXJvIj4NCiAgICAgICAgPGcgaWQ9Ikdyb3VwLTUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM5NS4wMDAwMDAsIDk0NC4wMDAwMDApIj4NCiAgICAgICAgICAgIDxnIGlkPSJHcm91cC0zIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg5MC4wMDAwMDAsIDAuMDAwMDAwKSI+DQogICAgICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwLTE2IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0MC4wMDAwMDAsIDAuMDAwMDAwKSI+DQogICAgICAgICAgICAgICAgICAgIDxnIGlkPSJ6b29tLW91dCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS45OTg5MjgsIDkuOTk5MTY3KSI+DQogICAgICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNOC4xNzc3MzkwOCwwIEMxMi42OTM2OTUzLDAgMTYuMzU0NzQwOCwzLjY2MDY0MTU0IDE2LjM1NTIzOTEsOC4xNzY1OTc3IEMxNi4zNTU0NTkxLDEwLjE3MDg2OTEgMTUuNjMxMzIzMiwxMi4wNDY4MTU0IDE0LjM4NjQ1NTcsMTMuNDk5NjI3NyBMMTkuODE4MDQ1NiwxOC45MzMwODk3IEMyMC4wNjIxMDU5LDE5LjE3NzE4NDcgMjAuMDYyMDc3OCwxOS41NzI5MTI5IDE5LjgxNzk4MjcsMTkuODE2OTczMiBDMTkuNTk2MDc4MSwyMC4wMzg4NDYyIDE5LjI0ODg1NywyMC4wNTg5OTMyIDE5LjAwNDE5MzYsMTkuODc3NDMwNCBMMTguOTM0MDk5MiwxOS44MTY5MTAzIEwxMy41MDIwOTM5LDE0LjM4NDY0MDUgQzEyLjg1NzQ3MzYsMTQuOTM3NzM4NCAxMi4xMjAyMDgxLDE1LjM5NTY1OTMgMTEuMzA3NzU4MSwxNS43MzIyNjU5IEM4LjI1MjA2NDY5LDE2Ljk5ODI3MTggNC43MzQ2MjgxNywxNi4yOTg4NjI0IDIuMzk1NjkyNDYsMTMuOTYwMTg0NyBDMC4wNTY3NTY3NTY2LDExLjYyMTUwNzEgLTAuNjQzMDQwODI1LDguMTA0MTQ3NzcgMC42MjI2Mjc5MTYsNS4wNDgzMTQ2NyBDMS44ODgyOTY2NiwxLjk5MjQ4MTU2IDQuODcwMTY2OTgsMCA4LjE3NzczOTA4LDAgWiBNOC4xNzc3MzkwOCwxLjI1IEM1LjM3NTc1NzM0LDEuMjUgMi44NDk2OTExMSwyLjkzNzkxMzkxIDEuNzc3NDkwNTMsNS41MjY2MzcxIEMwLjcwNTI4OTk1NCw4LjExNTM2MDI4IDEuMjk4MTE3NTYsMTEuMDk1MDYxNSAzLjI3OTUyNzE3LDEzLjA3NjI1MjUgQzUuMjYwOTM2NzgsMTUuMDU3NDQzNSA4LjI0MDcwMzQsMTUuNjQ5OTQyMyAxMC44MjkzMDgyLDE0LjU3NzQ1NjEgQzEzLjQxNzkxMzEsMTMuNTA0OTY5OCAxNS4xMDU1NDgzLDEwLjk3ODcxNzQgMTUuMTA1MjM5MSw4LjE3NjczNTYzIEMxNS4xMDQ4MTcsNC4zNTEwODE1NCAxMi4wMDMzOTMyLDEuMjUgOC4xNzc3MzkwOCwxLjI1IFogTTExLjg3NjA3MjQsNy41IEMxMi4yMjEyNTA0LDcuNSAxMi41MDEwNzI0LDcuNzc5ODIyMDMgMTIuNTAxMDcyNCw4LjEyNSBDMTIuNTAxMDcyNCw4LjQ0MTQxMzE0IDEyLjI2NTk0NDIsOC43MDI5MDkxMyAxMS45NjA4ODEyLDguNzQ0Mjk0NDkgTDExLjg3NjA3MjQsOC43NSBMNC4zNzYwNzI0Miw4Ljc1IEM0LjAzMDg5NDQ1LDguNzUgMy43NTEwNzI0Miw4LjQ3MDE3Nzk3IDMuNzUxMDcyNDIsOC4xMjUgQzMuNzUxMDcyNDIsNy44MDg1ODY4NiAzLjk4NjIwMDY1LDcuNTQ3MDkwODcgNC4yOTEyNjM2Miw3LjUwNTcwNTUxIEw0LjM3NjA3MjQyLDcuNSBMMTEuODc2MDcyNCw3LjUgWiIgaWQ9IkNvbWJpbmVkLVNoYXBlIj48L3BhdGg+DQogICAgICAgICAgICAgICAgICAgIDwvZz4NCiAgICAgICAgICAgICAgICA8L2c+DQogICAgICAgICAgICA8L2c+DQogICAgICAgIDwvZz4NCiAgICA8L2c+DQo8L3N2Zz4=") no-repeat center #fff
}

.photo-container-bottom .rotate-and-zoom .rotate,
.photo-container-bottom .rotate-and-zoom .zoom {
    width: 80px;
    height: 40px;
    display: flex;
    position: relative
}

.photo-container-bottom .rotate-and-zoom .rotate div,
.photo-container-bottom .rotate-and-zoom .zoom div {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s
}

.photo-container-bottom .rotate-and-zoom .rotate div:not(:last-child):after,
.photo-container-bottom .rotate-and-zoom .zoom div:not(:last-child):after {
    content: '';
    width: 1px;
    height: 40px;
    position: absolute;
    background-color: #dadada;
    left: 50%
}

.photo-container-bottom .rotate-and-zoom .rotate div:first-child,
.photo-container-bottom .rotate-and-zoom .zoom div:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px
}

.photo-container-bottom .rotate-and-zoom .rotate div:last-child,
.photo-container-bottom .rotate-and-zoom .zoom div:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px
}

.photo-container-bottom .rotate-and-zoom .rotate .disabled,
.photo-container-bottom .rotate-and-zoom .zoom .disabled {
    cursor: not-allowed;
    background-color: #f0f0f0;
    border-radius: 6px
}

.dsm-popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block;
    min-width: 300px;
    max-width: 300px;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: .5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2)
}

.dsm-popover .arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: .5rem;
    margin: 0 .5rem
}

.dsm-popover .arrow::before,
.dsm-popover .arrow::after {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid
}

.dsm-popover.dsm-popover-xl {
    max-width: 70%
}

.dsm-popover.dsm-popover-lg {
    max-width: 800px
}

.dsm-popover.dsm-popover-md {
    max-width: 500px
}

.dsm-popover.dsm-popover-sm {
    max-width: 350px
}

.dsm-popover .dsm-popover-close {
    position: absolute;
    color: #fff;
    text-decoration: none;
    top: 50%;
    margin-top: -.5rem;
    right: 1.25rem;
    font-size: 1rem;
    line-height: 1
}

.dsm-popover.dsm-popover-dark .dsm-popover-body {
    background-color: #f5f5f5
}

.dsm-popover.dsm-popover-dark.dsm-popover-left>.arrow::after,
.dsm-popover.dsm-popover-dark.dsm-popover-auto[x-placement^="left"]>.arrow::after {
    border-left-color: #f5f5f5
}

.dsm-popover.dsm-popover-dark.dsm-popover-top>.arrow::after,
.dsm-popover.dsm-popover-dark.dsm-popover-auto[x-placement^="top"]>.arrow::after {
    border-top-color: #f5f5f5
}

.dsm-popover.dsm-popover-dark.dsm-popover-right>.arrow::after,
.dsm-popover.dsm-popover-dark.dsm-popover-auto[x-placement^="right"]>.arrow::after {
    border-right-color: #f5f5f5
}

.dsm-popover.dsm-popover-dark.dsm-popover-bottom>.arrow::after,
.dsm-popover.dsm-popover-dark.dsm-popover-auto[x-placement^="bottom"]>.arrow::after {
    border-bottom-color: #f5f5f5
}

.dsm-popover.dsm-popover-special .dsm-popover-header,
.dsm-popover.dsm-popover-special .dsm-popover-close,
.dsm-popover.dsm-popover-special .arrow {
    display: none
}

.dsm-popover.dsm-popover-special .dsm-popover-body {
    padding: .5rem 1rem
}

.dsm-popover-top,
.dsm-popover-auto[x-placement^="top"] {
    margin-bottom: .5rem
}

.dsm-popover-top>.arrow,
.dsm-popover-auto[x-placement^="top"]>.arrow {
    bottom: calc((.5rem + 1px) * -1)
}

.dsm-popover-top>.arrow::before,
.dsm-popover-auto[x-placement^="top"]>.arrow::before {
    bottom: 0;
    border-width: .5rem .5rem 0;
    border-top-color: #ddd
}

.dsm-popover-top>.arrow::after,
.dsm-popover-auto[x-placement^="top"]>.arrow::after {
    bottom: 1px;
    border-width: .5rem .5rem 0;
    border-top-color: #e0e0e0
}

.dsm-popover-top>.arrow::after,
.dsm-popover-auto[x-placement^="top"]>.arrow::after {
    border-top-color: #fff
}

.dsm-popover-right,
.dsm-popover-auto[x-placement^="right"] {
    margin-left: .5rem
}

.dsm-popover-right>.arrow,
.dsm-popover-auto[x-placement^="right"]>.arrow {
    left: calc((.5rem + 1px) * -1);
    top: calc(50% - 14px) !important;
    width: .5rem;
    height: 1rem;
    margin: .5rem 0
}

.dsm-popover-right>.arrow::before,
.dsm-popover-auto[x-placement^="right"]>.arrow::before {
    left: 0;
    border-width: .5rem .5rem .5rem 0;
    border-right-color: #ddd
}

.dsm-popover-right>.arrow::after,
.dsm-popover-auto[x-placement^="right"]>.arrow::after {
    left: 1px;
    border-width: .5rem .5rem .5rem 0;
    border-right-color: #e0e0e0
}

.dsm-popover-right>.arrow::after,
.dsm-popover-auto[x-placement^="right"]>.arrow::after {
    border-right-color: #fff
}

.dsm-popover-bottom,
.dsm-popover-auto[x-placement^="bottom"] {
    margin-top: .5rem
}

.dsm-popover-bottom>.arrow,
.dsm-popover-auto[x-placement^="bottom"]>.arrow {
    top: calc((.5rem + 1px) * -1)
}

.dsm-popover-bottom>.arrow::before,
.dsm-popover-auto[x-placement^="bottom"]>.arrow::before {
    top: 0;
    border-width: 0 .5rem .5rem .5rem;
    border-bottom-color: #ddd
}

.dsm-popover-bottom>.arrow::after,
.dsm-popover-auto[x-placement^="bottom"]>.arrow::after {
    top: 1px;
    border-width: 0 .5rem .5rem .5rem;
    border-bottom-color: #e0e0e0
}

.dsm-popover-bottom>.arrow::after,
.dsm-popover-auto[x-placement^="bottom"]>.arrow::after {
    border-bottom-color: #fff
}

.dsm-popover-bottom .dsm-popover-header::before,
.dsm-popover-auto[x-placement^="bottom"] .dsm-popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -.5rem;
    content: "";
    border-bottom: 1px solid #f7f7f7
}

.dsm-popover-left,
.dsm-popover-auto[x-placement^="left"] {
    margin-right: .5rem
}

.dsm-popover-left>.arrow,
.dsm-popover-auto[x-placement^="left"]>.arrow {
    right: calc((.5rem + 1px) * -1);
    top: calc(50% - 14px) !important;
    width: .5rem;
    height: 1rem;
    margin: .5rem 0
}

.dsm-popover-left>.arrow::before,
.dsm-popover-auto[x-placement^="left"]>.arrow::before {
    right: 0;
    border-width: .5rem 0 .5rem .5rem;
    border-left-color: #ddd
}

.dsm-popover-left>.arrow::after,
.dsm-popover-auto[x-placement^="left"]>.arrow::after {
    right: 1px;
    border-width: .5rem 0 .5rem .5rem;
    border-left-color: #e0e0e0
}

.dsm-popover-left>.arrow::after,
.dsm-popover-auto[x-placement^="left"]>.arrow::after {
    border-left-color: #fff
}

.dsm-popover-header {
    position: relative;
    background: #1a1a1a;
    color: #fff;
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    font-size: 1.125rem;
    border-top-left-radius: calc(.5rem - 1px);
    border-top-right-radius: calc(.5rem - 1px);
    line-height: 1
}

.dsm-popover-header:empty {
    display: none
}

.dsm-popover-header>p {
    margin-bottom: 0;
    line-height: 1
}

.dsm-popover-body {
    padding: 1rem 1.25rem;
    color: #000;
    font-size: .75rem;
    border-radius: .5rem
}

.dsm-popover-body>.form-group:last-child {
    margin-bottom: 0
}

.dsm-popover-sub-title {
    font-size: .75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    display: inline-block;
    line-height: 1;
    transform: scale(0.833);
    transform-origin: left
}

.dsm-popover-link {
    padding: 0 1rem;
    display: inline-block
}

.dsm-popover-control {
    padding-top: 1rem
}

.__floater__body .dsm-popover-top,
.__floater__body .dsm-popover-auto[x-placement^="top"],
.__floater__body .dsm-popover-auto[x-placement^="top"],
.__floater__body .dsm-popover-auto[x-placement^="top-end"],
.__floater__body .dsm-popover-auto[x-placement^="top-start"],
.__floater__body .dsm-popover-left,
.__floater__body .dsm-popover-auto[x-placement^="left"],
.__floater__body .dsm-popover-auto[x-placement^="left"],
.__floater__body .dsm-popover-auto[x-placement^="left-end"],
.__floater__body .dsm-popover-auto[x-placement^="left-start"],
.__floater__body .dsm-popover-bottom,
.__floater__body .dsm-popover-auto[x-placement^="bottom"],
.__floater__body .dsm-popover-auto[x-placement^="bottom"],
.__floater__body .dsm-popover-auto[x-placement^="bottom-end"],
.__floater__body .dsm-popover-auto[x-placement^="bottom-start"],
.__floater__body .dsm-popover-right,
.__floater__body .dsm-popover-auto[x-placement^="right"],
.__floater__body .dsm-popover-auto[x-placement^="right"],
.__floater__body .dsm-popover-auto[x-placement^="right-end"],
.__floater__body .dsm-popover-auto[x-placement^="right-start"] {
    margin: 0
}

.__floater__body .dsm-popover-header::before {
    display: none
}

.__floater__arrow {
    z-index: 1070
}

.__floater__arrow>span {
    position: relative
}

.__floater__arrow>span svg {
    display: none
}

.__floater__arrow>span::before,
.__floater__arrow>span::after {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid
}

.dsm-popover-top+.__floater__arrow>span,
.dsm-popover-auto[x-placement^="top"]+.__floater__arrow>span,
.dsm-popover-top-end+.__floater__arrow>span,
.dsm-popover-top-start+.__floater__arrow>span {
    bottom: 8px !important
}

.dsm-popover-top+.__floater__arrow>span::before,
.dsm-popover-auto[x-placement^="top"]+.__floater__arrow>span::before,
.dsm-popover-top-end+.__floater__arrow>span::before,
.dsm-popover-top-start+.__floater__arrow>span::before {
    bottom: 0;
    border-width: .5rem .5rem 0;
    border-top-color: #ddd
}

.dsm-popover-top+.__floater__arrow>span::after,
.dsm-popover-auto[x-placement^="top"]+.__floater__arrow>span::after,
.dsm-popover-top-end+.__floater__arrow>span::after,
.dsm-popover-top-start+.__floater__arrow>span::after {
    bottom: 1px;
    border-width: .5rem .5rem 0;
    border-top-color: #e0e0e0
}

.dsm-popover-top+.__floater__arrow>span::after,
.dsm-popover-auto[x-placement^="top"]+.__floater__arrow>span::after,
.dsm-popover-top-end+.__floater__arrow>span::after,
.dsm-popover-top-start+.__floater__arrow>span::after {
    border-top-color: #fff
}

.dsm-popover-left+.__floater__arrow>span,
.dsm-popover-auto[x-placement^="left"]+.__floater__arrow>span,
.dsm-popover-left-end+.__floater__arrow>span,
.dsm-popover-left-start+.__floater__arrow>span {
    right: 8px !important
}

.dsm-popover-left+.__floater__arrow>span::before,
.dsm-popover-auto[x-placement^="left"]+.__floater__arrow>span::before,
.dsm-popover-left-end+.__floater__arrow>span::before,
.dsm-popover-left-start+.__floater__arrow>span::before {
    right: 0;
    border-width: .5rem 0 .5rem .5rem;
    border-left-color: #ddd
}

.dsm-popover-left+.__floater__arrow>span::after,
.dsm-popover-auto[x-placement^="left"]+.__floater__arrow>span::after,
.dsm-popover-left-end+.__floater__arrow>span::after,
.dsm-popover-left-start+.__floater__arrow>span::after {
    right: 1px;
    border-width: .5rem 0 .5rem .5rem;
    border-left-color: #e0e0e0
}

.dsm-popover-left+.__floater__arrow>span::after,
.dsm-popover-auto[x-placement^="left"]+.__floater__arrow>span::after,
.dsm-popover-left-end+.__floater__arrow>span::after,
.dsm-popover-left-start+.__floater__arrow>span::after {
    border-left-color: #fff
}

.dsm-popover-bottom,
.dsm-popover-auto[x-placement^="bottom"],
.dsm-popover-bottom-end,
.dsm-popover-bottom-start {
    display: flex;
    flex-flow: column
}

.dsm-popover-bottom .dsm-popover-header,
.dsm-popover-auto[x-placement^="bottom"] .dsm-popover-header,
.dsm-popover-bottom-end .dsm-popover-header,
.dsm-popover-bottom-start .dsm-popover-header {
    order: 2;
    border-bottom: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: calc(0.5rem - 1px);
    border-bottom-right-radius: calc(0.5rem - 1px)
}

.dsm-popover-bottom .dsm-popover-body,
.dsm-popover-auto[x-placement^="bottom"] .dsm-popover-body,
.dsm-popover-bottom-end .dsm-popover-body,
.dsm-popover-bottom-start .dsm-popover-body {
    order: 1
}

.dsm-popover-bottom+.__floater__arrow>span,
.dsm-popover-auto[x-placement^="bottom"]+.__floater__arrow>span,
.dsm-popover-bottom-end+.__floater__arrow>span,
.dsm-popover-bottom-start+.__floater__arrow>span {
    top: 8px !important
}

.dsm-popover-bottom+.__floater__arrow>span::before,
.dsm-popover-auto[x-placement^="bottom"]+.__floater__arrow>span::before,
.dsm-popover-bottom-end+.__floater__arrow>span::before,
.dsm-popover-bottom-start+.__floater__arrow>span::before {
    top: 0;
    border-width: 0 .5rem .5rem .5rem;
    border-bottom-color: #e0e0e0
}

.dsm-popover-bottom+.__floater__arrow>span::after,
.dsm-popover-auto[x-placement^="bottom"]+.__floater__arrow>span::after,
.dsm-popover-bottom-end+.__floater__arrow>span::after,
.dsm-popover-bottom-start+.__floater__arrow>span::after {
    top: 1px;
    border-width: 0 .5rem .5rem .5rem;
    border-bottom-color: #e0e0e0
}

.dsm-popover-bottom+.__floater__arrow>span::after,
.dsm-popover-auto[x-placement^="bottom"]+.__floater__arrow>span::after,
.dsm-popover-bottom-end+.__floater__arrow>span::after,
.dsm-popover-bottom-start+.__floater__arrow>span::after {
    border-bottom-color: #fff
}

.dsm-popover-right+.__floater__arrow>span,
.dsm-popover-auto[x-placement^="right"]+.__floater__arrow>span,
.dsm-popover-right-end+.__floater__arrow>span,
.dsm-popover-right-start+.__floater__arrow>span {
    left: 8px !important
}

.dsm-popover-right+.__floater__arrow>span::before,
.dsm-popover-auto[x-placement^="right"]+.__floater__arrow>span::before,
.dsm-popover-right-end+.__floater__arrow>span::before,
.dsm-popover-right-start+.__floater__arrow>span::before {
    left: 0;
    border-width: .5rem .5rem .5rem 0;
    border-right-color: #ddd
}

.dsm-popover-right+.__floater__arrow>span::after,
.dsm-popover-auto[x-placement^="right"]+.__floater__arrow>span::after,
.dsm-popover-right-end+.__floater__arrow>span::after,
.dsm-popover-right-start+.__floater__arrow>span::after {
    left: 1px;
    border-width: .5rem .5rem .5rem 0;
    border-right-color: #e0e0e0
}

.dsm-popover-right+.__floater__arrow>span::after,
.dsm-popover-auto[x-placement^="right"]+.__floater__arrow>span::after,
.dsm-popover-right-end+.__floater__arrow>span::after,
.dsm-popover-right-start+.__floater__arrow>span::after {
    border-right-color: #fff
}

.dsm-carousel {
    position: relative
}

.dsm-carousel.pointer-event {
    touch-action: pan-y
}

.dsm-carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

.dsm-carousel-inner::after {
    display: block;
    clear: both;
    content: ""
}

.dsm-carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .dsm-carousel-item {
        transition: none
    }
}

.dsm-carousel-item.active,
.dsm-carousel-item-next,
.dsm-carousel-item-prev {
    display: block
}

.dsm-carousel-item-next:not(.dsm-carousel-item-left),
.active.dsm-carousel-item-right {
    transform: translateX(100%)
}

.dsm-carousel-item-prev:not(.dsm-carousel-item-right),
.active.dsm-carousel-item-left {
    transform: translateX(-100%)
}

.dsm-carousel-fade .dsm-carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none
}

.dsm-carousel-fade .dsm-carousel-item.active,
.dsm-carousel-fade .dsm-carousel-item-next.dsm-carousel-item-left,
.dsm-carousel-fade .dsm-carousel-item-prev.dsm-carousel-item-right {
    z-index: 1;
    opacity: 1
}

.dsm-carousel-fade .active.dsm-carousel-item-left,
.dsm-carousel-fade .active.dsm-carousel-item-right {
    z-index: 0;
    opacity: 0;
    transition: 0s .6s opacity
}

@media (prefers-reduced-motion: reduce) {

    .dsm-carousel-fade .active.dsm-carousel-item-left,
    .dsm-carousel-fade .active.dsm-carousel-item-right {
        transition: none
    }
}

.dsm-carousel-control-prev,
.dsm-carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: .5;
    transition: opacity 0.15s ease
}

@media (prefers-reduced-motion: reduce) {

    .dsm-carousel-control-prev,
    .dsm-carousel-control-next {
        transition: none
    }
}

.dsm-carousel-control-prev:hover,
.dsm-carousel-control-prev:focus,
.dsm-carousel-control-next:hover,
.dsm-carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.dsm-carousel-control-prev {
    left: 0
}

.dsm-carousel-control-next {
    right: 0
}

.dsm-carousel-control-prev-icon,
.dsm-carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: no-repeat 50% / 100% 100%
}

.dsm-carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e")
}

.dsm-carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e")
}

.dsm-carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none
}

.dsm-carousel-indicators li {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity 0.6s ease
}

@media (prefers-reduced-motion: reduce) {
    .dsm-carousel-indicators li {
        transition: none
    }
}

.dsm-carousel-indicators .active {
    opacity: 1
}

.dsm-carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center
}

.dsm-loader-wrapper {
    position: relative;
    min-height: 300px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center
}

.dsm-loader-wrapper h5 {
    margin: 0;
    visibility: hidden
}

.dsm-loader-wrapper .dsm-loader-box {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center
}

.dsm-loader-wrapper p {
    font-size: .875rem;
    visibility: hidden
}

.dsm-loader-wrapper.dsm-loader-progress h5,
.dsm-loader-wrapper.dsm-loader-progress p {
    visibility: visible
}

.dsm-loader-wrapper.dsm-loader-small {
    min-height: auto
}

.dsm-loader-wrapper.dsm-loader-small .dsm-loader-box {
    height: 20px
}

.dsm-loader-wrapper.dsm-loader-small .dsm-loader {
    width: 20px;
    height: 20px;
    border-width: 2px;
    border-top-width: 2px;
    border-left-width: 2px
}

.dsm-loader-wrapper.dsm-loader-small .dsm-loader-trail {
    border-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px
}

.dsm-loader-page {
    position: fixed;
    flex-flow: column;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999
}

.dsm-loader-page .dsm-loader-base {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 1px 0 rgba(60, 64, 67, 0.08), 0 1px 3px 1px rgba(60, 64, 67, 0.16)
}

.dsm-loader-page>p {
    padding-top: .5rem
}

.dsm-loader {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    border: 4px solid transparent;
    border-top: 4px solid #00253b;
    border-left: 4px solid #00253b;
    animation: 2s spin linear infinite
}

.dsm-loader-trail {
    border: 4px solid transparent;
    border-right: 4px solid #2D5798;
    border-bottom: 4px solid #2D5798;
    animation: 1s spin linear infinite
}

.dsm-wrap-loader {
    position: relative
}

.dsm-loader-wrap-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    min-height: auto;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999
}

.dsm-panel {
    margin-bottom: 1rem
}

.dsm-panel-heading {
    font-size: 1rem;
    line-height: 1.375rem;
    position: relative;
    padding: .8125rem .9375rem .75rem;
    border-top-left-radius: .3125rem;
    border-top-right-radius: .3125rem
}

.dsm-panel-heading>i {
    font-size: 1.5rem;
    margin-right: .625rem
}

.dsm-panel-content {
    min-width: 320px;
    font-size: .75rem;
    padding: .9375rem;
    border: 1px solid #dadada;
    border-top: none;
    background-color: #fff;
    border-bottom-left-radius: .3125rem;
    border-bottom-right-radius: .3125rem
}

.dsm-panel-link {
    font-weight: 600
}

.dsm-panel-dismissible .dsm-panel-heading {
    padding-right: 4rem
}

.dsm-panel-dismissible .dsm-close {
    font-size: 1rem;
    line-height: 1.5;
    position: absolute;
    top: 0;
    right: 0;
    padding: .75rem 1.25rem;
    opacity: 1;
    color: inherit;
    text-shadow: none
}

.dsm-panel-dismissible .dsm-close>i {
    font-weight: 600
}

.dsm-panel-primary {
    color: #fff;
    background-color: #2D5798
}

.dsm-panel-secondary {
    color: #fff;
    background-color: #fff
}

.dsm-panel-danger {
    color: #fff;
    background-color: #F04E4E
}

.dsm-panel-success {
    color: #fff;
    background-color: #06C270
}

.dsm-panel-warning {
    color: #fff;
    background-color: #ffb75d
}

.dsm-panel-light {
    color: #333;
    background-color: #e6e6e6
}

.dsm-panel-sategray {
    color: #fff;
    background-color: #999
}

.dsm-panel-dark {
    color: #fff;
    background-color: #333
}

.dsm-panel-black {
    color: #fff;
    background-color: #000
}

@keyframes fade-in {
    from {
        visibility: hidden;
        opacity: 0
    }

    to {
        visibility: visible;
        opacity: 1
    }
}

@keyframes slide-show {
    to {
        transform: translateY(0)
    }
}

.notification-top-left {
    position: fixed;
    z-index: 1060;
    max-width: 430px;
    margin: 20px;
    top: 0;
    left: 0;
    transform: translateX(-470px)
}

@keyframes slide-in-left {
    from {
        transform: translateX(-470px)
    }

    to {
        transform: translateX(0)
    }
}

.notification-top-left.do-show {
    animation: slide-in-left 1s ease-in-out forwards, slide-in-left 1s ease-in-out reverse forwards 5s
}

.notification-top-right {
    position: fixed;
    z-index: 1060;
    max-width: 430px;
    margin: 20px;
    top: 0;
    right: 0;
    transform: translateX(470px)
}

@keyframes slide-in-right {
    from {
        transform: translateX(470px)
    }

    to {
        transform: translateX(0)
    }
}

.notification-top-right.do-show {
    animation: slide-in-right 1s ease-in-out forwards, slide-in-right 1s ease-in-out reverse forwards 5s
}

.notification-bottom-right {
    position: fixed;
    z-index: 1060;
    max-width: 430px;
    margin: 20px;
    bottom: 0;
    right: 0;
    transform: translateX(470px)
}

@keyframes slide-in-right {
    from {
        transform: translateX(470px)
    }

    to {
        transform: translateX(0)
    }
}

.notification-bottom-right.do-show {
    animation: slide-in-right 1s ease-in-out forwards, slide-in-right 1s ease-in-out reverse forwards 5s
}

.notification-bottom-left {
    position: fixed;
    z-index: 1060;
    max-width: 430px;
    margin: 20px;
    bottom: 0;
    left: 0;
    transform: translateX(-470px)
}

@keyframes slide-in-left {
    from {
        transform: translateX(-470px)
    }

    to {
        transform: translateX(0)
    }
}

.notification-bottom-left.do-show {
    animation: slide-in-left 1s ease-in-out forwards, slide-in-left 1s ease-in-out reverse forwards 5s
}

.notification-bar-top {
    position: fixed;
    z-index: 1060;
    right: 0;
    left: 0;
    width: 100%;
    top: 0;
    transform: translateY(- 100%)
}

.notification-bar-top.do-show {
    animation: slide-show 1s forwards, slide-show 1s reverse forwards 5s
}

.notification-bar-bottom {
    position: fixed;
    z-index: 1060;
    right: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    transform: translateY(100%)
}

.notification-bar-bottom.do-show {
    animation: slide-show 1s forwards, slide-show 1s reverse forwards 5s
}

.dsm-labels {
    position: relative;
    display: inline-block;
    cursor: pointer;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: .625rem 1rem;
    line-height: 1;
    border-radius: 1rem;
    padding-left: 3rem;
    font-size: .875rem
}

.dsm-labels:before {
    position: absolute;
    content: '';
    left: 1rem;
    width: 0.75rem;
    height: 0.75rem;
    background: #fff;
    border-radius: 50%
}

.dsm-labels.dsm-labels-sm {
    padding: .2625rem .75rem;
    padding-left: 2rem;
    min-width: 100px;
    font-size: .875rem
}

.dsm-labels.dsm-labels-sm:before {
    width: 0.5rem;
    height: 0.5rem;
    top: .3rem
}

.dsm-labels.dsm-labels-lg {
    min-width: 180px;
    padding: 11px;
    padding-left: 47px;
    border-radius: 2rem;
    font-size: 1rem
}

.dsm-labels.dsm-labels-lg:before {
    width: 1rem;
    height: 1rem
}

.dsm-labels.disabled:before {
    background: #f0f0f0;
    border: 1px solid #dadada
}

.dsm-labels:hover {
    color: #000;
    text-decoration: none
}

.dsm-labels-primary {
    color: #fff;
    background: #2D5798;
    border: 1px solid transparent
}

.dsm-labels-primary:hover {
    color: #fff;
    background-color: #004d7b;
    border-color: #00456e
}

.dsm-labels-primary.disabled,
.dsm-labels-primary:disabled {
    color: #ccc;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-labels-primary:not(:disabled):not(.disabled):active,
.dsm-labels-primary:not(:disabled):not(.disabled).hover,
.show>.dsm-labels-primary.dsm-dropdown-toggle {
    color: #fff;
    background-color: #00456e;
    border-color: #003d61
}

.dsm-labels-secondary {
    color: #2D5798;
    background: #fff;
    border: 1px solid #dadada
}

.dsm-labels-secondary:hover {
    color: #003751
}

.dsm-labels-secondary.disabled,
.dsm-labels-secondary:disabled,
.dsm-labels-secondary.disabled:active {
    color: #ccc;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-labels-secondary.active,
.dsm-labels-secondary:active {
    color: #1a1a1a;
    background-color: #2D5798;
    border-color: gray
}

.dsm-labels-secondary:not(:disabled):not(.disabled):active,
.dsm-labels-secondary:not(:disabled):not(.disabled).hover,
.show>.dsm-labels-secondary.dsm-dropdown-toggle {
    color: #1a1a1a;
    background-color: #e6e6e6;
    border-color: #dfdfdf
}

.dsm-labels-secondary:before {
    background: #f0f0f0;
    border: 1px solid #dadada
}

.dsm-labels-danger {
    color: #fff;
    background: #F04E4E;
    border: 1px solid transparent
}

.dsm-labels-danger:hover {
    color: #fff;
    background-color: #ed2b2b;
    border-color: #ec1f1f
}

.dsm-labels-danger.disabled,
.dsm-labels-danger:disabled {
    color: #ccc;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-labels-danger:not(:disabled):not(.disabled):active,
.dsm-labels-danger:not(:disabled):not(.disabled).hover,
.show>.dsm-labels-danger.dsm-dropdown-toggle {
    color: #fff;
    background-color: #ec1f1f;
    border-color: #ea1414
}

.dsm-labels-success {
    color: #fff;
    background: #06C270;
    border: 1px solid transparent
}

.dsm-labels-success:hover {
    color: #fff;
    background-color: #059d5b;
    border-color: #049153
}

.dsm-labels-success.disabled,
.dsm-labels-success:disabled {
    color: #ccc;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-labels-success:not(:disabled):not(.disabled):active,
.dsm-labels-success:not(:disabled):not(.disabled).hover,
.show>.dsm-labels-success.dsm-dropdown-toggle {
    color: #fff;
    background-color: #049153;
    border-color: #04844c
}

.dsm-labels-warning {
    color: #1a1a1a;
    background: #FFC700;
    border: 1px solid transparent
}

.dsm-labels-warning:hover {
    color: #1a1a1a;
    background-color: #d9a900;
    border-color: #cc9f00
}

.dsm-labels-warning.disabled,
.dsm-labels-warning:disabled {
    color: #ccc;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-labels-warning:not(:disabled):not(.disabled):active,
.dsm-labels-warning:not(:disabled):not(.disabled).hover,
.show>.dsm-labels-warning.dsm-dropdown-toggle {
    color: #1a1a1a;
    background-color: #cc9f00;
    border-color: #cc9f00
}

.dsm-labels-light {
    color: #1a1a1a;
    background: #e6e6e6;
    border: 1px solid transparent
}

.dsm-labels-light:hover {
    color: #1a1a1a;
    background-color: #d2d2d2;
    border-color: #ccc
}

.dsm-labels-light.disabled,
.dsm-labels-light:disabled {
    color: #ccc;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-labels-light:not(:disabled):not(.disabled):active,
.dsm-labels-light:not(:disabled):not(.disabled).hover,
.show>.dsm-labels-light.dsm-dropdown-toggle {
    color: #1a1a1a;
    background-color: #ccc;
    border-color: #c6c6c6
}

.dsm-labels-sategray {
    color: #1a1a1a;
    background: #999;
    border: 1px solid transparent
}

.dsm-labels-sategray:hover {
    color: #fff;
    background-color: #868686;
    border-color: gray
}

.dsm-labels-sategray.disabled,
.dsm-labels-sategray:disabled {
    color: #ccc;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-labels-sategray:not(:disabled):not(.disabled):active,
.dsm-labels-sategray:not(:disabled):not(.disabled).hover,
.show>.dsm-labels-sategray.dsm-dropdown-toggle {
    color: #fff;
    background-color: gray;
    border-color: #797979
}

.dsm-labels-dark {
    color: #fff;
    background: #333;
    border: 1px solid transparent;
    color: #fff;
    background: #333;
    border: 1px solid transparent
}

.dsm-labels-dark:hover {
    color: #fff;
    background-color: #202020;
    border-color: #1a1a1a
}

.dsm-labels-dark.disabled,
.dsm-labels-dark:disabled,
.dsm-labels-dark.disabled:active {
    color: #ccc;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-labels-dark.active,
.dsm-labels-dark:active {
    color: #fff;
    background-color: #2D5798;
    border-color: gray
}

.dsm-labels-dark:not(:disabled):not(.disabled):active,
.dsm-labels-dark:not(:disabled):not(.disabled).hover,
.show>.dsm-labels-dark.dsm-dropdown-toggle {
    color: #fff;
    background-color: #1a1a1a;
    border-color: #131313
}

.dsm-labels-dark:hover {
    color: #fff;
    background-color: #202020;
    border-color: #1a1a1a
}

.dsm-labels-dark.disabled,
.dsm-labels-dark:disabled {
    color: #ccc;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-labels-dark:not(:disabled):not(.disabled):active,
.dsm-labels-dark:not(:disabled):not(.disabled).hover,
.show>.dsm-labels-dark.dsm-dropdown-toggle {
    color: #fff;
    background-color: #1a1a1a;
    border-color: #131313
}

.dsm-labels-black {
    color: #fff;
    background: #000;
    border: 1px solid transparent
}

.dsm-labels-black:hover {
    color: #fff;
    background-color: #000;
    border-color: #000
}

.dsm-labels-black.disabled,
.dsm-labels-black:disabled {
    color: #ccc;
    background-color: #f0f0f0;
    border-color: #dadada
}

.dsm-labels-black:not(:disabled):not(.disabled):active,
.dsm-labels-black:not(:disabled):not(.disabled).hover,
.show>.dsm-labels-black.dsm-dropdown-toggle {
    color: #fff;
    background-color: #000;
    border-color: #000
}

.dsm-menu-box {
    position: relative;
    width: 100%;
    border-radius: .3125rem;
    background: #fff
}

.dsm-menu-box.show .dsm-menu-search .icon .dsm-input-group-append {
    pointer-events: none
}

.dsm-menu-box.show .dsm-menu-search .icon .dsm-input-group-append i:before {
    transform: rotate(180deg)
}

.dsm-menu-box.show .dsm-menu-search .icon .dsm-input-group-append i.ds-search:before {
    content: "\e9b3"
}

.dsm-menu-box.show .dsm-menu-list {
    display: block;
    width: 100%;
    margin-top: 2px;
    padding: 0;
    border: 1px solid #e3e3e3
}

.dsm-menu-box.show .dsm-dropdown-content-wrapper {
    display: block
}

.dsm-menu-box.dsm-icon-untransform.show .dsm-menu-search .icon .dsm-input-group-append i:before {
    transform: rotate(0)
}

.dsm-menu-box .dsm-menu-search .icon .dsm-input-group-append {
    pointer-events: none;
    opacity: 1
}

.dsm-menu-box .dsm-menu-search .icon .dsm-input-group-append i {
    font-size: 1rem;
    color: #000
}

.dsm-menu-box .dsm-menu-search .icon .dsm-input-group-append i:before {
    display: inline-block;
    transition: all 0.2s ease-in-out
}

.dsm-menu-box .dsm-menu-search .icon .dsm-input-group-append i.ds-search {
    opacity: 0.4
}

.dsm-menu-box .dsm-menu-search .dsm-input-group-control-sm.icon .dsm-input-group-append i {
    font-size: .8125rem;
    margin-right: 0
}

.dsm-menu-box .dsm-menu-list {
    overflow: auto;
    max-height: 250px
}

.dsm-menu-box.dsm-menu-list-top .dsm-menu-list {
    top: auto;
    bottom: 100%;
    margin: 0 0 2px 0
}

.dsm-menu-box .dsm-dropdown-content-wrapper {
    position: absolute;
    display: none;
    width: 100%;
    z-index: 1000;
    color: black;
    text-align: left;
    list-style: none;
    background-color: #fff;
    border: 1px solid #e3e3e3;
    box-shadow: 0 0.3125rem 1rem rgba(0, 0, 0, 0.2);
    border-radius: 0.3125rem
}

.dsm-menu-box .dsm-dropdown-content-wrapper .dsm-dropdown-menu {
    position: relative;
    border: unset;
    box-shadow: unset
}

.dsm-menu-box.dsm-autocomplete .dsm-menu-search {
    padding: 9px 15px;
    border: 1px solid #e3e3e3;
    border-radius: .3125rem
}

.dsm-menu-box.dsm-autocomplete .dsm-menu-list {
    width: 100%;
    max-height: 400px;
    margin: 0
}

.dsm-menu-box.dsm-autocomplete .dsm-menu-list .dsm-menu-ul {
    margin: 0
}

.dsm-menu-box.dsm-autocomplete .dsm-menu-list .dsm-menu-ul .dsm-menu-title {
    padding: 12px;
    padding-top: 7.5px
}

.dsm-menu-box.dsm-autocomplete .dsm-menu-list .dsm-menu-ul .dsm-menu-item {
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: bottom
}

.dsm-menu-box.dsm-autocomplete.show .dsm-menu-search {
    border-bottom: none;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.dsm-menu-box.dsm-autocomplete.show .dsm-menu-list {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: 0 2px 3px 0 rgba(168, 183, 199, 0.3)
}

.dsm-menu-box-nospacing.dsm-autocomplete,
.dsm-menu-box-nospacing .dsm-autocomplete {
    background: transparent
}

.dsm-menu-box-nospacing.dsm-autocomplete .dsm-menu-search,
.dsm-menu-box-nospacing .dsm-autocomplete .dsm-menu-search {
    padding: 0;
    border: none;
    background-color: transparent
}

.dsm-menu-box-nospacing.dsm-autocomplete.show .dsm-menu-list,
.dsm-menu-box-nospacing .dsm-autocomplete.show .dsm-menu-list {
    margin-top: 3px;
    border-top: 1px solid #e3e3e3;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.dsm-menu-ul {
    margin: 0;
    padding: 5px 0;
    list-style: none
}

.dsm-menu-ul+.dsm-menu-ul {
    border-top: 1px solid #e3e3e3
}

.dsm-menu-ul .dsm-menu-search {
    padding: .75rem .75rem
}

.dsm-menu-ul li {
    font-size: .875rem
}

.dsm-menu-ul li.dsm-menu-title {
    font-size: .75rem;
    font-weight: bold
}

.dsm-menu-ul li.dsm-menu-title.dsm-control {
    padding: 5px .75rem 5px 40px
}

.dsm-menu-ul li.dsm-menu-divider {
    border-top: 1px solid #e3e3e3
}

.dsm-menu-ul li .dsm-menu-item {
    display: block;
    padding: .375rem .75rem;
    cursor: pointer;
    color: #000
}

.dsm-menu-ul li .dsm-menu-item:hover,
.dsm-menu-ul li .dsm-menu-item:focus {
    z-index: 1;
    background: #f1f1f1
}

.dsm-menu-ul li .dsm-menu-item.dsm-control {
    padding: 5px .75rem 5px 40px
}

.dsm-menu-ul li .dsm-menu-item.dsm-control .dsm-control-label {
    cursor: pointer
}

.dsm-menu-ul li .dsm-menu-item.dsm-control.dsm-control-sm {
    padding: 5px .75rem 5px 34px
}

.dsm-menu-ul li .dsm-menu-item .dsm-menu-icon-select {
    font-size: 1rem;
    visibility: hidden;
    margin-right: 10px
}

.dsm-menu-ul li .dsm-menu-item:active,
.dsm-menu-ul li .dsm-menu-item.active {
    background: #f1f1f1
}

.dsm-menu-ul li .dsm-menu-item:active .dsm-menu-icon-select,
.dsm-menu-ul li .dsm-menu-item.active .dsm-menu-icon-select {
    visibility: hidden;
    color: #2D5798
}

.dsm-menu-ul li.selected .dsm-menu-item {
    background: #f1f1f1
}

.dsm-menu-ul li.selected .dsm-menu-item .dsm-menu-icon-select {
    font-size: 1rem;
    visibility: visible;
    margin-left: 10px;
    color: #2D5798
}

.dsm-menu-ul li:last-child {
    border-bottom: 0 !important
}

.dsm-menu-ul li.disabled {
    opacity: .5;
    pointer-events: none
}

.dsm-menu-ul-selected li.selected .dsm-menu-item {
    color: #2D5798;
    background: #f1f1f1
}

.dsm-menu-ul.dsm-menu-ul-line li+li {
    border-top: 1px solid #e3e3e3
}

.dsm-menu-ul.dsm-menu-ul-line li.selected .dsm-menu-item {
    color: #2D5798;
    background: transparent
}

.dsm-menu-ul.dsm-menu-ul-line li .dsm-menu-item {
    padding: .75rem
}

.dsm-menu-ul.dsm-menu-ul-line li.dsm-menu-divider {
    margin: 0 -1rem;
    padding-left: 1rem
}

.dsm-menu-ul.dsm-menu-ul-line li.dsm-menu-divider .dsm-menu-item:hover {
    background: transparent
}

.dsm-menu-absolute {
    position: relative
}

.dsm-menu-absolute .dsm-menu-box {
    position: absolute;
    z-index: 50;
    top: calc(calc(1.5em + 1.25rem + 2px) - 5px);
    display: none
}

.dsm-menu-absolute input:focus+.dsm-menu-box {
    display: block
}

.dsm-walkthru {
    font-size: 0;
    display: flex;
    box-sizing: border-box;
    width: 100%
}

.dsm-walkthru .dsm-walkthru-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    flex: 1
}

.dsm-walkthru .dsm-walkthru-item .dsm-walkthru-icon,
.dsm-walkthru .dsm-walkthru-item .dsm-walkthru-line {
    position: relative;
    display: inline-block;
    vertical-align: top
}

.dsm-walkthru .dsm-walkthru-item .dsm-walkthru-icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
    border-radius: 50%;
    background: #dadada
}

.dsm-walkthru .dsm-walkthru-item .dsm-walkthru-icon:after {
    font-family: 'ds';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff
}

.dsm-walkthru .dsm-walkthru-item .dsm-walkthru-line:after {
    position: absolute;
    top: 0.415rem;
    left: 100%;
    display: block;
    width: 9999px;
    height: 3px;
    content: '';
    background: #dadada
}

.dsm-walkthru .dsm-walkthru-item:last-child {
    margin-right: 0;
    flex: none
}

.dsm-walkthru .dsm-walkthru-item-active .dsm-walkthru-icon {
    background: #2D5798
}

.dsm-walkthru .dsm-walkthru-item-active .dsm-walkthru-icon:after {
    background: #fff
}

.dsm-walkthru .dsm-walkthru-item-active .dsm-walkthru-line:after {
    opacity: 1;
    background: #dadada
}

.dsm-walkthru .dsm-walkthru-item-finished .dsm-walkthru-icon {
    background: #2D5798
}

.dsm-walkthru .dsm-walkthru-item-finished .dsm-walkthru-icon:after {
    background: #fff
}

.dsm-walkthru .dsm-walkthru-item-finished .dsm-walkthru-line:after {
    background: #2D5798
}

.dsm-walkthru .dsm-walkthru-item-finished .dsm-walkthru-tail {
    color: #2D5798
}

.dsm-walkthru .dsm-walkthru-item-error .dsm-walkthru-icon {
    background: transparent
}

.dsm-walkthru .dsm-walkthru-item-error .dsm-walkthru-icon:after {
    font-size: 1rem;
    content: '\e9f3';
    width: auto;
    height: auto;
    color: #F04E4E;
    background-color: transparent
}

@media (max-width: 500px) {
    .dsm-walkthru {
        display: block
    }

    .dsm-walkthru .dsm-walkthru-item {
        display: block;
        min-height: 100px;
        margin-right: 0
    }

    .dsm-walkthru .dsm-walkthru-item .dsm-walkthru-icon {
        margin: 6px 0
    }

    .dsm-walkthru .dsm-walkthru-item .dsm-walkthru-line:after {
        top: 28px;
        left: -8px;
        width: 1px;
        height: 9999px
    }

    .dsm-walkthru .dsm-walkthru-item:last-child {
        min-height: auto
    }
}

.dsm-walkthru.dsm-walkthru-auto-text {
    font-size: inherit;
    position: relative;
    overflow: hidden
}

.dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item {
    overflow: visible
}

.dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item:first-child {
    text-align: left
}

.dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item:first-child .dsm-walkthru-tail {
    transform: translateX(0);
    text-align: left
}

.dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item:last-child {
    position: absolute;
    right: 0;
    top: 0;
    text-align: right
}

.dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item:last-child .dsm-walkthru-icon {
    left: calc(100% - 16px);
    margin-left: 0
}

.dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item:last-child .dsm-walkthru-line:after {
    display: none
}

.dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item:last-child .dsm-walkthru-tail {
    transform: translateX(0);
    text-align: left
}

.dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item .dsm-walkthru-icon {
    position: absolute;
    left: 0;
    z-index: 10
}

.dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item .dsm-walkthru-line {
    width: 100%
}

.dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item .dsm-walkthru-line:after {
    left: 0;
    width: 100%
}

.dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item .dsm-walkthru-tail {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transform: translateX(-50%);
    text-align: center;
    max-width: 250px;
    margin-bottom: 19px
}

@media (max-width: 500px) {
    .dsm-walkthru.dsm-walkthru-auto-text {
        overflow: visible
    }

    .dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item {
        text-align: left;
        overflow: hidden
    }

    .dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item:last-child {
        text-align: left;
        left: 0;
        bottom: -16px;
        top: auto;
        right: auto
    }

    .dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item:last-child .dsm-walkthru-icon {
        left: 0
    }

    .dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item:last-child .dsm-walkthru-line:after {
        display: none
    }

    .dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item .dsm-walkthru-tail {
        padding-left: 30px;
        padding-top: 3px;
        white-space: normal;
        transform: translateX(0);
        text-align: left
    }

    .dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item .dsm-walkthru-line {
        position: absolute;
        top: 28px
    }

    .dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item .dsm-walkthru-line:after {
        left: 8px;
        top: 0;
        width: 1px
    }

    .dsm-walkthru.dsm-walkthru-auto-text .dsm-walkthru-item .dsm-walkthru-icon {
        left: 0;
        top: 0
    }
}

.dsm-walkthru-tail {
    color: #000;
    font-family: 'Open Sans';
    font-size: 14px;
    letter-spacing: 0;
    line-height: 21px;
    text-align: center
}

.dsm-walkthru-tips {
    animation: walkthruPulse 1s ease-in-out infinite;
    background-color: rgba(255, 27, 14, 0.6);
    border-radius: 50%;
    display: inline-block;
    height: 1rem;
    width: 1rem
}

.dsm-walkthru-tooltip .dsm-tooltip-inner {
    padding: 8px 20px
}

@keyframes walkthruPulse {
    0% {
        transform: scale(1)
    }

    55% {
        background-color: rgba(255, 100, 100, 0.9);
        transform: scale(1.6)
    }
}

.dsm-no-data {
    margin: 5rem;
    text-align: center
}

.dsm-no-data::before {
    display: block;
    width: 17rem;
    height: 13rem;
    content: "";
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='1009.54' height='789.93' viewBox='0 0 1009.54 789.93'%3E%3Cdefs%3E%3ClinearGradient x1='318.22' y1='488.45' x2='630.35' y2='488.45' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='gray' stop-opacity='0.25'/%3E%3Cstop offset='0.54' stop-color='gray' stop-opacity='0.12'/%3E%3Cstop offset='1' stop-color='gray' stop-opacity='0.1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ctitle%3Eempty%3C/title%3E%3Cellipse cx='354.13' cy='741.27' rx='176.1' ry='33.36' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M681.78,166.43c-64.72-2.24-126.36-23.14-185.22-46S379.4,72.25,316.23,60.14C275.6,52.35,229.13,51.24,196.4,73c-31.51,21-41.69,57.15-47.16,90.72-4.12,25.26-6.54,51.85,4.74,75.5,7.84,16.42,21.74,30.22,31.36,45.95,33.47,54.72,9.81,122.2-26.45,175.63-17,25.06-36.75,49-49.88,75.65S89.81,593.74,101.3,621c11.38,27,38.51,47.24,67.9,61.49,59.69,28.95,130,37.23,198.61,41.93,151.83,10.38,304.46,5.89,456.69,1.38,56.34-1.66,112.92-3.35,168.34-12.06,30.78-4.84,62.55-12.52,84.9-31.06,28.36-23.53,35.39-63.37,16.38-92.87-31.88-49.5-120-61.79-142.31-114.9-12.26-29.24.33-61.8,18.16-88.91,38.24-58.17,102.33-109.2,105.7-175.68,2.32-45.66-28.49-91.39-76.13-113-49.93-22.65-119.18-19.8-156,17.69C805.59,153.57,738.93,168.42,681.78,166.43Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M630.35,416.77l-30.63-20.65h0l15.45-23-80.9-6.45L505.2,389.15l-36.39-20.4-30.35,3.65-.36-8a225.78,225.78,0,0,0-2.51-24.9c.13-2.5.22-5.37.21-8.49,0-13.15-1.78-30.58-9.6-42.2L428,272.63,413.4,255.38a110.37,110.37,0,0,1,8-13.46c.5-.72,1-1.42,1.54-2.1,18.95-1.37,33.9-16.95,33.9-36,0-.88,0-1.76-.1-2.63,0-.35-.07-.71-.11-1.06,1.85,1,3.72,2,5.59,3,.35.5.75,1,1.19,1.59l0,0,.09.11.56.69.18.21c.2.24.41.47.62.71l.14.16c.53.59,1.09,1.19,1.69,1.78a1.8,1.8,0,0,1,.2.19l.75.7.21.19c.64.57,1.32,1.12,2,1.64l.22.16.86.59.28.18c.33.2.67.41,1,.6l.12.07c.39.21.79.41,1.19.6l.2.08q.51.22,1,.42l.31.11c.35.12.69.23,1.05.33l.22.06c.44.11.88.2,1.33.27h.05a10.88,10.88,0,0,0,1.28.13h.29a11,11,0,0,0,1.15,0h.25a11.85,11.85,0,0,0,1.43-.17,15.78,15.78,0,0,0,6.3-2.26,5.5,5.5,0,0,0,1.28-1.19c2-2.62-.2-5.49-.2-5.49h0c-.78-1.86-5.84-3.17-5.84-3.17s-16-6.68-16-12-4-32.92-45.29-39.23c0,0-26.86-1.51-34.41,12.87l-.16,1.68c-2.22,1.39-4.06,4.18-6.25,5a10.21,10.21,0,0,0-2.71,1l0-.19h0a2.58,2.58,0,0,0-.61.79,8,8,0,0,0-.83,3,11.3,11.3,0,0,1-1.31,3.63,8.07,8.07,0,0,1-.6.92h0l-.17.27a7.3,7.3,0,0,0,3.4-.55,16.93,16.93,0,0,1-1,4,3.32,3.32,0,0,0,3.08-1.84l0-.08.13-.18a8.44,8.44,0,0,0,.62-1.45l-.11.12c.2-.65.38-1.31.6-1.95a3.06,3.06,0,0,1,.49-1,2.42,2.42,0,0,1,2.07-.69l-.41,8.67h.18a11.83,11.83,0,0,1-.88,1.82c-1.42,2.3-4,3.87-4.95,6.39a9.4,9.4,0,0,0-.46,3.78c0,.75.09,1.51.15,2.26v-.06c.14,2,.18,3.9-.9,5.51-.74,1.1-1.93,1.93-2.34,3.18a3.1,3.1,0,0,0-.15,1.08,12.13,12.13,0,0,0,.68,3.21.14.14,0,0,0,0-.06,4.88,4.88,0,0,1,.17,2.36c-.45,2-2.88,3.67-2.76,5.58a2.15,2.15,0,0,0,.11.74,4.05,4.05,0,0,0,2.26,2,8.8,8.8,0,0,0,5.08,1.12,6.68,6.68,0,0,0,1.9-.65c-.7,1.61-1.42,3.2-2.15,4.71-.11.24-.23.48-.35.72,0,0-6.18-4.13-9.69,4.29a18.68,18.68,0,0,0-2.17,5.64,13.42,13.42,0,0,1-.74,2.32,14.93,14.93,0,0,1-6.68,6c-7.16,3.28-36.08,39.35-36.59,48.69a54.49,54.49,0,0,1-1.84,10.78,64.15,64.15,0,0,0-1.72,25.49,48.77,48.77,0,0,0,1.77,8.13c3.07,9.33,5.12,26.74,5.12,26.74l3.32,30.22a86,86,0,0,0,.54,12.49c-3.39,3.87-17,20-11.8,24.39,4,3.46,11,2.89,14.93,2.18-3.31,8.19-8.52,22.43-9.21,32.21-1,14.47,1.71,33.64,6,41s18.59,26.24,18.59,26.24-.67,25.9,4.44,35.31,7.17,28.93,7.17,28.93,4.77,16.48,2.38,22.54,4.43,11.1-2.73,15.13-16.32,94.86-16.32,94.86-3.69,59.53,0,62.56a3.75,3.75,0,0,0,.63.37v20s-2.56,4.2,7.85,5.05c7.13.57,27.34,1.86,39.33,2.61l9.29.58s22,4.38,31.72,0,26.95-4.28,24.39-15.85a32.92,32.92,0,0,0-1.36-4.63c-2.81-7.18-7.58-8-16.37-10-.51-.11-1-.21-1.45-.29-9.26-1.61-12.3,2.7-17.49-2.91-4.51-4.85-18.87-10.28-23.76-12,.12-.36.27-.71.39-1.08a7.32,7.32,0,0,1-3.71-1.81l13.25.84,7.89.49s18.7,3.73,27,0,22.9-3.63,20.72-13.46a28.21,28.21,0,0,0-1.15-3.94c-2.39-6.1-6.45-6.77-13.92-8.46-.43-.09-.83-.18-1.23-.25-7.87-1.37-10.45,2.29-14.86-2.47-3.78-4.06-15.71-8.61-20-10.16,0-2.22-3-5.38-4.89-8.55-2.22-3.7,1.88-16.65,1.88-16.65L411,658.74a10.38,10.38,0,0,1,2.8-.8s10.58-10.1,8.19-20.86a69.13,69.13,0,0,1-.76-9.83c3.48-3.23,8.27-8,9.63-10.94,2.22-4.79,0-28,0-28V499.56l17.7,1.79L464.62,503l4.89.5,16.06,1.62,36.91,3.73,33.26-6.3,14.39-2.72,29.59-5.6V421.83ZM386.74,176.86l-2.06-.22C385.36,176.67,386.08,176.8,386.74,176.86Z' transform='translate(-95.23 -55.03)' fill='url(%2307c62293-c0d3-4921-8e06-4e39241449cd)'/%3E%3Cpath d='M558.56,463.78c-10,14.31-45.95,6.73-45.95,6.73l-27.86-26.07L481,440.91l6.29-13.36s2,.55,5.43,1.53C510.73,434.31,567,451.75,558.56,463.78Z' transform='translate(-95.23 -55.03)' fill='%23efb7b9'/%3E%3Cpath d='M492.7,429.08c-1.23,4.28-4.6,10.69-7.95,15.36L481,440.91l6.29-13.36S489.31,428.1,492.7,429.08Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M397.15,278.42s-25.68,11.39-24.42,39.36a461.14,461.14,0,0,0,5.88,53.76s-5.25,42.09,16.61,52.94,42.09,19.77,42.09,19.77,34.2,3.68,38.45,5.2,17.53-21.72,15.08-25.34S457,412.9,453,406.86s-13.25-9.77-13.25-9.77-9.55-5.78-10.2-11,1.87-9.11,2.51-11.4,2.26-24.4,2.26-24.4S445.1,271.59,397.15,278.42Z' transform='translate(-95.23 -55.03)' fill='%23dce6f2'/%3E%3Cpath d='M414.1,370.39s-35.23,5.9-31.82,18.23C382.28,388.62,395.07,375.31,414.1,370.39Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M414.37,375.38S395,391.19,398.79,392,414.37,375.38,414.37,375.38Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M423.68,380.89s-5.19,10.63-2,9.91S423.68,380.89,423.68,380.89Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M494,430.21l-2.14-.61c.61-2,.78-3.62.28-4.37-2.45-3.62-33.82-11.2-37.81-17.25s-13.25-9.77-13.25-9.77-9.55-5.78-10.2-11,1.87-9.11,2.51-11.4,2.26-24.41,2.26-24.41,10.75-78.69-37.2-71.86c0,0-25.68,11.4-24.43,39.37a459.85,459.85,0,0,0,5.89,53.76s-5.25,42.09,16.61,52.94,42.09,19.77,42.09,19.77,34.19,3.67,38.45,5.2c1.61.58,4.52-2.41,7.37-6.52l1.62,1.51,27.86,26.06s35.95,7.59,45.95-6.72C568.31,452.87,512.05,435.43,494,430.21Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M382.37,173.44a8.5,8.5,0,0,0-2.77,1.07c-1,.83-1,2.25-1.25,3.49a11.48,11.48,0,0,1-2,4.78,7.19,7.19,0,0,0,3.33-.55,17.14,17.14,0,0,1-1,4,3.24,3.24,0,0,0,3-1.83,19.26,19.26,0,0,0,1.25-3.51,2.89,2.89,0,0,1,.48-1c.92-1.09,2.63-.6,4.05-.46a6.65,6.65,0,0,0,6.08-2.92c1.51-2.29,1.6-8.15-2-8.77C387.78,167.12,385.44,172.3,382.37,173.44Z' transform='translate(-95.23 -55.03)' fill='%23965d7b'/%3E%3Cg opacity='0.1'%3E%3Cpath d='M379.5,175.74c.09-.49.15-1,.26-1.49h0c-.95.83-1,2.24-1.25,3.49a11,11,0,0,1-.59,2.11A11.46,11.46,0,0,0,379.5,175.74Z' transform='translate(-95.23 -55.03)'/%3E%3Cpath d='M379.82,184a16.63,16.63,0,0,0,1-4,7.16,7.16,0,0,1-3.17.55,11.57,11.57,0,0,1-1.15,2,7.12,7.12,0,0,0,3.32-.54,16.63,16.63,0,0,1-1,4,3.25,3.25,0,0,0,3-1.83,7.46,7.46,0,0,0,.6-1.43A3,3,0,0,1,379.82,184Z' transform='translate(-95.23 -55.03)'/%3E%3Cpath d='M388.6,177.2c-1.42-.14-3.14-.63-4.06.46a3.09,3.09,0,0,0-.48,1c-.09.26-.17.53-.24.8.95-.75,2.49-.35,3.78-.22a6.68,6.68,0,0,0,6.08-2.92,5.54,5.54,0,0,0,.67-1.57A6.66,6.66,0,0,1,388.6,177.2Z' transform='translate(-95.23 -55.03)'/%3E%3C/g%3E%3Cpolygon points='317.24 201 332.49 219.34 330.5 237.85 312.07 209 317.24 201' fill='%23dce6f2'/%3E%3Cpolygon points='332.48 219.34 330.61 236.75 330.49 237.85 313.86 211.81 312.07 209 312.59 208.19 317.23 201 318.26 202.24 332.48 219.34' opacity='0.1'/%3E%3Cpath d='M435.63,231.2c-5.16,1.48-10.09,6.56-14.38,12.73a108.65,108.65,0,0,0-7.76,13.34c-1.41,2.82-2.65,5.53-3.68,7.89l-.72,1.68c-1.74,4.11-2.71,6.86-2.71,6.86S366.88,244,373.13,242c2.1-.67,4.86-5.17,7.59-10.84l.34-.72c1.73-3.64,3.43-7.7,4.94-11.52,3.09-7.85,5.38-14.67,5.38-14.67S451.38,226.7,435.63,231.2Z' transform='translate(-95.23 -55.03)' fill='%23efb7b9'/%3E%3Cpath d='M459.26,202.58s9.12,16.5,21.37,14.25,7.21-8.86,7.21-8.86Z' transform='translate(-95.23 -55.03)' fill='%23444053'/%3E%3Cpath d='M441.59,773.73c-8.08,3.69-26.35,0-26.35,0l-7.7-.48c-10-.64-26.74-1.72-32.66-2.2-8.64-.71-6.52-4.25-6.52-4.25V745.41l41.92-10.62s16.57,5.67,21.11,10.62c4.31,4.72,6.83,1.09,14.52,2.45.38.07.78.15,1.2.25,7.3,1.67,11.26,2.33,13.6,8.38a28.1,28.1,0,0,1,1.13,3.9C464,770.13,449.66,770.06,441.59,773.73Z' transform='translate(-95.23 -55.03)' fill='%23a36468'/%3E%3Cpath d='M460.71,756.49a31.34,31.34,0,0,1-4.72,2.42c-5.5,2.51-10.73,5.57-16.29,7.94s-11.55,4.06-17.57,3.61c-3.15-.23-6.37-1-9.38-.1a21.66,21.66,0,0,0-5.21,2.89c-10-.64-26.74-1.72-32.66-2.2-8.64-.71-6.52-4.25-6.52-4.25v-2.5c.31,0,.66-.09,1.06-.12a18.88,18.88,0,0,1,6.1.91c4.34,1.18,8.66,2.34,13,3.5a10.27,10.27,0,0,1,5-6.38,15.94,15.94,0,0,1,8.06-1.85c6.73.09,13.1,3.28,19.82,3.6a10.92,10.92,0,0,0,5.49-.92c.92-.46,1.73-1.13,2.63-1.64a19.2,19.2,0,0,1,4.53-1.53A99.76,99.76,0,0,0,447,755.69c1.2-.47,2.6-1.32,2.44-2.6-.21-1.7-2.88-1.9-3.58-3.46a2,2,0,0,1,.08-1.77c.38.07.78.15,1.2.25C454.41,749.78,458.37,750.44,460.71,756.49Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M433.05,820.53c-9.5,4.34-31,0-31,0L393,820c-11.72-.75-31.46-2-38.43-2.59-10.17-.84-7.67-5-7.67-5V787.2l49.33-12.5s19.5,6.67,24.84,12.5c5.07,5.55,8,1.28,17.09,2.88.45.08.92.18,1.41.29,8.59,2,13.25,2.75,16,9.87a32.1,32.1,0,0,1,1.33,4.59C459.38,816.29,442.55,816.2,433.05,820.53Z' transform='translate(-95.23 -55.03)' fill='%23a36468'/%3E%3Cpath d='M455.55,800.24a37.23,37.23,0,0,1-5.55,2.85c-6.47,2.95-12.63,6.55-19.17,9.34s-13.59,4.77-20.68,4.25c-3.7-.27-7.49-1.2-11-.12A25.5,25.5,0,0,0,393,820c-11.72-.75-31.46-2-38.43-2.59-10.17-.84-7.67-5-7.67-5v-2.94a12.5,12.5,0,0,1,1.25-.14,21.94,21.94,0,0,1,7.18,1.07l15.29,4.12a12.1,12.1,0,0,1,5.93-7.51,18.66,18.66,0,0,1,9.49-2.18c7.92.11,15.41,3.86,23.32,4.24A12.91,12.91,0,0,0,415.8,808c1.09-.55,2-1.34,3.1-1.93a21.75,21.75,0,0,1,5.33-1.8,119.69,119.69,0,0,0,15.16-4.92c1.41-.56,3.06-1.56,2.87-3.06-.25-2-3.39-2.24-4.22-4.08a2.41,2.41,0,0,1,.1-2.08c.45.08.92.18,1.41.29C448.14,792.34,452.8,793.12,455.55,800.24Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M411.55,647.54l-2.67,62.83s-4,12.83-1.83,16.5,5.83,7.33,4.5,9.5S394.22,762,389.05,753s-10.27-48-10.27-48l4.77-48.17Z' transform='translate(-95.23 -55.03)' fill='%23444053'/%3E%3Cpath d='M423.13,491l7.42,9.92V587.2s2.17,23,0,27.75-13.17,14.25-13.17,14.25l-9.25-47.5,2-50.25Z' transform='translate(-95.23 -55.03)' fill='%23444053'/%3E%3Cpath d='M411.55,647.54l-2.67,62.83s-4,12.83-1.83,16.5,5.83,7.33,4.5,9.5S394.22,762,389.05,753s-10.27-48-10.27-48l4.77-48.17Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M423.13,491l7.42,9.92V587.2s2.17,23,0,27.75-13.17,14.25-13.17,14.25l-9.25-47.5,2-50.25Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M430.55,454.2v46.67l-8.33,36.33s-2.67,87.67-.34,98.33-8,20.67-8,20.67-6,.67-6,5.33-10,18-10,18l.33,26s4.34,48.67-2.33,58,2.33,10.67,2.33,10.67c-8.33,27.33-48.33,21-51.94,18s0-62,0-62,8.94-90,15.94-94,.34-9,2.67-15-2.33-22.33-2.33-22.33-2-19.34-7-28.67-4.34-35-4.34-35-14-18.67-18.16-26-6.84-26.33-5.84-40.67c.68-9.69,5.77-23.8,9-31.92,1.55-3.89,2.67-6.41,2.67-6.41l.95.25,54.62,14.3Z' transform='translate(-95.23 -55.03)' fill='%23444053'/%3E%3Cpath d='M435.63,231.2c-5.16,1.48-10.09,6.56-14.38,12.73l-1.12,0a35.72,35.72,0,0,1-31-17.93,35.18,35.18,0,0,1-3.14-7.15c3.09-7.85,5.38-14.67,5.38-14.67S451.38,226.7,435.63,231.2Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M455.88,206.2A35.75,35.75,0,1,1,389,188.68a34.93,34.93,0,0,1,3.78-5.46A36.18,36.18,0,0,1,401,176a35.75,35.75,0,0,1,54.83,27.58C455.85,204.46,455.88,205.33,455.88,206.2Z' transform='translate(-95.23 -55.03)' fill='%23efb7b9'/%3E%3Cpath d='M425.84,291.78l-.12,1.1-16.63-26c-1.74,4.11-2.71,6.86-2.71,6.86S366.88,244,373.13,242c2.1-.67,4.86-5.17,7.59-10.84l.34-.72c2.9,8.64,19.75,25.91,26.76,32.83.81.8,1.48,1.46,2,1.94l1.07,1,.56.56C414,269.4,424.76,281,425.84,291.78Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M438.27,380l-1.82,58.57L436.13,449s-21.56-2-41.68-4.2c-16.2-1.77-31.47-3.68-33.82-4.8-3-1.41-9.43-2.5-14.5-3.19-3.92-.53-7-.81-7-.81s-1.15.34-2.92.66c-3.86.7-10.64,1.27-14.59-2.16-5.05-4.39,8.22-20.34,11.53-24.17l.73-.83-1.25-11.55L329.38,368s-2-17.25-5-26.5a48.88,48.88,0,0,1-1.73-8.05,64.48,64.48,0,0,1,1.68-25.26,55.08,55.08,0,0,0,1.8-10.69c.5-9.25,28.75-45,35.75-48.25a14.84,14.84,0,0,0,7.16-7.14,13.64,13.64,0,0,0,1.09-3.11c3-13,10.59-7.84,10.59-7.84,1.83,10.17,30.16,37.09,30.16,37.09l.56.56c2.81,2.88,15.33,16.4,14.44,27.94a33.87,33.87,0,0,0,1.89,12.64,213.75,213.75,0,0,1,9.85,56Z' transform='translate(-95.23 -55.03)' fill='%23dce6f2'/%3E%3Cpath d='M398.13,310.45s-7,17-12.25,19.75S400.63,336,398.13,310.45Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M403.38,342.2s-16,2-16,5S403.38,342.2,403.38,342.2Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M420.13,361.7s-23.25,49.5-29.75,51S420.13,361.7,420.13,361.7Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M410.44,270.76l-19.23,8.36L368,244.06a13.64,13.64,0,0,0,1.09-3.11c3-13,10.59-7.84,10.59-7.84,1.83,10.17,30.16,37.09,30.16,37.09Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M411.44,268.76l-19.23,8.36L369,242.06a13.64,13.64,0,0,0,1.09-3.11c3-13,10.59-7.84,10.59-7.84,1.83,10.17,30.16,37.09,30.16,37.09Z' transform='translate(-95.23 -55.03)' fill='%23dce6f2'/%3E%3Cpath d='M436.13,449s-21.56-2-41.68-4.2l36.1,9.45v11c-1.58,1.43-2.95,2.17-3.84,1.79-4.16-1.75-38.11-7.25-38.11-7.25s-19.72-10-41-22a16.43,16.43,0,0,1-1.5-.94,23.64,23.64,0,0,1-6.3-6.31c-3.93-5.69-5.85-13-6.68-20.17a87.22,87.22,0,0,1-.52-12.38A101.51,101.51,0,0,1,333.88,384a460.08,460.08,0,0,1-3-54c.25-28,26.5-38,26.5-38,48.25-4.25,33.29,73.75,33.29,73.75s-2.79,22-3.55,24.25-3.49,6-3.12,11.25,9.59,11.53,9.59,11.53,9,4.22,12.71,10.47c2.7,4.61,20.24,10.86,30.15,15.32Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M452.29,184a11.32,11.32,0,0,1-1,4.78,29.55,29.55,0,0,1-1.78,3.56,16.4,16.4,0,0,1-4.38,5.44c-2.31,1.65-5.23,2.11-8,2.78s-5.65,1.74-7.23,4.1a14.34,14.34,0,0,0-1.69,4.9,10.54,10.54,0,0,1-2,4.74,3.93,3.93,0,0,1-4.68,1.12,4.73,4.73,0,0,1-1.81-2.33c-1.14-2.57-1.43-5.42-1.89-8.19s-1.11-5.62-2.81-7.85-4.71-3.7-7.38-2.83a7.11,7.11,0,0,0-4,3.88,22.24,22.24,0,0,0-1.51,5.52q-1.86,10.18-4.39,20.24a1.86,1.86,0,0,1-.33.76,1.44,1.44,0,0,1-1,.42c-2.24.3-4.39-1.27-6.65-1.1a3.82,3.82,0,0,0-.69.11,35.73,35.73,0,0,1,3.61-40.8l.18-.05a10.78,10.78,0,0,0,4-2.52,42.22,42.22,0,0,0,4-4.63l.8-1a45.61,45.61,0,0,1,7.8-7.41,8,8,0,0,1,2.66-1.44,7.88,7.88,0,0,1,2.52-.08,63.57,63.57,0,0,0,10.41.39,66.79,66.79,0,0,1,7.31-.74c6.33.18,11.73,4.65,15.73,9.55C450.24,177.83,452.16,180.72,452.29,184Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M384.33,189.63c-1.39,2.28-3.9,3.83-4.84,6.33-1.38,3.63.95,8.15-1.19,11.39-.71,1.09-1.88,1.9-2.28,3.15-.68,2.11,1.18,4.36.7,6.53s-3.34,4-2.58,6.12a4,4,0,0,0,2.2,2,8.6,8.6,0,0,0,5,1.11c2.73-.45,4.76-3.13,7.53-3.33,2.25-.16,4.4,1.4,6.64,1.11a1.5,1.5,0,0,0,1-.43,1.73,1.73,0,0,0,.33-.76q2.52-10.05,4.4-20.24a21.8,21.8,0,0,1,1.5-5.52,7.17,7.17,0,0,1,4-3.88c2.67-.86,5.67.6,7.38,2.83s2.36,5.08,2.82,7.85.75,5.62,1.88,8.19a4.78,4.78,0,0,0,1.82,2.34c1.5.87,3.52.18,4.67-1.12a10.43,10.43,0,0,0,2-4.75,14.28,14.28,0,0,1,1.69-4.89c1.58-2.36,4.47-3.43,7.23-4.1s5.67-1.14,8-2.79a16.46,16.46,0,0,0,4.38-5.43c1.48-2.58,2.86-5.38,2.74-8.35-.13-3.24-2.05-6.13-4.1-8.65-4-4.9-9.41-9.37-15.74-9.54a62.2,62.2,0,0,0-7.31.74,62.57,62.57,0,0,1-10.41-.4,8.18,8.18,0,0,0-2.52.09,7.54,7.54,0,0,0-2.65,1.44,45.63,45.63,0,0,0-7.81,7.4,57.31,57.31,0,0,1-4.82,5.6,10.85,10.85,0,0,1-4,2.53c-1,.28-2,.08-2.95.39C386.09,183.52,385.7,187.37,384.33,189.63Z' transform='translate(-95.23 -55.03)' fill='%23965d7b'/%3E%3Cpath d='M480.63,216.82c-8,1.47-14.63-5-18.3-9.72a39.22,39.22,0,0,1-3.07-4.52l27.46,5.18,1.11.21S492.88,214.58,480.63,216.82Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cg opacity='0.1'%3E%3Cpath d='M376.72,214.17a8.33,8.33,0,0,0-.58-3.84c0,.1-.09.2-.12.3-.43,1.34.15,2.73.52,4.12A3,3,0,0,0,376.72,214.17Z' transform='translate(-95.23 -55.03)'/%3E%3Cpath d='M379.1,197.8a22.22,22.22,0,0,0,.08,4.15A22.28,22.28,0,0,0,379.1,197.8Z' transform='translate(-95.23 -55.03)'/%3E%3Cpath d='M448.55,188.45a16.4,16.4,0,0,1-4.38,5.44c-2.31,1.65-5.22,2.11-8,2.78s-5.65,1.74-7.23,4.1a14.41,14.41,0,0,0-1.69,4.9,10.47,10.47,0,0,1-2,4.75c-1.15,1.3-3.17,2-4.67,1.12a4.78,4.78,0,0,1-1.82-2.34c-1.13-2.57-1.43-5.41-1.88-8.19s-1.12-5.62-2.82-7.85-4.71-3.7-7.38-2.83a7.14,7.14,0,0,0-4,3.88,21.8,21.8,0,0,0-1.5,5.52q-1.87,10.19-4.4,20.24a1.73,1.73,0,0,1-.33.76,1.5,1.5,0,0,1-1,.43c-2.24.29-4.39-1.27-6.64-1.11-2.77.2-4.8,2.88-7.53,3.32a8.45,8.45,0,0,1-5-1.11,5.35,5.35,0,0,1-1.83-1.3,2.7,2.7,0,0,0-.37,2.33,3.9,3.9,0,0,0,2.2,2,8.45,8.45,0,0,0,5,1.11c2.73-.44,4.76-3.12,7.53-3.32,2.25-.16,4.4,1.4,6.64,1.11a1.5,1.5,0,0,0,1-.43,1.73,1.73,0,0,0,.33-.76q2.52-10,4.4-20.24a21.8,21.8,0,0,1,1.5-5.52,7.14,7.14,0,0,1,4-3.88c2.67-.87,5.67.6,7.38,2.83s2.36,5.08,2.82,7.85.75,5.62,1.88,8.19a4.78,4.78,0,0,0,1.82,2.34c1.5.87,3.52.18,4.67-1.12a10.47,10.47,0,0,0,2-4.75,14.41,14.41,0,0,1,1.69-4.9c1.58-2.36,4.47-3.42,7.23-4.1s5.67-1.13,8-2.78a16.4,16.4,0,0,0,4.38-5.44c1.48-2.57,2.86-5.37,2.74-8.34a10.74,10.74,0,0,0-.12-1.14A19.65,19.65,0,0,1,448.55,188.45Z' transform='translate(-95.23 -55.03)'/%3E%3C/g%3E%3Cpath d='M451.33,188.75a35.33,35.33,0,0,1,4.45,14.85c-8.91-5-17.29-10.49-21.52-12.4-7.37-3.33-34.93-2.83-45.29-2.52a34.93,34.93,0,0,1,3.78-5.46A36.18,36.18,0,0,1,401,176a35.77,35.77,0,0,1,50.38,12.73Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M483.13,212.58c-4.81,1.48-12.66-1.38-20.8-5.48a39.22,39.22,0,0,1-3.07-4.52l27.46,5.18C488.54,209,489,210.77,483.13,212.58Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M422.26,154.08s-26.25-1.5-33.63,12.75l-1.19,12.63-2-.22-.4,8.59s40.12-1.75,49.25,2.37,37.5,24.88,48.87,21.38-1-6.75-1-6.75S466.51,198.2,466.51,193,462.63,160.33,422.26,154.08Z' transform='translate(-95.23 -55.03)' fill='%23444053'/%3E%3Cpath d='M371.63,622.28s16.75,16.25,24,15C395.63,637.28,375.13,635.53,371.63,622.28Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M368.13,629.81s1.5,8.36,5.5,7.54S368.13,629.81,368.13,629.81Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M394.38,769.53s-23.78,18.5-19.77,19S394.38,769.53,394.38,769.53Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpolygon points='330.96 347.33 407.96 334.8 407.96 407.7 334.8 403.87 330.96 347.33' fill='%232D5798'/%3E%3Cpolygon points='330.96 347.33 407.96 334.8 407.96 407.7 334.8 403.87 330.96 347.33' opacity='0.05'/%3E%3Cpolygon points='407.96 334.8 500.3 341.71 495.19 405.15 407.96 407.7 407.96 334.8' fill='%232D5798'/%3E%3Cpolygon points='407.96 334.8 500.3 341.71 495.19 405.15 407.96 407.7 407.96 334.8' opacity='0.1'/%3E%3Cpolygon points='436.35 312.55 407.96 334.8 500.3 341.71 515.39 318.94 436.35 312.55' fill='%232D5798'/%3E%3Cpolygon points='303.08 323.03 372.4 314.59 407.96 334.8 330.96 347.33 303.08 323.03' fill='%232D5798'/%3E%3Cpolygon points='424.84 353.73 424.84 453.4 388.77 449.7 373.08 448.1 368.3 447.6 352.62 445.99 330.96 443.77 330.96 347.33 407.95 352.57 424.84 353.73' fill='%232D5798'/%3E%3Cpolygon points='500.3 341.71 500.3 438.91 471.39 444.46 457.33 447.16 424.84 453.4 424.84 353.73 500.3 341.71' fill='%232D5798'/%3E%3Cpolygon points='500.3 341.71 500.3 438.91 471.39 444.46 457.33 447.16 424.84 453.4 424.84 353.73 500.3 341.71' opacity='0.05'/%3E%3Cpolygon points='303.08 368.31 330.96 347.33 424.84 353.73 411.02 377.01 303.08 368.31' fill='%232D5798'/%3E%3Cpolygon points='303.08 368.31 330.96 347.33 424.84 353.73 411.02 377.01 303.08 368.31' fill='%23fff' opacity='0.1'/%3E%3Cpolygon points='500.3 341.71 424.84 353.73 449.4 375.73 530.23 362.17 500.3 341.71' fill='%232D5798'/%3E%3Cpolygon points='500.3 341.71 424.84 353.73 449.4 375.73 530.23 362.17 500.3 341.71' fill='%23fff' opacity='0.1'/%3E%3Cpolygon points='471.39 444.46 457.33 447.16 457.33 426.39 470.5 423.07 471.39 444.46' fill='%23fff' opacity='0.1'/%3E%3Cpolygon points='388.77 435.96 388.77 449.7 373.08 448.1 373.08 435.96 388.77 435.96' fill='%23fff' opacity='0.1'/%3E%3Cpolygon points='368.3 440.29 368.3 447.6 352.62 445.99 352.62 440.29 368.3 440.29' fill='%23fff' opacity='0.1'/%3E%3Cpath d='M510.63,483.7c-10.75,13.75-46.25,4.25-46.25,4.25L438,460.43l-3.58-3.73,7-13s2,.66,5.34,1.82C464.44,451.7,519.68,472.13,510.63,483.7Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M509.63,481.7c-10.75,13.75-46.25,4.25-46.25,4.25L437,458.43l-3.58-3.73,7-13s2,.66,5.34,1.82C463.44,449.7,518.68,470.13,509.63,481.7Z' transform='translate(-95.23 -55.03)' fill='%23efb7b9'/%3E%3Cpath d='M445.72,443.52c-1.46,4.2-5.17,10.42-8.76,14.91l-3.58-3.73,7-13S442.39,442.36,445.72,443.52Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M358.38,288s-26.25,10-26.5,38a460.08,460.08,0,0,0,3,54s-7.5,41.75,13.75,53.75,41,22,41,22,33.95,5.5,38.12,7.25,18.66-20.75,16.41-24.5-33.16-13-36.83-19.25-12.71-10.46-12.71-10.46-9.22-6.29-9.59-11.54,2.35-9,3.12-11.25,3.56-24.25,3.56-24.25S406.63,283.7,358.38,288Z' transform='translate(-95.23 -55.03)' fill='%23dce6f2'/%3E%3Cpath d='M370.38,380.7s-35.5,4-32.75,16.5C337.63,397.2,351.12,384.59,370.38,380.7Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M370.38,385.7s-20.15,14.75-16.45,15.75S370.38,385.7,370.38,385.7Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M379.38,391.7s-5.75,10.34-2.5,9.8S379.38,391.7,379.38,391.7Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M749,167.42s-38-2.29-33.56,24.37c0,0-.89,4.71,3.38,6.85,0,0,.07-2,3.9-1.31a17.51,17.51,0,0,0,4.13.2,8.57,8.57,0,0,0,5.06-2.09h0s10.69-4.41,14.85-21.89c0,0,3.08-3.82,3-4.8l-6.42,2.75s2.19,4.63.46,8.48c0,0-.2-8.31-1.44-8.12-.25,0-3.33,1.61-3.33,1.61s3.77,8.06.92,13.93c0,0,1.08-9.94-2.1-13.35l-4.52,2.64s4.41,8.33,1.42,15.13c0,0,.77-10.43-2.37-14.49l-4.1,3.19s4.15,8.22,1.62,13.86c0,0-.33-12.14-2.51-13.06,0,0-3.58,3.16-4.12,4.46,0,0,2.83,6,1.07,9.11,0,0-1.08-8.09-2-8.13,0,0-3.57,5.36-3.94,9a19.46,19.46,0,0,1,3.07-9.54,10.71,10.71,0,0,0-5.46,2.83s.55-3.79,6.34-4.12c0,0,3-4.07,3.74-4.32,0,0-5.76-.48-9.25,1.07,0,0,3.07-3.57,10.31-2l4-3.3s-7.58-1-10.8.11c0,0,3.7-3.16,11.89-.86l4.4-2.63s-6.46-1.4-10.31-.89c0,0,4.06-2.19,11.6.18l3.15-1.41s-4.74-.93-6.12-1.08-1.46-.53-1.46-.53a16.36,16.36,0,0,1,8.89,1S749.14,167.84,749,167.42Z' transform='translate(-95.23 -55.03)' fill='%232D5798'/%3E%3Cpath d='M864.46,300.76s-38-2.29-33.56,24.37c0,0-.89,4.71,3.38,6.85,0,0,.07-2,3.91-1.31a17.51,17.51,0,0,0,4.13.2,8.56,8.56,0,0,0,5-2.08h0s10.7-4.42,14.86-21.9c0,0,3.07-3.81,2.95-4.79l-6.42,2.74s2.19,4.63.47,8.48c0,0-.21-8.31-1.44-8.12-.25,0-3.34,1.61-3.34,1.61s3.78,8.07.93,13.93c0,0,1.08-9.94-2.11-13.35L848.75,310s4.41,8.33,1.42,15.13c0,0,.77-10.43-2.37-14.49l-4.09,3.2s4.14,8.21,1.62,13.85c0,0-.33-12.14-2.51-13.06,0,0-3.58,3.16-4.13,4.46,0,0,2.84,6,1.08,9.11,0,0-1.08-8.09-2-8.13,0,0-3.57,5.36-3.94,9a19.52,19.52,0,0,1,3.08-9.54,10.76,10.76,0,0,0-5.47,2.83s.56-3.79,6.35-4.12c0,0,2.95-4.07,3.74-4.32,0,0-5.76-.48-9.25,1.07,0,0,3.07-3.57,10.3-1.95l4-3.3s-7.59-1-10.8.11c0,0,3.7-3.16,11.89-.86l4.4-2.63s-6.47-1.39-10.32-.89c0,0,4.07-2.19,11.61.18l3.15-1.41s-4.74-.93-6.13-1.08-1.46-.53-1.46-.53a16.39,16.39,0,0,1,8.9,1S864.58,301.18,864.46,300.76Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M633.61,277.09s8.75-37.09-18.29-37.22c0,0-4.49-1.68-7.32,2.16,0,0,1.93.41.62,4.07a17.8,17.8,0,0,0-.9,4,8.59,8.59,0,0,0,1.19,5.33h0s2.53,11.3,19,18.38c0,0,3.24,3.68,4.22,3.72l-1.6-6.79s-4.94,1.37-8.44-1c0,0,8.23,1.21,8.24,0,0-.25-1-3.56-1-3.56s-8.59,2.34-13.89-1.47c0,0,9.61,2.76,13.52.21L627.16,260s-9,2.93-15.16-1.18c0,0,10.15,2.54,14.69.14l-2.45-4.58s-8.8,2.68-13.93-.77c0,0,12,1.74,13.3-.24,0,0-2.5-4.07-3.69-4.83,0,0-6.36,1.78-9.16-.49,0,0,8.15.31,8.34-.55,0,0-4.67-4.43-8.23-5.43a19.6,19.6,0,0,1,8.89,4.66,10.79,10.79,0,0,0-1.86-5.87s3.64,1.2,3,7c0,0,3.5,3.6,3.61,4.42,0,0,1.45-5.59.52-9.3,0,0,3,3.64.17,10.49l2.56,4.55s2.32-7.3,1.73-10.66c0,0,2.49,4.18-1.18,11.86l1.85,4.79s2.47-6.14,2.63-10c0,0,1.47,4.38-2.16,11.41l.86,3.34s1.72-4.51,2.1-5.85.77-1.35.77-1.35a16.38,16.38,0,0,1-2.49,8.6S633.18,277.14,633.61,277.09Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M550.39,289.73s-30.52-22.83-41.43,1.9c0,0-3.33,3.45-.94,7.58,0,0,1.14-1.61,4,1.06a17.51,17.51,0,0,0,3.34,2.44,8.58,8.58,0,0,0,5.37,1h0s11.36,2.19,24.44-10.12c0,0,4.67-1.5,5.11-2.38L543.39,290s-.72,5.07-4.27,7.34c0,0,4.39-7.06,3.25-7.57-.23-.11-3.67-.5-3.67-.5s-1.28,8.82-6.88,12.15c0,0,6.37-7.71,5.58-12.31l-5.23-.28s-.89,9.39-7.13,13.43c0,0,6.37-8.29,6-13.41l-5.18.42s-1.05,9.13-6.26,12.45c0,0,6.39-10.32,5.08-12.28,0,0-4.73.67-5.9,1.45,0,0-.91,6.54-4.11,8.2,0,0,3.55-7.35,2.83-7.86,0,0-5.93,2.51-8.26,5.37a19.53,19.53,0,0,1,7.82-6.28,10.77,10.77,0,0,0-6.12-.64s2.54-2.86,7.56.05c0,0,4.7-1.77,5.5-1.55,0,0-4.55-3.57-8.32-4.19,0,0,4.54-1.3,9.69,4l5.19-.53s-5.77-5-9.08-5.84c0,0,4.83-.61,10.4,5.81l5.12.23s-4.63-4.72-8.12-6.42c0,0,4.59.4,9.59,6.53l3.41.55s-3.45-3.38-4.53-4.26-.93-1.25-.93-1.25a16.43,16.43,0,0,1,6.89,5.72S550.26,290.14,550.39,289.73Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M652,77.62s-30.52-22.84-41.43,1.9c0,0-3.33,3.45-.94,7.58,0,0,1.14-1.61,4,1.06a17.79,17.79,0,0,0,3.35,2.43,8.57,8.57,0,0,0,5.37,1h0s11.36,2.19,24.44-10.13c0,0,4.67-1.49,5.1-2.38L645,77.89s-.71,5.07-4.27,7.34c0,0,4.4-7.06,3.26-7.57-.23-.11-3.67-.5-3.67-.5S639,86,633.4,89.31c0,0,6.36-7.71,5.58-12.31l-5.23-.28s-.9,9.39-7.13,13.42c0,0,6.37-8.29,6-13.41l-5.17.42s-1.06,9.14-6.27,12.46c0,0,6.4-10.32,5.09-12.28,0,0-4.73.67-5.9,1.45,0,0-.91,6.54-4.11,8.2,0,0,3.55-7.35,2.83-7.87,0,0-5.93,2.52-8.26,5.38a19.44,19.44,0,0,1,7.82-6.28,10.7,10.7,0,0,0-6.13-.64s2.55-2.86,7.57.05c0,0,4.7-1.78,5.5-1.55,0,0-4.55-3.57-8.32-4.2,0,0,4.53-1.29,9.68,4l5.19-.53s-5.76-5-9.08-5.85c0,0,4.83-.6,10.41,5.82l5.12.22s-4.63-4.72-8.13-6.41c0,0,4.6.4,9.6,6.53l3.4.55S640,72.86,638.92,72s-.93-1.24-.93-1.24a16.4,16.4,0,0,1,6.89,5.72S651.83,78,652,77.62Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M768.62,106.55s-12.2-36.11-35.21-21.92c0,0-4.7,1-5.07,5.71,0,0,1.85-.68,2.67,3.12a18,18,0,0,0,1.37,3.91,8.66,8.66,0,0,0,3.84,3.89h0s8.12,8.25,25.88,5.52c0,0,4.69,1.42,5.55.93l-5-4.91s-3.46,3.77-7.68,3.62c0,0,7.63-3.32,7-4.39-.13-.21-2.74-2.48-2.74-2.48s-6.06,6.53-12.56,6.1c0,0,9.61-2.74,11.57-7l-4.14-3.19s-6.06,7.22-13.49,7c0,0,10-3.21,12.53-7.65l-4.5-2.59s-6,6.93-12.22,6.71c0,0,11.12-4.87,11.15-7.23,0,0-4.27-2.13-5.68-2.15,0,0-4.46,4.87-8,4.43,0,0,7.08-4.05,6.78-4.88,0,0-6.3-1.29-9.85-.25a19.49,19.49,0,0,1,10-.75,10.79,10.79,0,0,0-4.69-4s3.72-.91,6.21,4.33c0,0,4.88,1.21,5.4,1.84,0,0-1.72-5.51-4.47-8.17,0,0,4.47,1.51,5.69,8.82l4.58,2.5s-1.89-7.41-4.17-10c0,0,4.33,2.24,5.27,10.69l4.1,3.09s-1.14-6.52-3.06-9.9c0,0,3.56,2.94,4.2,10.83l2.49,2.38s-.92-4.74-1.3-6.08S761,93,761,93a16.49,16.49,0,0,1,2.43,8.62S768.27,106.81,768.62,106.55Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M689,108.33S651.1,104.11,654.23,131c0,0-1.13,4.66,3,7,0,0,.17-2,4-1.1a18.4,18.4,0,0,0,4.12.41,8.6,8.6,0,0,0,5.15-1.83h0s10.91-3.87,16-21.12c0,0,3.26-3.65,3.19-4.64l-6.55,2.42s2,4.73,0,8.49c0,0,.21-8.31-1-8.18-.25,0-3.41,1.44-3.41,1.44s3.36,8.25.22,14c0,0,1.58-9.88-1.43-13.44l-4.65,2.4s4,8.55.65,15.19c0,0,1.3-10.38-1.63-14.59l-4.25,3s3.72,8.41.91,13.92c0,0,.29-12.14-1.84-13.17,0,0-3.74,3-4.35,4.24,0,0,2.53,6.1.62,9.15,0,0-.67-8.13-1.55-8.21,0,0-3.84,5.17-4.4,8.82a19.47,19.47,0,0,1,3.56-9.38,10.76,10.76,0,0,0-5.6,2.55s.74-3.75,6.54-3.79c0,0,3.15-3.91,4-4.12,0,0-5.73-.77-9.3.6,0,0,3.25-3.42,10.39-1.43l4.21-3.09S663.22,115,660,116c0,0,3.86-3,11.92-.25l4.53-2.41s-6.39-1.72-10.26-1.41c0,0,4.17-2,11.58.77l3.22-1.25s-4.69-1.17-6.07-1.39-1.43-.6-1.43-.6a16.45,16.45,0,0,1,8.84,1.44S689.07,108.75,689,108.33Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M1020.6,402.5s-37.88-4.22-34.75,22.64c0,0-1.13,4.66,3,7,0,0,.17-2,4-1.11a17.3,17.3,0,0,0,4.12.41,8.53,8.53,0,0,0,5.15-1.83h0s10.91-3.87,15.95-21.11c0,0,3.26-3.66,3.19-4.64l-6.55,2.41s2,4.74,0,8.5c0,0,.21-8.32-1-8.18-.25,0-3.41,1.43-3.41,1.43s3.36,8.25.22,14c0,0,1.58-9.87-1.43-13.44l-4.65,2.41s4,8.55.66,15.19c0,0,1.29-10.38-1.64-14.6l-4.25,3s3.72,8.41.91,13.91c0,0,.29-12.14-1.84-13.16,0,0-3.73,3-4.35,4.24,0,0,2.54,6.1.62,9.15,0,0-.67-8.13-1.55-8.21,0,0-3.84,5.17-4.4,8.82a19.47,19.47,0,0,1,3.56-9.38,10.67,10.67,0,0,0-5.6,2.55s.74-3.76,6.54-3.8c0,0,3.16-3.91,4-4.11,0,0-5.73-.78-9.3.59,0,0,3.25-3.41,10.4-1.42l4.2-3.09s-7.52-1.42-10.79-.44c0,0,3.86-3,11.92-.26l4.53-2.4s-6.39-1.72-10.26-1.41c0,0,4.17-2,11.58.77l3.22-1.26s-4.69-1.17-6.07-1.38-1.43-.6-1.43-.6a16.39,16.39,0,0,1,8.84,1.43S1020.7,402.93,1020.6,402.5Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M1078.51,437.88s-37.88-4.21-34.75,22.64c0,0-1.12,4.66,3,7,0,0,.17-2,4-1.1a17.65,17.65,0,0,0,4.11.4A8.64,8.64,0,0,0,1060,465h0s10.9-3.87,15.94-21.12c0,0,3.27-3.65,3.19-4.64l-6.55,2.41s2,4.74,0,8.5c0,0,.21-8.31-1-8.18-.25,0-3.41,1.43-3.41,1.43s3.36,8.25.22,14c0,0,1.58-9.87-1.43-13.43l-4.65,2.4s4,8.55.66,15.19c0,0,1.29-10.38-1.64-14.59l-4.25,3s3.72,8.41.92,13.92c0,0,.28-12.15-1.85-13.17,0,0-3.73,3-4.35,4.24,0,0,2.54,6.1.62,9.15,0,0-.67-8.13-1.55-8.21,0,0-3.84,5.17-4.39,8.82a19.52,19.52,0,0,1,3.55-9.38,10.76,10.76,0,0,0-5.6,2.55s.75-3.76,6.55-3.79c0,0,3.15-3.91,4-4.12,0,0-5.73-.77-9.3.6,0,0,3.25-3.42,10.4-1.43l4.2-3.09s-7.52-1.42-10.79-.44c0,0,3.86-3,11.92-.25l4.53-2.41s-6.39-1.72-10.26-1.41c0,0,4.17-2,11.58.77l3.22-1.25s-4.69-1.17-6.06-1.39-1.44-.6-1.44-.6a16.45,16.45,0,0,1,8.84,1.44S1078.61,438.31,1078.51,437.88Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M949.94,139.87s-30.52-22.83-41.43,1.9c0,0-3.33,3.45-.94,7.58,0,0,1.14-1.61,4,1.06a17.51,17.51,0,0,0,3.34,2.44,8.59,8.59,0,0,0,5.37,1h0s11.36,2.19,24.45-10.12c0,0,4.66-1.5,5.1-2.38l-6.87-1.24s-.72,5.07-4.27,7.34c0,0,4.39-7.06,3.25-7.57-.23-.11-3.66-.5-3.66-.5s-1.29,8.82-6.89,12.15c0,0,6.37-7.71,5.58-12.31l-5.23-.28s-.89,9.39-7.13,13.43c0,0,6.38-8.29,6-13.41l-5.18.42s-1,9.13-6.26,12.45c0,0,6.4-10.32,5.08-12.28,0,0-4.73.67-5.9,1.45,0,0-.9,6.54-4.1,8.2,0,0,3.54-7.35,2.82-7.86,0,0-5.93,2.51-8.26,5.37a19.53,19.53,0,0,1,7.82-6.28,10.77,10.77,0,0,0-6.12-.64s2.55-2.86,7.57.05c0,0,4.69-1.77,5.49-1.55,0,0-4.55-3.57-8.32-4.19,0,0,4.54-1.3,9.69,4l5.19-.53s-5.76-5-9.08-5.84c0,0,4.83-.61,10.4,5.81l5.13.23s-4.64-4.72-8.13-6.42c0,0,4.6.4,9.59,6.53l3.41.55s-3.45-3.38-4.53-4.26S936,133,936,133a16.44,16.44,0,0,1,6.88,5.72S949.81,140.28,949.94,139.87Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M973.52,304.69S963,268.06,939.34,281.21c0,0-4.74.73-5.33,5.47,0,0,1.88-.59,2.53,3.24a17.73,17.73,0,0,0,1.2,4A8.59,8.59,0,0,0,941.4,298h0s7.74,8.6,25.6,6.68c0,0,4.62,1.62,5.5,1.18l-4.73-5.14s-3.63,3.62-7.83,3.28c0,0,7.76-3,7.16-4.07-.12-.22-2.62-2.61-2.62-2.61s-6.34,6.26-12.82,5.53c0,0,9.73-2.3,11.87-6.44l-4-3.38s-6.38,6.94-13.79,6.4c0,0,10.08-2.77,12.86-7.08l-4.38-2.79s-6.35,6.65-12.51,6.15c0,0,11.33-4.37,11.47-6.72,0,0-4.18-2.32-5.59-2.4,0,0-4.67,4.66-8.22,4.06,0,0,7.26-3.73,7-4.57,0,0-6.24-1.57-9.83-.7a19.51,19.51,0,0,1,10-.29,10.73,10.73,0,0,0-4.5-4.2s3.76-.75,6,4.6c0,0,4.81,1.42,5.31,2.08,0,0-1.47-5.59-4.1-8.36,0,0,4.4,1.7,5.29,9.06l4.46,2.71s-1.56-7.5-3.72-10.14c0,0,4.22,2.43,4.79,10.91l4,3.27s-.85-6.56-2.61-10c0,0,3.43,3.1,3.71,11l2.38,2.5s-.7-4.78-1-6.14,0-1.55,0-1.55a16.39,16.39,0,0,1,2.05,8.72S973.16,304.93,973.52,304.69Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M739.1,387.23s-20.43-32.18-39.4-12.92c0,0-4.34,2-3.58,6.75,0,0,1.65-1.1,3.35,2.4a17.12,17.12,0,0,0,2.26,3.46,8.54,8.54,0,0,0,4.65,2.88h0s9.85,6.08,26.45-.8c0,0,4.89.26,5.61-.41l-6-3.6s-2.47,4.5-6.6,5.35c0,0,6.62-5,5.73-5.92-.17-.18-3.25-1.76-3.25-1.76s-4.33,7.78-10.75,8.91c0,0,8.69-4.95,9.59-9.53l-4.79-2.11s-4.17,8.45-11.43,10c0,0,8.9-5.49,10.35-10.41l-5-1.44s-4.22,8.17-10.27,9.42c0,0,9.64-7.38,9.11-9.68,0,0-4.66-1.05-6-.73,0,0-3.17,5.79-6.75,6.21,0,0,5.92-5.62,5.43-6.36,0,0-6.43.25-9.63,2.1a19.46,19.46,0,0,1,9.54-3.1,10.73,10.73,0,0,0-5.49-2.77s3.39-1.77,7,2.73c0,0,5,0,5.69.5,0,0-3-5-6.29-6.87,0,0,4.7.4,7.62,7.21l5.05,1.34s-3.61-6.75-6.42-8.68c0,0,4.73,1.14,7.66,9.13l4.72,2s-2.66-6.05-5.33-8.88c0,0,4.16,2,6.65,9.51l3,1.73s-2-4.39-2.71-5.6-.43-1.49-.43-1.49a16.4,16.4,0,0,1,4.41,7.79S738.83,387.57,739.1,387.23Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M873.37,222.81s-19.43-32.79-39-14.13c0,0-4.4,1.9-3.78,6.64,0,0,1.67-1.06,3.27,2.49a17.28,17.28,0,0,0,2.15,3.54,8.49,8.49,0,0,0,4.56,3h0s9.65,6.38,26.46,0c0,0,4.88.41,5.62-.24l-5.87-3.78s-2.6,4.41-6.76,5.14c0,0,6.77-4.83,5.92-5.74-.18-.19-3.2-1.87-3.2-1.87s-4.57,7.65-11,8.58c0,0,8.84-4.68,9.87-9.22L856.89,215s-4.43,8.33-11.74,9.66c0,0,9.07-5.21,10.67-10.08l-4.94-1.6s-4.48,8-10.56,9.1c0,0,9.86-7.08,9.4-9.39,0,0-4.62-1.2-6-.92,0,0-3.35,5.69-6.94,6,0,0,6.09-5.42,5.63-6.18,0,0-6.44.05-9.69,1.8a19.52,19.52,0,0,1,9.63-2.8,10.75,10.75,0,0,0-5.41-2.94s3.45-1.67,7,2.94c0,0,5,.17,5.67.68,0,0-2.83-5-6.07-7.06,0,0,4.68.54,7.39,7.44l5,1.5s-3.39-6.86-6.15-8.88c0,0,4.7,1.29,7.38,9.36l4.65,2.17s-2.47-6.13-5-9c0,0,4.09,2.13,6.36,9.71l2.93,1.82s-1.88-4.45-2.54-5.68-.38-1.5-.38-1.5a16.43,16.43,0,0,1,4.17,7.92S873.08,223.14,873.37,222.81Z' transform='translate(-95.23 -55.03)' fill='%232D5798'/%3E%3Cpath d='M750.44,291.76s1-38.1-25.47-32.73c0,0-4.74-.73-6.74,3.61,0,0,2,0,1.44,3.85a17.56,17.56,0,0,0-.06,4.14,8.55,8.55,0,0,0,2.25,5h0s4.77,10.54,22.38,14.12c0,0,3.91,2.95,4.89,2.79l-3-6.32s-4.55,2.34-8.46.75c0,0,8.3-.49,8.07-1.71,0-.25-1.72-3.29-1.72-3.29s-7.94,4.05-13.89,1.39c0,0,10,.75,13.27-2.54l-2.79-4.43s-8.18,4.68-15.08,1.92c0,0,10.45.42,14.41-2.85l-3.33-4s-8.07,4.42-13.79,2.08c0,0,12.12-.73,13-2.94,0,0-3.28-3.47-4.6-4,0,0-5.86,3-9.06,1.38,0,0,8-1.34,8.05-2.23,0,0-5.47-3.39-9.16-3.64a19.47,19.47,0,0,1,9.65,2.76,10.75,10.75,0,0,0-3-5.37s3.81.43,4.33,6.2c0,0,4.17,2.82,4.44,3.6,0,0,.29-5.77-1.38-9.21,0,0,3.68,2.95,2.3,10.23l3.43,3.94s.78-7.62-.47-10.79c0,0,3.28,3.59,1.26,11.85l2.77,4.31s1.18-6.51.55-10.34c0,0,2.32,4,.2,11.61l1.52,3.1s.77-4.77.87-6.16.48-1.48.48-1.48a16.42,16.42,0,0,1-.69,8.93S750,291.89,750.44,291.76Z' transform='translate(-95.23 -55.03)' fill='%232D5798'/%3E%3Cellipse cx='698.97' cy='716.3' rx='26.93' ry='4.55' fill='%232D5798' opacity='0.1'/%3E%3Cellipse cx='600.8' cy='785.38' rx='26.93' ry='4.55' fill='%232D5798' opacity='0.1'/%3E%3Cellipse cx='93.14' cy='749.99' rx='26.93' ry='4.55' fill='%232D5798' opacity='0.1'/%3E%3Cellipse cx='805.06' cy='780.83' rx='26.93' ry='4.55' fill='%232D5798' opacity='0.1'/%3E%3Cellipse cx='833.1' cy='723.1' rx='40.21' ry='6.8' fill='%232D5798'/%3E%3Cpath d='M945,767a11.61,11.61,0,0,0,3.83-5.78c.5-2.3-.48-5.05-2.67-5.89-2.46-.94-5.09.76-7.09,2.48s-4.27,3.69-6.88,3.33a10.5,10.5,0,0,0,3.24-9.81,4.11,4.11,0,0,0-.9-2c-1.37-1.46-3.84-.83-5.48.32-5.2,3.66-6.65,10.72-6.68,17.08-.52-2.29-.08-4.68-.09-7s-.66-5-2.65-6.22a7.91,7.91,0,0,0-4-1c-2.34-.08-4.95.15-6.54,1.86-2,2.12-1.47,5.69.25,8s4.35,3.8,6.77,5.42a15.13,15.13,0,0,1,4.84,4.61,4.7,4.7,0,0,1,.35.82h14.66A40.44,40.44,0,0,0,945,767Z' transform='translate(-95.23 -55.03)' fill='%232D5798'/%3E%3Cpath d='M170.29,783.87s15.35-.47,20-3.77,23.63-7.23,24.78-1.94,23.08,26.29,5.74,26.43-40.29-2.7-44.91-5.52S170.29,783.87,170.29,783.87Z' transform='translate(-95.23 -55.03)' fill='%23a8a8a8'/%3E%3Cpath d='M221.1,802.75c-17.34.14-40.29-2.7-44.91-5.52-3.52-2.14-4.92-9.83-5.39-13.38l-.51,0s1,12.39,5.59,15.2,27.57,5.66,44.91,5.52c5,0,6.73-1.82,6.64-4.46C226.73,801.72,224.82,802.72,221.1,802.75Z' transform='translate(-95.23 -55.03)' opacity='0.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    margin: auto
}

.dsm-no-data.dsm-no-data-lg::before {
    width: 34rem;
    height: 26rem
}

.dsm-no-data.dsm-no-data-xs {
    margin: 0
}

.dsm-no-data.dsm-no-data-xs::before {
    width: 11.33333rem;
    height: 8.66667rem
}

.dsm-no-data .dsm-no-data-text {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0
}

.dsm-empty::before,
.dsm-404::before,
.dsm-500::before,
.dsm-503::before {
    width: 17.5rem;
    height: 17.5rem
}

.dsm-empty.dsm-no-data-lg::before,
.dsm-404.dsm-no-data-lg::before,
.dsm-500.dsm-no-data-lg::before,
.dsm-503.dsm-no-data-lg::before {
    width: 26.25rem;
    height: 26.25rem
}

.dsm-empty.dsm-no-data-xs,
.dsm-404.dsm-no-data-xs,
.dsm-500.dsm-no-data-xs,
.dsm-503.dsm-no-data-xs {
    margin: 0
}

.dsm-empty.dsm-no-data-xs::before,
.dsm-404.dsm-no-data-xs::before,
.dsm-500.dsm-no-data-xs::before,
.dsm-503.dsm-no-data-xs::before {
    width: 12.5rem;
    height: 12.5rem
}

.dsm-empty .dsm-no-data-text,
.dsm-404 .dsm-no-data-text,
.dsm-500 .dsm-no-data-text,
.dsm-503 .dsm-no-data-text {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    font-weight: normal;
    margin-bottom: 0;
    color: rgba(9, 9, 9, 0.45)
}

.dsm-empty::before {
    background-image: url("../../sources/svg/empty/empty.svg")
}

.dsm-404::before {
    background-image: url("../../sources/svg/empty/404.svg")
}

.dsm-503::before {
    background-image: url("../../sources/svg/empty/503.svg")
}

.dsm-500::before {
    background-image: url("../../sources/svg/empty/500.svg")
}

.dsm-single-time-picker {
    border: 1px solid #dadada;
    background-color: #fff;
    display: inline-block;
    border-radius: .3125rem;
    padding-right: .25rem;
    padding-left: .25rem;
    transition: all .2s
}

.dsm-single-time-picker:hover {
    border-color: #2D5798;
    box-shadow: 0 0 0.1875rem 0 #2D5798
}

.dsm-single-time-picker.disabled {
    pointer-events: none;
    opacity: .5
}

.dsm-single-time-picker>div {
    display: flex;
    align-items: center
}

.dsm-single-time-picker>div .dsm-time-input-wrapper>.dsm-time-input {
    width: 1.375rem;
    text-align: center;
    border: none;
    background: transparent;
    padding: .5rem 0;
    line-height: 1.375rem
}

.dsm-single-time-picker>div .dsm-time-input-wrapper>.dsm-time-input:focus {
    outline: none
}

.dsm-single-time-picker>div>.tp-btn {
    border: none;
    background: transparent;
    font-size: .75rem;
    transform: scale(0.8);
    border-radius: .3125rem
}

.dsm-single-time-picker>div>.tp-btn:focus {
    outline: none
}

.dsm-single-time-picker>div>.tp-btn.active {
    background: #000;
    color: #fff
}

.dsm-was-invalid .dsm-single-time-picker {
    border-color: #F04E4E;
    box-shadow: 0 0 0 0.0625rem #F04E4E
}

.dsm-was-invalid .dsm-single-time-picker:hover {
    border-color: #F04E4E;
    box-shadow: 0 0 0 0.0625rem #F04E4E
}

.oned-space {
    display: flex
}

.oned-space-vertical {
    flex-direction: column
}

.oned-space-align-center {
    align-items: center
}

.oned-space-align-start {
    align-items: flex-start
}

.oned-space-align-end {
    align-items: flex-end
}

.oned-space-align-baseline {
    align-items: baseline
}

.oned-space-item:empty {
    display: none
}

.fxt-menu {
    margin-bottom: 0;
    padding-left: 0;
    color: #090909;
    line-height: 0;
    list-style: none;
    outline: none;
    overflow: hidden
}

.fxt-menu::after {
    display: block;
    clear: both;
    content: ""
}

.fxt-menu-custom-icon {
    position: relative;
    top: -2px;
    margin-right: 3px
}

.fxt-menu-submenu-popup {
    box-shadow: 0 3px 6px -4px #0000001f, 0 6px 16px #00000014, 0 9px 28px 8px #0000000d;
    transition: background 0.3s, width 0.2s;
    overflow: initial
}

.fxt-menu-hidden {
    display: none
}

.fxt-menu-item-group-title {
    padding: 8px 16px;
    color: #333;
    font-size: .875rem;
    line-height: 1.5;
    transition: all 0.3s
}

.fxt-menu-submenu,
.fxt-menu-submenu-inline {
    transition: border-color 0.3s ease-in-out, background 0.3s ease-in-out, padding 0.15s ease-in-out
}

.fxt-menu-submenu-selected {
    color: #2D5798
}

.fxt-menu-item:active,
.fxt-menu-submenu-title:active {
    background: rgba(49, 94, 251, 0.05)
}

.fxt-menu-submenu .fxt-menu-sub.fxt-menu-inline {
    cursor: initial;
    transition: all .3s ease-in-out
}

.fxt-menu-submenu .fxt-menu-sub.fxt-menu-inline::after {
    content: '';
    position: absolute;
    width: 0.125rem;
    background-color: #eee;
    top: 0.625rem;
    bottom: 0.625rem;
    left: 1.875rem
}

.fxt-menu-item>a {
    display: block;
    color: #333
}

.fxt-menu-item>a:hover {
    color: #2D5798
}

.fxt-menu-item>a::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    content: ''
}

.fxt-menu-item-divider {
    height: 1px;
    overflow: hidden;
    line-height: 0;
    background-color: hsv(0, 0, 94%)
}

.fxt-menu-item:hover,
.fxt-menu-item-active,
.fxt-menu:not(.fxt-menu-inline) .fxt-menu-submenu-open,
.fxt-menu-submenu-active,
.fxt-menu-submenu-title:hover {
    color: #2D5798
}

.fxt-menu-horizontal>.fxt-menu-item:hover,
.fxt-menu-horizontal>.fxt-menu-item-active,
.fxt-menu-horizontal>.fxt-menu-submenu .fxt-menu-submenu-title:hover {
    background-color: transparent
}

.fxt-menu-item-selected {
    color: #2D5798
}

.fxt-menu-item-selected>a,
.fxt-menu-item-selected>a:hover {
    color: #2D5798
}

.fxt-menu-inline,
.fxt-menu-vertical,
.fxt-menu-vertical-left {
    border-right: 1px solid hsv(0, 0, 94%)
}

.fxt-menu-vertical-right {
    border-left: 1px solid hsv(0, 0, 94%)
}

.fxt-menu .fxt-menu-vertical.fxt-menu-sub,
.fxt-menu .fxt-menu-vertical-left.fxt-menu-sub,
.fxt-menu .fxt-menu-vertical-right.fxt-menu-sub {
    min-width: 160px;
    padding: 0;
    border-right: 0;
    transform-origin: 0 0
}

.fxt-menu .fxt-menu-vertical.fxt-menu-sub .fxt-menu-item,
.fxt-menu .fxt-menu-vertical-left.fxt-menu-sub .fxt-menu-item,
.fxt-menu .fxt-menu-vertical-right.fxt-menu-sub .fxt-menu-item {
    left: 0;
    margin-left: 0;
    border-right: 0
}

.fxt-menu .fxt-menu-vertical.fxt-menu-sub .fxt-menu-item::after,
.fxt-menu .fxt-menu-vertical-left.fxt-menu-sub .fxt-menu-item::after,
.fxt-menu .fxt-menu-vertical-right.fxt-menu-sub .fxt-menu-item::after {
    border-right: 0
}

.fxt-menu .fxt-menu-vertical.fxt-menu-sub>.fxt-menu-item,
.fxt-menu .fxt-menu-vertical.fxt-menu-sub>.fxt-menu-submenu,
.fxt-menu .fxt-menu-vertical-left.fxt-menu-sub>.fxt-menu-item,
.fxt-menu .fxt-menu-vertical-left.fxt-menu-sub>.fxt-menu-submenu,
.fxt-menu .fxt-menu-vertical-right.fxt-menu-sub>.fxt-menu-item,
.fxt-menu .fxt-menu-vertical-right.fxt-menu-sub>.fxt-menu-submenu {
    transform-origin: 0 0
}

.fxt-menu .fxt-menu-horizontal.fxt-menu-sub {
    min-width: 114px
}

.fxt-menu-item,
.fxt-menu-submenu-title {
    position: relative;
    display: block;
    margin: 0;
    padding: 0 20px;
    white-space: nowrap;
    cursor: pointer
}

.fxt-menu>.fxt-menu-item-divider {
    height: 1px;
    margin: 1px 0;
    padding: 0;
    overflow: hidden;
    line-height: 0;
    background-color: hsv(0, 0, 94%)
}

.fxt-menu-submenu-popup {
    position: absolute;
    z-index: 1000;
    background: #fff;
    border-radius: 2px
}

.fxt-menu-submenu-popup .submenu-title-wrapper {
    padding-right: 20px
}

.fxt-menu-submenu-popup::before {
    position: absolute;
    top: -7px;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.0001;
    content: ' '
}

.fxt-menu-submenu>.fxt-menu {
    background-color: #fff;
    border-radius: 2px
}

.fxt-menu-submenu>.fxt-menu-submenu-title::after {
    transition: transform 0.3s ease-in-out
}

.fxt-menu-submenu-inline>.fxt-menu {
    position: relative
}

.fxt-menu-submenu-horizontal:not(.fxt-menu-overflowed-submenu)>.fxt-menu-submenu-title .fxt-menu-submenu-arrow,
.fxt-menu-submenu-vertical>.fxt-menu-submenu-title .fxt-menu-submenu-arrow,
.fxt-menu-submenu-vertical-left>.fxt-menu-submenu-title .fxt-menu-submenu-arrow,
.fxt-menu-submenu-vertical-right>.fxt-menu-submenu-title .fxt-menu-submenu-arrow,
.fxt-menu-submenu-inline>.fxt-menu-submenu-title .fxt-menu-submenu-arrow {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 10px
}

.fxt-menu-submenu-horizontal:not(.fxt-menu-overflowed-submenu)>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::before,
.fxt-menu-submenu-horizontal:not(.fxt-menu-overflowed-submenu)>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::after,
.fxt-menu-submenu-vertical>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::before,
.fxt-menu-submenu-vertical>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::after,
.fxt-menu-submenu-vertical-left>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::before,
.fxt-menu-submenu-vertical-left>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::after,
.fxt-menu-submenu-vertical-right>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::before,
.fxt-menu-submenu-vertical-right>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::after,
.fxt-menu-submenu-inline>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::before,
.fxt-menu-submenu-inline>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::after {
    position: absolute;
    width: 5px;
    height: 1px;
    background-color: currentColor;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    content: ''
}

.fxt-menu-submenu-horizontal:not(.fxt-menu-overflowed-submenu)>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::before,
.fxt-menu-submenu-vertical>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::before,
.fxt-menu-submenu-vertical-left>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::before,
.fxt-menu-submenu-vertical-right>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::before,
.fxt-menu-submenu-inline>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::before {
    transform: rotate(45deg) translateY(-2px)
}

.fxt-menu-submenu-horizontal:not(.fxt-menu-overflowed-submenu)>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::after,
.fxt-menu-submenu-vertical>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::after,
.fxt-menu-submenu-vertical-left>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::after,
.fxt-menu-submenu-vertical-right>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::after,
.fxt-menu-submenu-inline>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::after {
    transform: rotate(-45deg) translateY(2px)
}

.fxt-menu-submenu-horizontal:not(.fxt-menu-overflowed-submenu)>.fxt-menu-submenu-title:hover .fxt-menu-submenu-arrow::after,
.fxt-menu-submenu-horizontal:not(.fxt-menu-overflowed-submenu)>.fxt-menu-submenu-title:hover .fxt-menu-submenu-arrow::before,
.fxt-menu-submenu-vertical>.fxt-menu-submenu-title:hover .fxt-menu-submenu-arrow::after,
.fxt-menu-submenu-vertical>.fxt-menu-submenu-title:hover .fxt-menu-submenu-arrow::before,
.fxt-menu-submenu-vertical-left>.fxt-menu-submenu-title:hover .fxt-menu-submenu-arrow::after,
.fxt-menu-submenu-vertical-left>.fxt-menu-submenu-title:hover .fxt-menu-submenu-arrow::before,
.fxt-menu-submenu-vertical-right>.fxt-menu-submenu-title:hover .fxt-menu-submenu-arrow::after,
.fxt-menu-submenu-vertical-right>.fxt-menu-submenu-title:hover .fxt-menu-submenu-arrow::before,
.fxt-menu-submenu-inline>.fxt-menu-submenu-title:hover .fxt-menu-submenu-arrow::after,
.fxt-menu-submenu-inline>.fxt-menu-submenu-title:hover .fxt-menu-submenu-arrow::before {
    background: linear-gradient(to right, #2D5798, #2D5798)
}

.fxt-menu-submenu-inline>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::before {
    transform: rotate(-45deg) translateX(2px)
}

.fxt-menu-submenu-inline>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::after {
    transform: rotate(45deg) translateX(-2px)
}

.fxt-menu-submenu-open.fxt-menu-submenu-inline>.fxt-menu-submenu-title .fxt-menu-submenu-arrow {
    transform: translateY(-2px)
}

.fxt-menu-submenu-open.fxt-menu-submenu-inline>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::after {
    transform: rotate(-45deg) translateX(-2px)
}

.fxt-menu-submenu-open.fxt-menu-submenu-inline>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::before {
    transform: rotate(45deg) translateX(2px)
}

.fxt-menu-submenu-horizontal.fxt-menu-submenu-open>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::before {
    transform: rotate(-45deg) translateX(2px)
}

.fxt-menu-submenu-horizontal.fxt-menu-submenu-open>.fxt-menu-submenu-title .fxt-menu-submenu-arrow::after {
    transform: rotate(45deg) translateX(-2px)
}

.fxt-menu-vertical .fxt-menu-submenu-selected,
.fxt-menu-vertical-left .fxt-menu-submenu-selected,
.fxt-menu-vertical-right .fxt-menu-submenu-selected {
    color: #2D5798
}

.fxt-menu-vertical .fxt-menu-submenu-selected>a,
.fxt-menu-vertical-left .fxt-menu-submenu-selected>a,
.fxt-menu-vertical-right .fxt-menu-submenu-selected>a {
    color: #2D5798
}

.fxt-menu-horizontal {
    line-height: 46px;
    white-space: nowrap;
    border: 0;
    border-bottom: 1px solid hsv(0, 0, 94%);
    box-shadow: none
}

.fxt-menu-horizontal>.fxt-menu-item,
.fxt-menu-horizontal>.fxt-menu-submenu {
    position: relative;
    top: 1px;
    display: inline-block;
    vertical-align: bottom;
    border-bottom: 2px solid transparent
}

.fxt-menu-horizontal>.fxt-menu-item:hover::after,
.fxt-menu-horizontal>.fxt-menu-item-active::after,
.fxt-menu-horizontal>.fxt-menu-item-open::after,
.fxt-menu-horizontal>.fxt-menu-item-selected::after,
.fxt-menu-horizontal>.fxt-menu-submenu:hover::after,
.fxt-menu-horizontal>.fxt-menu-submenu-active::after,
.fxt-menu-horizontal>.fxt-menu-submenu-open::after,
.fxt-menu-horizontal>.fxt-menu-submenu-selected::after {
    position: absolute;
    right: 20px;
    bottom: 0;
    left: 20px;
    border-bottom: 2px solid #2D5798;
    transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    content: ""
}

.fxt-menu-horizontal>.fxt-menu-item>a {
    display: block;
    color: #333
}

.fxt-menu-horizontal>.fxt-menu-item>a:hover {
    color: #2D5798
}

.fxt-menu-horizontal>.fxt-menu-item>a::before {
    bottom: -2px
}

.fxt-menu-horizontal>.fxt-menu-item-selected>a {
    color: #2D5798
}

.fxt-menu-horizontal::after {
    display: block;
    clear: both;
    height: 0;
    content: '\20'
}

.fxt-menu-vertical .fxt-menu-item,
.fxt-menu-vertical-left .fxt-menu-item,
.fxt-menu-vertical-right .fxt-menu-item,
.fxt-menu-inline .fxt-menu-item {
    position: relative
}

.fxt-menu-vertical .fxt-menu-item,
.fxt-menu-vertical .fxt-menu-submenu-title,
.fxt-menu-vertical-left .fxt-menu-item,
.fxt-menu-vertical-left .fxt-menu-submenu-title,
.fxt-menu-vertical-right .fxt-menu-item,
.fxt-menu-vertical-right .fxt-menu-submenu-title,
.fxt-menu-inline .fxt-menu-item,
.fxt-menu-inline .fxt-menu-submenu-title {
    height: 2.5rem;
    padding: 0 16px;
    margin: 4px 0;
    overflow: hidden;
    font-size: .875rem;
    line-height: 2.5rem;
    text-overflow: ellipsis
}

.fxt-menu-vertical .fxt-menu-submenu,
.fxt-menu-vertical-left .fxt-menu-submenu,
.fxt-menu-vertical-right .fxt-menu-submenu,
.fxt-menu-inline .fxt-menu-submenu {
    padding-bottom: 0.01px
}

.fxt-menu-vertical>.fxt-menu-item,
.fxt-menu-vertical>.fxt-menu-submenu>.fxt-menu-submenu-title,
.fxt-menu-vertical-left>.fxt-menu-item,
.fxt-menu-vertical-left>.fxt-menu-submenu>.fxt-menu-submenu-title,
.fxt-menu-vertical-right>.fxt-menu-item,
.fxt-menu-vertical-right>.fxt-menu-submenu>.fxt-menu-submenu-title,
.fxt-menu-inline>.fxt-menu-item,
.fxt-menu-inline>.fxt-menu-submenu>.fxt-menu-submenu-title {
    height: 40px;
    line-height: 40px
}

.fxt-menu-vertical .fxt-menu-submenu-title {
    padding-right: 34px
}

.fxt-menu-horizontal .fxt-menu-submenu-horizontal:not(.fxt-menu-overflowed-submenu) .fxt-menu-submenu-title {
    padding-right: 34px
}

.fxt-menu-inline {
    width: 100%
}

.fxt-menu-inline .fxt-menu-selected::after {
    transform: scaleY(1);
    opacity: 1;
    transition: transform 0.15s ease-in-out, opacity 0.15s ease-in-out
}

.fxt-menu-inline .fxt-menu-submenu-title {
    padding-right: 34px
}

.fxt-menu-inline .fxt-menu-submenu-selected {
    background: rgba(49, 94, 251, 0.05)
}

.fxt-menu-inline>.fxt-menu-item-selected {
    background: rgba(49, 94, 251, 0.05)
}

.fxt-menu-inline.fxt-menu-sub>.fxt-menu-item-selected {
    background: none
}

.fxt-menu-sub.fxt-menu-inline .fxt-menu-item-selected::after {
    position: absolute;
    content: '';
    background-color: #2D5798;
    border-radius: 0;
    width: 0.125rem;
    left: 1.875rem;
    top: 0.625rem;
    bottom: 0.625rem;
    height: auto;
    z-index: 10
}

.fxt-menu-inline-collapsed {
    width: 80px
}

.fxt-menu-inline-collapsed>.fxt-menu-item,
.fxt-menu-inline-collapsed>.fxt-menu-item-group>.fxt-menu-item-group-list>.fxt-menu-item,
.fxt-menu-inline-collapsed>.fxt-menu-item-group>.fxt-menu-item-group-list>.fxt-menu-submenu>.fxt-menu-submenu-title,
.fxt-menu-inline-collapsed>.fxt-menu-submenu>.fxt-menu-submenu-title {
    left: 0;
    padding: 0 32px !important;
    text-overflow: clip
}

.fxt-menu-inline-collapsed>.fxt-menu-item .fxt-menu-submenu-arrow,
.fxt-menu-inline-collapsed>.fxt-menu-item-group>.fxt-menu-item-group-list>.fxt-menu-item .fxt-menu-submenu-arrow,
.fxt-menu-inline-collapsed>.fxt-menu-item-group>.fxt-menu-item-group-list>.fxt-menu-submenu>.fxt-menu-submenu-title .fxt-menu-submenu-arrow,
.fxt-menu-inline-collapsed>.fxt-menu-submenu>.fxt-menu-submenu-title .fxt-menu-submenu-arrow {
    display: none
}

.fxt-menu-inline-collapsed-tooltip {
    pointer-events: none
}

.fxt-menu-inline-collapsed-tooltip a {
    color: rgba(255, 255, 255, 0.85)
}

.fxt-menu-inline-collapsed .fxt-menu-item-group-title {
    padding-right: 4px;
    padding-left: 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.fxt-menu-item-group-list {
    margin: 0;
    padding: 0
}

.fxt-menu-item-group-list .fxt-menu-item,
.fxt-menu-item-group-list .fxt-menu-submenu-title {
    padding: 0 16px 0 28px
}

.fxt-menu .fxt-menu-root.fxt-menu-vertical,
.fxt-menu .fxt-menu-root.fxt-menu-vertical-left,
.fxt-menu .fxt-menu-root.fxt-menu-vertical-right,
.fxt-menu .fxt-menu-root.fxt-menu-inline {
    box-shadow: none
}

.fxt-menu .fxt-menu-sub.fxt-menu-inline {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none
}

.fxt-menu .fxt-menu-sub.fxt-menu-inline>.fxt-menu-item,
.fxt-menu .fxt-menu-sub.fxt-menu-inline>.fxt-menu-submenu>.fxt-menu-submenu-title {
    height: 2.25rem;
    line-height: 2.25rem;
    list-style-position: inside;
    list-style-type: disc
}

.fxt-menu .fxt-menu-sub.fxt-menu-inline .fxt-menu-item-group-title {
    padding-left: 32px
}

.fxt-menu-item-disabled,
.fxt-menu-submenu-disabled {
    color: rgba(0, 0, 0, 0.25) !important;
    background: none;
    cursor: not-allowed
}

.fxt-menu-item-disabled>a,
.fxt-menu-submenu-disabled>a {
    color: rgba(0, 0, 0, 0.25) !important;
    pointer-events: none
}

.fxt-menu-item-disabled>.fxt-menu-submenu-title,
.fxt-menu-submenu-disabled>.fxt-menu-submenu-title {
    color: rgba(0, 0, 0, 0.25) !important;
    cursor: not-allowed
}

.fxt-menu-item-disabled>.fxt-menu-submenu-title>.fxt-menu-submenu-arrow::before,
.fxt-menu-item-disabled>.fxt-menu-submenu-title>.fxt-menu-submenu-arrow::after,
.fxt-menu-submenu-disabled>.fxt-menu-submenu-title>.fxt-menu-submenu-arrow::before,
.fxt-menu-submenu-disabled>.fxt-menu-submenu-title>.fxt-menu-submenu-arrow::after {
    background: rgba(0, 0, 0, 0.25) !important
}

.fxt-menu-item-disabled::after,
.fxt-menu-submenu-disabled::after {
    border-color: transparent !important
}

.oned-rate {
    list-style: none;
    display: inline-block;
    padding: 0;
    margin: 0
}

.oned-rate-text {
    color: #000;
    font-size: .8125rem
}

.oned-rate .oned-rate-star {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-right: .25rem;
    width: 1rem;
    color: #ffb75d
}

.oned-rate .oned-rate-star .oned-rate-star-first {
    position: absolute;
    color: #ffb75d;
    width: 50%;
    overflow: hidden;
    opacity: 0
}

.oned-rate .oned-rate-star .oned-rate-star-first,
.oned-rate .oned-rate-star .oned-rate-star-second {
    transition: all .2s
}

.oned-rate .oned-rate-star .oned-rate-star-first>i,
.oned-rate .oned-rate-star .oned-rate-star-second>i {
    line-height: 1.53846154
}

.oned-rate .oned-rate-star .ds-star-fill {
    color: #ffb75d;
    font-size: 1rem
}

.oned-rate .oned-rate-star.oned-rate-star-zero .ds-star-s-line,
.oned-rate .oned-rate-star.oned-rate-star-zero .ds-star-s-fill {
    color: #ffb75d
}

.oned-rate .oned-rate-star.oned-rate-star-full .oned-rate-star-second {
    color: #ffb75d
}

.oned-rate .oned-rate-star.oned-rate-star-full .oned-rate-star-second .fx-star-fill {
    color: #ffb75d
}

.oned-rate .oned-rate-star.oned-rate-star-half .oned-rate-star-first {
    opacity: 1;
    color: #ffb75d
}

.oned-rate .oned-rate-star.oned-rate-star-half .oned-rate-star-first .fx-star-fill {
    color: #ffb75d
}

.oned-rate .oned-rate-star.oned-rate-star-half .ds-star-half-s-fill {
    color: #ffb75d
}

.oned-rate .oned-rate-star:focus,
.oned-rate .oned-rate-star>*:focus {
    outline: none
}

.oned-rate .oned-rate-star:hover .oned-rate-star-first,
.oned-rate .oned-rate-star:hover .oned-rate-star-second {
    transform: scale(1.1)
}

.oned-rate-disabled .oned-rate-star:hover .oned-rate-star-second {
    transform: scale(1)
}

.dsm-result {
    margin: 5rem;
    text-align: center
}

.dsm-result .dsm-result-img {
    display: block;
    width: 17rem;
    height: 13rem;
    content: "";
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='1009.54' height='789.93' viewBox='0 0 1009.54 789.93'%3E%3Cdefs%3E%3ClinearGradient x1='318.22' y1='488.45' x2='630.35' y2='488.45' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='gray' stop-opacity='0.25'/%3E%3Cstop offset='0.54' stop-color='gray' stop-opacity='0.12'/%3E%3Cstop offset='1' stop-color='gray' stop-opacity='0.1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ctitle%3Eempty%3C/title%3E%3Cellipse cx='354.13' cy='741.27' rx='176.1' ry='33.36' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M681.78,166.43c-64.72-2.24-126.36-23.14-185.22-46S379.4,72.25,316.23,60.14C275.6,52.35,229.13,51.24,196.4,73c-31.51,21-41.69,57.15-47.16,90.72-4.12,25.26-6.54,51.85,4.74,75.5,7.84,16.42,21.74,30.22,31.36,45.95,33.47,54.72,9.81,122.2-26.45,175.63-17,25.06-36.75,49-49.88,75.65S89.81,593.74,101.3,621c11.38,27,38.51,47.24,67.9,61.49,59.69,28.95,130,37.23,198.61,41.93,151.83,10.38,304.46,5.89,456.69,1.38,56.34-1.66,112.92-3.35,168.34-12.06,30.78-4.84,62.55-12.52,84.9-31.06,28.36-23.53,35.39-63.37,16.38-92.87-31.88-49.5-120-61.79-142.31-114.9-12.26-29.24.33-61.8,18.16-88.91,38.24-58.17,102.33-109.2,105.7-175.68,2.32-45.66-28.49-91.39-76.13-113-49.93-22.65-119.18-19.8-156,17.69C805.59,153.57,738.93,168.42,681.78,166.43Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M630.35,416.77l-30.63-20.65h0l15.45-23-80.9-6.45L505.2,389.15l-36.39-20.4-30.35,3.65-.36-8a225.78,225.78,0,0,0-2.51-24.9c.13-2.5.22-5.37.21-8.49,0-13.15-1.78-30.58-9.6-42.2L428,272.63,413.4,255.38a110.37,110.37,0,0,1,8-13.46c.5-.72,1-1.42,1.54-2.1,18.95-1.37,33.9-16.95,33.9-36,0-.88,0-1.76-.1-2.63,0-.35-.07-.71-.11-1.06,1.85,1,3.72,2,5.59,3,.35.5.75,1,1.19,1.59l0,0,.09.11.56.69.18.21c.2.24.41.47.62.71l.14.16c.53.59,1.09,1.19,1.69,1.78a1.8,1.8,0,0,1,.2.19l.75.7.21.19c.64.57,1.32,1.12,2,1.64l.22.16.86.59.28.18c.33.2.67.41,1,.6l.12.07c.39.21.79.41,1.19.6l.2.08q.51.22,1,.42l.31.11c.35.12.69.23,1.05.33l.22.06c.44.11.88.2,1.33.27h.05a10.88,10.88,0,0,0,1.28.13h.29a11,11,0,0,0,1.15,0h.25a11.85,11.85,0,0,0,1.43-.17,15.78,15.78,0,0,0,6.3-2.26,5.5,5.5,0,0,0,1.28-1.19c2-2.62-.2-5.49-.2-5.49h0c-.78-1.86-5.84-3.17-5.84-3.17s-16-6.68-16-12-4-32.92-45.29-39.23c0,0-26.86-1.51-34.41,12.87l-.16,1.68c-2.22,1.39-4.06,4.18-6.25,5a10.21,10.21,0,0,0-2.71,1l0-.19h0a2.58,2.58,0,0,0-.61.79,8,8,0,0,0-.83,3,11.3,11.3,0,0,1-1.31,3.63,8.07,8.07,0,0,1-.6.92h0l-.17.27a7.3,7.3,0,0,0,3.4-.55,16.93,16.93,0,0,1-1,4,3.32,3.32,0,0,0,3.08-1.84l0-.08.13-.18a8.44,8.44,0,0,0,.62-1.45l-.11.12c.2-.65.38-1.31.6-1.95a3.06,3.06,0,0,1,.49-1,2.42,2.42,0,0,1,2.07-.69l-.41,8.67h.18a11.83,11.83,0,0,1-.88,1.82c-1.42,2.3-4,3.87-4.95,6.39a9.4,9.4,0,0,0-.46,3.78c0,.75.09,1.51.15,2.26v-.06c.14,2,.18,3.9-.9,5.51-.74,1.1-1.93,1.93-2.34,3.18a3.1,3.1,0,0,0-.15,1.08,12.13,12.13,0,0,0,.68,3.21.14.14,0,0,0,0-.06,4.88,4.88,0,0,1,.17,2.36c-.45,2-2.88,3.67-2.76,5.58a2.15,2.15,0,0,0,.11.74,4.05,4.05,0,0,0,2.26,2,8.8,8.8,0,0,0,5.08,1.12,6.68,6.68,0,0,0,1.9-.65c-.7,1.61-1.42,3.2-2.15,4.71-.11.24-.23.48-.35.72,0,0-6.18-4.13-9.69,4.29a18.68,18.68,0,0,0-2.17,5.64,13.42,13.42,0,0,1-.74,2.32,14.93,14.93,0,0,1-6.68,6c-7.16,3.28-36.08,39.35-36.59,48.69a54.49,54.49,0,0,1-1.84,10.78,64.15,64.15,0,0,0-1.72,25.49,48.77,48.77,0,0,0,1.77,8.13c3.07,9.33,5.12,26.74,5.12,26.74l3.32,30.22a86,86,0,0,0,.54,12.49c-3.39,3.87-17,20-11.8,24.39,4,3.46,11,2.89,14.93,2.18-3.31,8.19-8.52,22.43-9.21,32.21-1,14.47,1.71,33.64,6,41s18.59,26.24,18.59,26.24-.67,25.9,4.44,35.31,7.17,28.93,7.17,28.93,4.77,16.48,2.38,22.54,4.43,11.1-2.73,15.13-16.32,94.86-16.32,94.86-3.69,59.53,0,62.56a3.75,3.75,0,0,0,.63.37v20s-2.56,4.2,7.85,5.05c7.13.57,27.34,1.86,39.33,2.61l9.29.58s22,4.38,31.72,0,26.95-4.28,24.39-15.85a32.92,32.92,0,0,0-1.36-4.63c-2.81-7.18-7.58-8-16.37-10-.51-.11-1-.21-1.45-.29-9.26-1.61-12.3,2.7-17.49-2.91-4.51-4.85-18.87-10.28-23.76-12,.12-.36.27-.71.39-1.08a7.32,7.32,0,0,1-3.71-1.81l13.25.84,7.89.49s18.7,3.73,27,0,22.9-3.63,20.72-13.46a28.21,28.21,0,0,0-1.15-3.94c-2.39-6.1-6.45-6.77-13.92-8.46-.43-.09-.83-.18-1.23-.25-7.87-1.37-10.45,2.29-14.86-2.47-3.78-4.06-15.71-8.61-20-10.16,0-2.22-3-5.38-4.89-8.55-2.22-3.7,1.88-16.65,1.88-16.65L411,658.74a10.38,10.38,0,0,1,2.8-.8s10.58-10.1,8.19-20.86a69.13,69.13,0,0,1-.76-9.83c3.48-3.23,8.27-8,9.63-10.94,2.22-4.79,0-28,0-28V499.56l17.7,1.79L464.62,503l4.89.5,16.06,1.62,36.91,3.73,33.26-6.3,14.39-2.72,29.59-5.6V421.83ZM386.74,176.86l-2.06-.22C385.36,176.67,386.08,176.8,386.74,176.86Z' transform='translate(-95.23 -55.03)' fill='url(%2307c62293-c0d3-4921-8e06-4e39241449cd)'/%3E%3Cpath d='M558.56,463.78c-10,14.31-45.95,6.73-45.95,6.73l-27.86-26.07L481,440.91l6.29-13.36s2,.55,5.43,1.53C510.73,434.31,567,451.75,558.56,463.78Z' transform='translate(-95.23 -55.03)' fill='%23efb7b9'/%3E%3Cpath d='M492.7,429.08c-1.23,4.28-4.6,10.69-7.95,15.36L481,440.91l6.29-13.36S489.31,428.1,492.7,429.08Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M397.15,278.42s-25.68,11.39-24.42,39.36a461.14,461.14,0,0,0,5.88,53.76s-5.25,42.09,16.61,52.94,42.09,19.77,42.09,19.77,34.2,3.68,38.45,5.2,17.53-21.72,15.08-25.34S457,412.9,453,406.86s-13.25-9.77-13.25-9.77-9.55-5.78-10.2-11,1.87-9.11,2.51-11.4,2.26-24.4,2.26-24.4S445.1,271.59,397.15,278.42Z' transform='translate(-95.23 -55.03)' fill='%23dce6f2'/%3E%3Cpath d='M414.1,370.39s-35.23,5.9-31.82,18.23C382.28,388.62,395.07,375.31,414.1,370.39Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M414.37,375.38S395,391.19,398.79,392,414.37,375.38,414.37,375.38Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M423.68,380.89s-5.19,10.63-2,9.91S423.68,380.89,423.68,380.89Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M494,430.21l-2.14-.61c.61-2,.78-3.62.28-4.37-2.45-3.62-33.82-11.2-37.81-17.25s-13.25-9.77-13.25-9.77-9.55-5.78-10.2-11,1.87-9.11,2.51-11.4,2.26-24.41,2.26-24.41,10.75-78.69-37.2-71.86c0,0-25.68,11.4-24.43,39.37a459.85,459.85,0,0,0,5.89,53.76s-5.25,42.09,16.61,52.94,42.09,19.77,42.09,19.77,34.19,3.67,38.45,5.2c1.61.58,4.52-2.41,7.37-6.52l1.62,1.51,27.86,26.06s35.95,7.59,45.95-6.72C568.31,452.87,512.05,435.43,494,430.21Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M382.37,173.44a8.5,8.5,0,0,0-2.77,1.07c-1,.83-1,2.25-1.25,3.49a11.48,11.48,0,0,1-2,4.78,7.19,7.19,0,0,0,3.33-.55,17.14,17.14,0,0,1-1,4,3.24,3.24,0,0,0,3-1.83,19.26,19.26,0,0,0,1.25-3.51,2.89,2.89,0,0,1,.48-1c.92-1.09,2.63-.6,4.05-.46a6.65,6.65,0,0,0,6.08-2.92c1.51-2.29,1.6-8.15-2-8.77C387.78,167.12,385.44,172.3,382.37,173.44Z' transform='translate(-95.23 -55.03)' fill='%23965d7b'/%3E%3Cg opacity='0.1'%3E%3Cpath d='M379.5,175.74c.09-.49.15-1,.26-1.49h0c-.95.83-1,2.24-1.25,3.49a11,11,0,0,1-.59,2.11A11.46,11.46,0,0,0,379.5,175.74Z' transform='translate(-95.23 -55.03)'/%3E%3Cpath d='M379.82,184a16.63,16.63,0,0,0,1-4,7.16,7.16,0,0,1-3.17.55,11.57,11.57,0,0,1-1.15,2,7.12,7.12,0,0,0,3.32-.54,16.63,16.63,0,0,1-1,4,3.25,3.25,0,0,0,3-1.83,7.46,7.46,0,0,0,.6-1.43A3,3,0,0,1,379.82,184Z' transform='translate(-95.23 -55.03)'/%3E%3Cpath d='M388.6,177.2c-1.42-.14-3.14-.63-4.06.46a3.09,3.09,0,0,0-.48,1c-.09.26-.17.53-.24.8.95-.75,2.49-.35,3.78-.22a6.68,6.68,0,0,0,6.08-2.92,5.54,5.54,0,0,0,.67-1.57A6.66,6.66,0,0,1,388.6,177.2Z' transform='translate(-95.23 -55.03)'/%3E%3C/g%3E%3Cpolygon points='317.24 201 332.49 219.34 330.5 237.85 312.07 209 317.24 201' fill='%23dce6f2'/%3E%3Cpolygon points='332.48 219.34 330.61 236.75 330.49 237.85 313.86 211.81 312.07 209 312.59 208.19 317.23 201 318.26 202.24 332.48 219.34' opacity='0.1'/%3E%3Cpath d='M435.63,231.2c-5.16,1.48-10.09,6.56-14.38,12.73a108.65,108.65,0,0,0-7.76,13.34c-1.41,2.82-2.65,5.53-3.68,7.89l-.72,1.68c-1.74,4.11-2.71,6.86-2.71,6.86S366.88,244,373.13,242c2.1-.67,4.86-5.17,7.59-10.84l.34-.72c1.73-3.64,3.43-7.7,4.94-11.52,3.09-7.85,5.38-14.67,5.38-14.67S451.38,226.7,435.63,231.2Z' transform='translate(-95.23 -55.03)' fill='%23efb7b9'/%3E%3Cpath d='M459.26,202.58s9.12,16.5,21.37,14.25,7.21-8.86,7.21-8.86Z' transform='translate(-95.23 -55.03)' fill='%23444053'/%3E%3Cpath d='M441.59,773.73c-8.08,3.69-26.35,0-26.35,0l-7.7-.48c-10-.64-26.74-1.72-32.66-2.2-8.64-.71-6.52-4.25-6.52-4.25V745.41l41.92-10.62s16.57,5.67,21.11,10.62c4.31,4.72,6.83,1.09,14.52,2.45.38.07.78.15,1.2.25,7.3,1.67,11.26,2.33,13.6,8.38a28.1,28.1,0,0,1,1.13,3.9C464,770.13,449.66,770.06,441.59,773.73Z' transform='translate(-95.23 -55.03)' fill='%23a36468'/%3E%3Cpath d='M460.71,756.49a31.34,31.34,0,0,1-4.72,2.42c-5.5,2.51-10.73,5.57-16.29,7.94s-11.55,4.06-17.57,3.61c-3.15-.23-6.37-1-9.38-.1a21.66,21.66,0,0,0-5.21,2.89c-10-.64-26.74-1.72-32.66-2.2-8.64-.71-6.52-4.25-6.52-4.25v-2.5c.31,0,.66-.09,1.06-.12a18.88,18.88,0,0,1,6.1.91c4.34,1.18,8.66,2.34,13,3.5a10.27,10.27,0,0,1,5-6.38,15.94,15.94,0,0,1,8.06-1.85c6.73.09,13.1,3.28,19.82,3.6a10.92,10.92,0,0,0,5.49-.92c.92-.46,1.73-1.13,2.63-1.64a19.2,19.2,0,0,1,4.53-1.53A99.76,99.76,0,0,0,447,755.69c1.2-.47,2.6-1.32,2.44-2.6-.21-1.7-2.88-1.9-3.58-3.46a2,2,0,0,1,.08-1.77c.38.07.78.15,1.2.25C454.41,749.78,458.37,750.44,460.71,756.49Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M433.05,820.53c-9.5,4.34-31,0-31,0L393,820c-11.72-.75-31.46-2-38.43-2.59-10.17-.84-7.67-5-7.67-5V787.2l49.33-12.5s19.5,6.67,24.84,12.5c5.07,5.55,8,1.28,17.09,2.88.45.08.92.18,1.41.29,8.59,2,13.25,2.75,16,9.87a32.1,32.1,0,0,1,1.33,4.59C459.38,816.29,442.55,816.2,433.05,820.53Z' transform='translate(-95.23 -55.03)' fill='%23a36468'/%3E%3Cpath d='M455.55,800.24a37.23,37.23,0,0,1-5.55,2.85c-6.47,2.95-12.63,6.55-19.17,9.34s-13.59,4.77-20.68,4.25c-3.7-.27-7.49-1.2-11-.12A25.5,25.5,0,0,0,393,820c-11.72-.75-31.46-2-38.43-2.59-10.17-.84-7.67-5-7.67-5v-2.94a12.5,12.5,0,0,1,1.25-.14,21.94,21.94,0,0,1,7.18,1.07l15.29,4.12a12.1,12.1,0,0,1,5.93-7.51,18.66,18.66,0,0,1,9.49-2.18c7.92.11,15.41,3.86,23.32,4.24A12.91,12.91,0,0,0,415.8,808c1.09-.55,2-1.34,3.1-1.93a21.75,21.75,0,0,1,5.33-1.8,119.69,119.69,0,0,0,15.16-4.92c1.41-.56,3.06-1.56,2.87-3.06-.25-2-3.39-2.24-4.22-4.08a2.41,2.41,0,0,1,.1-2.08c.45.08.92.18,1.41.29C448.14,792.34,452.8,793.12,455.55,800.24Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M411.55,647.54l-2.67,62.83s-4,12.83-1.83,16.5,5.83,7.33,4.5,9.5S394.22,762,389.05,753s-10.27-48-10.27-48l4.77-48.17Z' transform='translate(-95.23 -55.03)' fill='%23444053'/%3E%3Cpath d='M423.13,491l7.42,9.92V587.2s2.17,23,0,27.75-13.17,14.25-13.17,14.25l-9.25-47.5,2-50.25Z' transform='translate(-95.23 -55.03)' fill='%23444053'/%3E%3Cpath d='M411.55,647.54l-2.67,62.83s-4,12.83-1.83,16.5,5.83,7.33,4.5,9.5S394.22,762,389.05,753s-10.27-48-10.27-48l4.77-48.17Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M423.13,491l7.42,9.92V587.2s2.17,23,0,27.75-13.17,14.25-13.17,14.25l-9.25-47.5,2-50.25Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M430.55,454.2v46.67l-8.33,36.33s-2.67,87.67-.34,98.33-8,20.67-8,20.67-6,.67-6,5.33-10,18-10,18l.33,26s4.34,48.67-2.33,58,2.33,10.67,2.33,10.67c-8.33,27.33-48.33,21-51.94,18s0-62,0-62,8.94-90,15.94-94,.34-9,2.67-15-2.33-22.33-2.33-22.33-2-19.34-7-28.67-4.34-35-4.34-35-14-18.67-18.16-26-6.84-26.33-5.84-40.67c.68-9.69,5.77-23.8,9-31.92,1.55-3.89,2.67-6.41,2.67-6.41l.95.25,54.62,14.3Z' transform='translate(-95.23 -55.03)' fill='%23444053'/%3E%3Cpath d='M435.63,231.2c-5.16,1.48-10.09,6.56-14.38,12.73l-1.12,0a35.72,35.72,0,0,1-31-17.93,35.18,35.18,0,0,1-3.14-7.15c3.09-7.85,5.38-14.67,5.38-14.67S451.38,226.7,435.63,231.2Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M455.88,206.2A35.75,35.75,0,1,1,389,188.68a34.93,34.93,0,0,1,3.78-5.46A36.18,36.18,0,0,1,401,176a35.75,35.75,0,0,1,54.83,27.58C455.85,204.46,455.88,205.33,455.88,206.2Z' transform='translate(-95.23 -55.03)' fill='%23efb7b9'/%3E%3Cpath d='M425.84,291.78l-.12,1.1-16.63-26c-1.74,4.11-2.71,6.86-2.71,6.86S366.88,244,373.13,242c2.1-.67,4.86-5.17,7.59-10.84l.34-.72c2.9,8.64,19.75,25.91,26.76,32.83.81.8,1.48,1.46,2,1.94l1.07,1,.56.56C414,269.4,424.76,281,425.84,291.78Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M438.27,380l-1.82,58.57L436.13,449s-21.56-2-41.68-4.2c-16.2-1.77-31.47-3.68-33.82-4.8-3-1.41-9.43-2.5-14.5-3.19-3.92-.53-7-.81-7-.81s-1.15.34-2.92.66c-3.86.7-10.64,1.27-14.59-2.16-5.05-4.39,8.22-20.34,11.53-24.17l.73-.83-1.25-11.55L329.38,368s-2-17.25-5-26.5a48.88,48.88,0,0,1-1.73-8.05,64.48,64.48,0,0,1,1.68-25.26,55.08,55.08,0,0,0,1.8-10.69c.5-9.25,28.75-45,35.75-48.25a14.84,14.84,0,0,0,7.16-7.14,13.64,13.64,0,0,0,1.09-3.11c3-13,10.59-7.84,10.59-7.84,1.83,10.17,30.16,37.09,30.16,37.09l.56.56c2.81,2.88,15.33,16.4,14.44,27.94a33.87,33.87,0,0,0,1.89,12.64,213.75,213.75,0,0,1,9.85,56Z' transform='translate(-95.23 -55.03)' fill='%23dce6f2'/%3E%3Cpath d='M398.13,310.45s-7,17-12.25,19.75S400.63,336,398.13,310.45Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M403.38,342.2s-16,2-16,5S403.38,342.2,403.38,342.2Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M420.13,361.7s-23.25,49.5-29.75,51S420.13,361.7,420.13,361.7Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M410.44,270.76l-19.23,8.36L368,244.06a13.64,13.64,0,0,0,1.09-3.11c3-13,10.59-7.84,10.59-7.84,1.83,10.17,30.16,37.09,30.16,37.09Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M411.44,268.76l-19.23,8.36L369,242.06a13.64,13.64,0,0,0,1.09-3.11c3-13,10.59-7.84,10.59-7.84,1.83,10.17,30.16,37.09,30.16,37.09Z' transform='translate(-95.23 -55.03)' fill='%23dce6f2'/%3E%3Cpath d='M436.13,449s-21.56-2-41.68-4.2l36.1,9.45v11c-1.58,1.43-2.95,2.17-3.84,1.79-4.16-1.75-38.11-7.25-38.11-7.25s-19.72-10-41-22a16.43,16.43,0,0,1-1.5-.94,23.64,23.64,0,0,1-6.3-6.31c-3.93-5.69-5.85-13-6.68-20.17a87.22,87.22,0,0,1-.52-12.38A101.51,101.51,0,0,1,333.88,384a460.08,460.08,0,0,1-3-54c.25-28,26.5-38,26.5-38,48.25-4.25,33.29,73.75,33.29,73.75s-2.79,22-3.55,24.25-3.49,6-3.12,11.25,9.59,11.53,9.59,11.53,9,4.22,12.71,10.47c2.7,4.61,20.24,10.86,30.15,15.32Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M452.29,184a11.32,11.32,0,0,1-1,4.78,29.55,29.55,0,0,1-1.78,3.56,16.4,16.4,0,0,1-4.38,5.44c-2.31,1.65-5.23,2.11-8,2.78s-5.65,1.74-7.23,4.1a14.34,14.34,0,0,0-1.69,4.9,10.54,10.54,0,0,1-2,4.74,3.93,3.93,0,0,1-4.68,1.12,4.73,4.73,0,0,1-1.81-2.33c-1.14-2.57-1.43-5.42-1.89-8.19s-1.11-5.62-2.81-7.85-4.71-3.7-7.38-2.83a7.11,7.11,0,0,0-4,3.88,22.24,22.24,0,0,0-1.51,5.52q-1.86,10.18-4.39,20.24a1.86,1.86,0,0,1-.33.76,1.44,1.44,0,0,1-1,.42c-2.24.3-4.39-1.27-6.65-1.1a3.82,3.82,0,0,0-.69.11,35.73,35.73,0,0,1,3.61-40.8l.18-.05a10.78,10.78,0,0,0,4-2.52,42.22,42.22,0,0,0,4-4.63l.8-1a45.61,45.61,0,0,1,7.8-7.41,8,8,0,0,1,2.66-1.44,7.88,7.88,0,0,1,2.52-.08,63.57,63.57,0,0,0,10.41.39,66.79,66.79,0,0,1,7.31-.74c6.33.18,11.73,4.65,15.73,9.55C450.24,177.83,452.16,180.72,452.29,184Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M384.33,189.63c-1.39,2.28-3.9,3.83-4.84,6.33-1.38,3.63.95,8.15-1.19,11.39-.71,1.09-1.88,1.9-2.28,3.15-.68,2.11,1.18,4.36.7,6.53s-3.34,4-2.58,6.12a4,4,0,0,0,2.2,2,8.6,8.6,0,0,0,5,1.11c2.73-.45,4.76-3.13,7.53-3.33,2.25-.16,4.4,1.4,6.64,1.11a1.5,1.5,0,0,0,1-.43,1.73,1.73,0,0,0,.33-.76q2.52-10.05,4.4-20.24a21.8,21.8,0,0,1,1.5-5.52,7.17,7.17,0,0,1,4-3.88c2.67-.86,5.67.6,7.38,2.83s2.36,5.08,2.82,7.85.75,5.62,1.88,8.19a4.78,4.78,0,0,0,1.82,2.34c1.5.87,3.52.18,4.67-1.12a10.43,10.43,0,0,0,2-4.75,14.28,14.28,0,0,1,1.69-4.89c1.58-2.36,4.47-3.43,7.23-4.1s5.67-1.14,8-2.79a16.46,16.46,0,0,0,4.38-5.43c1.48-2.58,2.86-5.38,2.74-8.35-.13-3.24-2.05-6.13-4.1-8.65-4-4.9-9.41-9.37-15.74-9.54a62.2,62.2,0,0,0-7.31.74,62.57,62.57,0,0,1-10.41-.4,8.18,8.18,0,0,0-2.52.09,7.54,7.54,0,0,0-2.65,1.44,45.63,45.63,0,0,0-7.81,7.4,57.31,57.31,0,0,1-4.82,5.6,10.85,10.85,0,0,1-4,2.53c-1,.28-2,.08-2.95.39C386.09,183.52,385.7,187.37,384.33,189.63Z' transform='translate(-95.23 -55.03)' fill='%23965d7b'/%3E%3Cpath d='M480.63,216.82c-8,1.47-14.63-5-18.3-9.72a39.22,39.22,0,0,1-3.07-4.52l27.46,5.18,1.11.21S492.88,214.58,480.63,216.82Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cg opacity='0.1'%3E%3Cpath d='M376.72,214.17a8.33,8.33,0,0,0-.58-3.84c0,.1-.09.2-.12.3-.43,1.34.15,2.73.52,4.12A3,3,0,0,0,376.72,214.17Z' transform='translate(-95.23 -55.03)'/%3E%3Cpath d='M379.1,197.8a22.22,22.22,0,0,0,.08,4.15A22.28,22.28,0,0,0,379.1,197.8Z' transform='translate(-95.23 -55.03)'/%3E%3Cpath d='M448.55,188.45a16.4,16.4,0,0,1-4.38,5.44c-2.31,1.65-5.22,2.11-8,2.78s-5.65,1.74-7.23,4.1a14.41,14.41,0,0,0-1.69,4.9,10.47,10.47,0,0,1-2,4.75c-1.15,1.3-3.17,2-4.67,1.12a4.78,4.78,0,0,1-1.82-2.34c-1.13-2.57-1.43-5.41-1.88-8.19s-1.12-5.62-2.82-7.85-4.71-3.7-7.38-2.83a7.14,7.14,0,0,0-4,3.88,21.8,21.8,0,0,0-1.5,5.52q-1.87,10.19-4.4,20.24a1.73,1.73,0,0,1-.33.76,1.5,1.5,0,0,1-1,.43c-2.24.29-4.39-1.27-6.64-1.11-2.77.2-4.8,2.88-7.53,3.32a8.45,8.45,0,0,1-5-1.11,5.35,5.35,0,0,1-1.83-1.3,2.7,2.7,0,0,0-.37,2.33,3.9,3.9,0,0,0,2.2,2,8.45,8.45,0,0,0,5,1.11c2.73-.44,4.76-3.12,7.53-3.32,2.25-.16,4.4,1.4,6.64,1.11a1.5,1.5,0,0,0,1-.43,1.73,1.73,0,0,0,.33-.76q2.52-10,4.4-20.24a21.8,21.8,0,0,1,1.5-5.52,7.14,7.14,0,0,1,4-3.88c2.67-.87,5.67.6,7.38,2.83s2.36,5.08,2.82,7.85.75,5.62,1.88,8.19a4.78,4.78,0,0,0,1.82,2.34c1.5.87,3.52.18,4.67-1.12a10.47,10.47,0,0,0,2-4.75,14.41,14.41,0,0,1,1.69-4.9c1.58-2.36,4.47-3.42,7.23-4.1s5.67-1.13,8-2.78a16.4,16.4,0,0,0,4.38-5.44c1.48-2.57,2.86-5.37,2.74-8.34a10.74,10.74,0,0,0-.12-1.14A19.65,19.65,0,0,1,448.55,188.45Z' transform='translate(-95.23 -55.03)'/%3E%3C/g%3E%3Cpath d='M451.33,188.75a35.33,35.33,0,0,1,4.45,14.85c-8.91-5-17.29-10.49-21.52-12.4-7.37-3.33-34.93-2.83-45.29-2.52a34.93,34.93,0,0,1,3.78-5.46A36.18,36.18,0,0,1,401,176a35.77,35.77,0,0,1,50.38,12.73Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M483.13,212.58c-4.81,1.48-12.66-1.38-20.8-5.48a39.22,39.22,0,0,1-3.07-4.52l27.46,5.18C488.54,209,489,210.77,483.13,212.58Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M422.26,154.08s-26.25-1.5-33.63,12.75l-1.19,12.63-2-.22-.4,8.59s40.12-1.75,49.25,2.37,37.5,24.88,48.87,21.38-1-6.75-1-6.75S466.51,198.2,466.51,193,462.63,160.33,422.26,154.08Z' transform='translate(-95.23 -55.03)' fill='%23444053'/%3E%3Cpath d='M371.63,622.28s16.75,16.25,24,15C395.63,637.28,375.13,635.53,371.63,622.28Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M368.13,629.81s1.5,8.36,5.5,7.54S368.13,629.81,368.13,629.81Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M394.38,769.53s-23.78,18.5-19.77,19S394.38,769.53,394.38,769.53Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpolygon points='330.96 347.33 407.96 334.8 407.96 407.7 334.8 403.87 330.96 347.33' fill='%232D5798'/%3E%3Cpolygon points='330.96 347.33 407.96 334.8 407.96 407.7 334.8 403.87 330.96 347.33' opacity='0.05'/%3E%3Cpolygon points='407.96 334.8 500.3 341.71 495.19 405.15 407.96 407.7 407.96 334.8' fill='%232D5798'/%3E%3Cpolygon points='407.96 334.8 500.3 341.71 495.19 405.15 407.96 407.7 407.96 334.8' opacity='0.1'/%3E%3Cpolygon points='436.35 312.55 407.96 334.8 500.3 341.71 515.39 318.94 436.35 312.55' fill='%232D5798'/%3E%3Cpolygon points='303.08 323.03 372.4 314.59 407.96 334.8 330.96 347.33 303.08 323.03' fill='%232D5798'/%3E%3Cpolygon points='424.84 353.73 424.84 453.4 388.77 449.7 373.08 448.1 368.3 447.6 352.62 445.99 330.96 443.77 330.96 347.33 407.95 352.57 424.84 353.73' fill='%232D5798'/%3E%3Cpolygon points='500.3 341.71 500.3 438.91 471.39 444.46 457.33 447.16 424.84 453.4 424.84 353.73 500.3 341.71' fill='%232D5798'/%3E%3Cpolygon points='500.3 341.71 500.3 438.91 471.39 444.46 457.33 447.16 424.84 453.4 424.84 353.73 500.3 341.71' opacity='0.05'/%3E%3Cpolygon points='303.08 368.31 330.96 347.33 424.84 353.73 411.02 377.01 303.08 368.31' fill='%232D5798'/%3E%3Cpolygon points='303.08 368.31 330.96 347.33 424.84 353.73 411.02 377.01 303.08 368.31' fill='%23fff' opacity='0.1'/%3E%3Cpolygon points='500.3 341.71 424.84 353.73 449.4 375.73 530.23 362.17 500.3 341.71' fill='%232D5798'/%3E%3Cpolygon points='500.3 341.71 424.84 353.73 449.4 375.73 530.23 362.17 500.3 341.71' fill='%23fff' opacity='0.1'/%3E%3Cpolygon points='471.39 444.46 457.33 447.16 457.33 426.39 470.5 423.07 471.39 444.46' fill='%23fff' opacity='0.1'/%3E%3Cpolygon points='388.77 435.96 388.77 449.7 373.08 448.1 373.08 435.96 388.77 435.96' fill='%23fff' opacity='0.1'/%3E%3Cpolygon points='368.3 440.29 368.3 447.6 352.62 445.99 352.62 440.29 368.3 440.29' fill='%23fff' opacity='0.1'/%3E%3Cpath d='M510.63,483.7c-10.75,13.75-46.25,4.25-46.25,4.25L438,460.43l-3.58-3.73,7-13s2,.66,5.34,1.82C464.44,451.7,519.68,472.13,510.63,483.7Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M509.63,481.7c-10.75,13.75-46.25,4.25-46.25,4.25L437,458.43l-3.58-3.73,7-13s2,.66,5.34,1.82C463.44,449.7,518.68,470.13,509.63,481.7Z' transform='translate(-95.23 -55.03)' fill='%23efb7b9'/%3E%3Cpath d='M445.72,443.52c-1.46,4.2-5.17,10.42-8.76,14.91l-3.58-3.73,7-13S442.39,442.36,445.72,443.52Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M358.38,288s-26.25,10-26.5,38a460.08,460.08,0,0,0,3,54s-7.5,41.75,13.75,53.75,41,22,41,22,33.95,5.5,38.12,7.25,18.66-20.75,16.41-24.5-33.16-13-36.83-19.25-12.71-10.46-12.71-10.46-9.22-6.29-9.59-11.54,2.35-9,3.12-11.25,3.56-24.25,3.56-24.25S406.63,283.7,358.38,288Z' transform='translate(-95.23 -55.03)' fill='%23dce6f2'/%3E%3Cpath d='M370.38,380.7s-35.5,4-32.75,16.5C337.63,397.2,351.12,384.59,370.38,380.7Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M370.38,385.7s-20.15,14.75-16.45,15.75S370.38,385.7,370.38,385.7Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M379.38,391.7s-5.75,10.34-2.5,9.8S379.38,391.7,379.38,391.7Z' transform='translate(-95.23 -55.03)' opacity='0.1'/%3E%3Cpath d='M749,167.42s-38-2.29-33.56,24.37c0,0-.89,4.71,3.38,6.85,0,0,.07-2,3.9-1.31a17.51,17.51,0,0,0,4.13.2,8.57,8.57,0,0,0,5.06-2.09h0s10.69-4.41,14.85-21.89c0,0,3.08-3.82,3-4.8l-6.42,2.75s2.19,4.63.46,8.48c0,0-.2-8.31-1.44-8.12-.25,0-3.33,1.61-3.33,1.61s3.77,8.06.92,13.93c0,0,1.08-9.94-2.1-13.35l-4.52,2.64s4.41,8.33,1.42,15.13c0,0,.77-10.43-2.37-14.49l-4.1,3.19s4.15,8.22,1.62,13.86c0,0-.33-12.14-2.51-13.06,0,0-3.58,3.16-4.12,4.46,0,0,2.83,6,1.07,9.11,0,0-1.08-8.09-2-8.13,0,0-3.57,5.36-3.94,9a19.46,19.46,0,0,1,3.07-9.54,10.71,10.71,0,0,0-5.46,2.83s.55-3.79,6.34-4.12c0,0,3-4.07,3.74-4.32,0,0-5.76-.48-9.25,1.07,0,0,3.07-3.57,10.31-2l4-3.3s-7.58-1-10.8.11c0,0,3.7-3.16,11.89-.86l4.4-2.63s-6.46-1.4-10.31-.89c0,0,4.06-2.19,11.6.18l3.15-1.41s-4.74-.93-6.12-1.08-1.46-.53-1.46-.53a16.36,16.36,0,0,1,8.89,1S749.14,167.84,749,167.42Z' transform='translate(-95.23 -55.03)' fill='%232D5798'/%3E%3Cpath d='M864.46,300.76s-38-2.29-33.56,24.37c0,0-.89,4.71,3.38,6.85,0,0,.07-2,3.91-1.31a17.51,17.51,0,0,0,4.13.2,8.56,8.56,0,0,0,5-2.08h0s10.7-4.42,14.86-21.9c0,0,3.07-3.81,2.95-4.79l-6.42,2.74s2.19,4.63.47,8.48c0,0-.21-8.31-1.44-8.12-.25,0-3.34,1.61-3.34,1.61s3.78,8.07.93,13.93c0,0,1.08-9.94-2.11-13.35L848.75,310s4.41,8.33,1.42,15.13c0,0,.77-10.43-2.37-14.49l-4.09,3.2s4.14,8.21,1.62,13.85c0,0-.33-12.14-2.51-13.06,0,0-3.58,3.16-4.13,4.46,0,0,2.84,6,1.08,9.11,0,0-1.08-8.09-2-8.13,0,0-3.57,5.36-3.94,9a19.52,19.52,0,0,1,3.08-9.54,10.76,10.76,0,0,0-5.47,2.83s.56-3.79,6.35-4.12c0,0,2.95-4.07,3.74-4.32,0,0-5.76-.48-9.25,1.07,0,0,3.07-3.57,10.3-1.95l4-3.3s-7.59-1-10.8.11c0,0,3.7-3.16,11.89-.86l4.4-2.63s-6.47-1.39-10.32-.89c0,0,4.07-2.19,11.61.18l3.15-1.41s-4.74-.93-6.13-1.08-1.46-.53-1.46-.53a16.39,16.39,0,0,1,8.9,1S864.58,301.18,864.46,300.76Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M633.61,277.09s8.75-37.09-18.29-37.22c0,0-4.49-1.68-7.32,2.16,0,0,1.93.41.62,4.07a17.8,17.8,0,0,0-.9,4,8.59,8.59,0,0,0,1.19,5.33h0s2.53,11.3,19,18.38c0,0,3.24,3.68,4.22,3.72l-1.6-6.79s-4.94,1.37-8.44-1c0,0,8.23,1.21,8.24,0,0-.25-1-3.56-1-3.56s-8.59,2.34-13.89-1.47c0,0,9.61,2.76,13.52.21L627.16,260s-9,2.93-15.16-1.18c0,0,10.15,2.54,14.69.14l-2.45-4.58s-8.8,2.68-13.93-.77c0,0,12,1.74,13.3-.24,0,0-2.5-4.07-3.69-4.83,0,0-6.36,1.78-9.16-.49,0,0,8.15.31,8.34-.55,0,0-4.67-4.43-8.23-5.43a19.6,19.6,0,0,1,8.89,4.66,10.79,10.79,0,0,0-1.86-5.87s3.64,1.2,3,7c0,0,3.5,3.6,3.61,4.42,0,0,1.45-5.59.52-9.3,0,0,3,3.64.17,10.49l2.56,4.55s2.32-7.3,1.73-10.66c0,0,2.49,4.18-1.18,11.86l1.85,4.79s2.47-6.14,2.63-10c0,0,1.47,4.38-2.16,11.41l.86,3.34s1.72-4.51,2.1-5.85.77-1.35.77-1.35a16.38,16.38,0,0,1-2.49,8.6S633.18,277.14,633.61,277.09Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M550.39,289.73s-30.52-22.83-41.43,1.9c0,0-3.33,3.45-.94,7.58,0,0,1.14-1.61,4,1.06a17.51,17.51,0,0,0,3.34,2.44,8.58,8.58,0,0,0,5.37,1h0s11.36,2.19,24.44-10.12c0,0,4.67-1.5,5.11-2.38L543.39,290s-.72,5.07-4.27,7.34c0,0,4.39-7.06,3.25-7.57-.23-.11-3.67-.5-3.67-.5s-1.28,8.82-6.88,12.15c0,0,6.37-7.71,5.58-12.31l-5.23-.28s-.89,9.39-7.13,13.43c0,0,6.37-8.29,6-13.41l-5.18.42s-1.05,9.13-6.26,12.45c0,0,6.39-10.32,5.08-12.28,0,0-4.73.67-5.9,1.45,0,0-.91,6.54-4.11,8.2,0,0,3.55-7.35,2.83-7.86,0,0-5.93,2.51-8.26,5.37a19.53,19.53,0,0,1,7.82-6.28,10.77,10.77,0,0,0-6.12-.64s2.54-2.86,7.56.05c0,0,4.7-1.77,5.5-1.55,0,0-4.55-3.57-8.32-4.19,0,0,4.54-1.3,9.69,4l5.19-.53s-5.77-5-9.08-5.84c0,0,4.83-.61,10.4,5.81l5.12.23s-4.63-4.72-8.12-6.42c0,0,4.59.4,9.59,6.53l3.41.55s-3.45-3.38-4.53-4.26-.93-1.25-.93-1.25a16.43,16.43,0,0,1,6.89,5.72S550.26,290.14,550.39,289.73Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M652,77.62s-30.52-22.84-41.43,1.9c0,0-3.33,3.45-.94,7.58,0,0,1.14-1.61,4,1.06a17.79,17.79,0,0,0,3.35,2.43,8.57,8.57,0,0,0,5.37,1h0s11.36,2.19,24.44-10.13c0,0,4.67-1.49,5.1-2.38L645,77.89s-.71,5.07-4.27,7.34c0,0,4.4-7.06,3.26-7.57-.23-.11-3.67-.5-3.67-.5S639,86,633.4,89.31c0,0,6.36-7.71,5.58-12.31l-5.23-.28s-.9,9.39-7.13,13.42c0,0,6.37-8.29,6-13.41l-5.17.42s-1.06,9.14-6.27,12.46c0,0,6.4-10.32,5.09-12.28,0,0-4.73.67-5.9,1.45,0,0-.91,6.54-4.11,8.2,0,0,3.55-7.35,2.83-7.87,0,0-5.93,2.52-8.26,5.38a19.44,19.44,0,0,1,7.82-6.28,10.7,10.7,0,0,0-6.13-.64s2.55-2.86,7.57.05c0,0,4.7-1.78,5.5-1.55,0,0-4.55-3.57-8.32-4.2,0,0,4.53-1.29,9.68,4l5.19-.53s-5.76-5-9.08-5.85c0,0,4.83-.6,10.41,5.82l5.12.22s-4.63-4.72-8.13-6.41c0,0,4.6.4,9.6,6.53l3.4.55S640,72.86,638.92,72s-.93-1.24-.93-1.24a16.4,16.4,0,0,1,6.89,5.72S651.83,78,652,77.62Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M768.62,106.55s-12.2-36.11-35.21-21.92c0,0-4.7,1-5.07,5.71,0,0,1.85-.68,2.67,3.12a18,18,0,0,0,1.37,3.91,8.66,8.66,0,0,0,3.84,3.89h0s8.12,8.25,25.88,5.52c0,0,4.69,1.42,5.55.93l-5-4.91s-3.46,3.77-7.68,3.62c0,0,7.63-3.32,7-4.39-.13-.21-2.74-2.48-2.74-2.48s-6.06,6.53-12.56,6.1c0,0,9.61-2.74,11.57-7l-4.14-3.19s-6.06,7.22-13.49,7c0,0,10-3.21,12.53-7.65l-4.5-2.59s-6,6.93-12.22,6.71c0,0,11.12-4.87,11.15-7.23,0,0-4.27-2.13-5.68-2.15,0,0-4.46,4.87-8,4.43,0,0,7.08-4.05,6.78-4.88,0,0-6.3-1.29-9.85-.25a19.49,19.49,0,0,1,10-.75,10.79,10.79,0,0,0-4.69-4s3.72-.91,6.21,4.33c0,0,4.88,1.21,5.4,1.84,0,0-1.72-5.51-4.47-8.17,0,0,4.47,1.51,5.69,8.82l4.58,2.5s-1.89-7.41-4.17-10c0,0,4.33,2.24,5.27,10.69l4.1,3.09s-1.14-6.52-3.06-9.9c0,0,3.56,2.94,4.2,10.83l2.49,2.38s-.92-4.74-1.3-6.08S761,93,761,93a16.49,16.49,0,0,1,2.43,8.62S768.27,106.81,768.62,106.55Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M689,108.33S651.1,104.11,654.23,131c0,0-1.13,4.66,3,7,0,0,.17-2,4-1.1a18.4,18.4,0,0,0,4.12.41,8.6,8.6,0,0,0,5.15-1.83h0s10.91-3.87,16-21.12c0,0,3.26-3.65,3.19-4.64l-6.55,2.42s2,4.73,0,8.49c0,0,.21-8.31-1-8.18-.25,0-3.41,1.44-3.41,1.44s3.36,8.25.22,14c0,0,1.58-9.88-1.43-13.44l-4.65,2.4s4,8.55.65,15.19c0,0,1.3-10.38-1.63-14.59l-4.25,3s3.72,8.41.91,13.92c0,0,.29-12.14-1.84-13.17,0,0-3.74,3-4.35,4.24,0,0,2.53,6.1.62,9.15,0,0-.67-8.13-1.55-8.21,0,0-3.84,5.17-4.4,8.82a19.47,19.47,0,0,1,3.56-9.38,10.76,10.76,0,0,0-5.6,2.55s.74-3.75,6.54-3.79c0,0,3.15-3.91,4-4.12,0,0-5.73-.77-9.3.6,0,0,3.25-3.42,10.39-1.43l4.21-3.09S663.22,115,660,116c0,0,3.86-3,11.92-.25l4.53-2.41s-6.39-1.72-10.26-1.41c0,0,4.17-2,11.58.77l3.22-1.25s-4.69-1.17-6.07-1.39-1.43-.6-1.43-.6a16.45,16.45,0,0,1,8.84,1.44S689.07,108.75,689,108.33Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M1020.6,402.5s-37.88-4.22-34.75,22.64c0,0-1.13,4.66,3,7,0,0,.17-2,4-1.11a17.3,17.3,0,0,0,4.12.41,8.53,8.53,0,0,0,5.15-1.83h0s10.91-3.87,15.95-21.11c0,0,3.26-3.66,3.19-4.64l-6.55,2.41s2,4.74,0,8.5c0,0,.21-8.32-1-8.18-.25,0-3.41,1.43-3.41,1.43s3.36,8.25.22,14c0,0,1.58-9.87-1.43-13.44l-4.65,2.41s4,8.55.66,15.19c0,0,1.29-10.38-1.64-14.6l-4.25,3s3.72,8.41.91,13.91c0,0,.29-12.14-1.84-13.16,0,0-3.73,3-4.35,4.24,0,0,2.54,6.1.62,9.15,0,0-.67-8.13-1.55-8.21,0,0-3.84,5.17-4.4,8.82a19.47,19.47,0,0,1,3.56-9.38,10.67,10.67,0,0,0-5.6,2.55s.74-3.76,6.54-3.8c0,0,3.16-3.91,4-4.11,0,0-5.73-.78-9.3.59,0,0,3.25-3.41,10.4-1.42l4.2-3.09s-7.52-1.42-10.79-.44c0,0,3.86-3,11.92-.26l4.53-2.4s-6.39-1.72-10.26-1.41c0,0,4.17-2,11.58.77l3.22-1.26s-4.69-1.17-6.07-1.38-1.43-.6-1.43-.6a16.39,16.39,0,0,1,8.84,1.43S1020.7,402.93,1020.6,402.5Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M1078.51,437.88s-37.88-4.21-34.75,22.64c0,0-1.12,4.66,3,7,0,0,.17-2,4-1.1a17.65,17.65,0,0,0,4.11.4A8.64,8.64,0,0,0,1060,465h0s10.9-3.87,15.94-21.12c0,0,3.27-3.65,3.19-4.64l-6.55,2.41s2,4.74,0,8.5c0,0,.21-8.31-1-8.18-.25,0-3.41,1.43-3.41,1.43s3.36,8.25.22,14c0,0,1.58-9.87-1.43-13.43l-4.65,2.4s4,8.55.66,15.19c0,0,1.29-10.38-1.64-14.59l-4.25,3s3.72,8.41.92,13.92c0,0,.28-12.15-1.85-13.17,0,0-3.73,3-4.35,4.24,0,0,2.54,6.1.62,9.15,0,0-.67-8.13-1.55-8.21,0,0-3.84,5.17-4.39,8.82a19.52,19.52,0,0,1,3.55-9.38,10.76,10.76,0,0,0-5.6,2.55s.75-3.76,6.55-3.79c0,0,3.15-3.91,4-4.12,0,0-5.73-.77-9.3.6,0,0,3.25-3.42,10.4-1.43l4.2-3.09s-7.52-1.42-10.79-.44c0,0,3.86-3,11.92-.25l4.53-2.41s-6.39-1.72-10.26-1.41c0,0,4.17-2,11.58.77l3.22-1.25s-4.69-1.17-6.06-1.39-1.44-.6-1.44-.6a16.45,16.45,0,0,1,8.84,1.44S1078.61,438.31,1078.51,437.88Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M949.94,139.87s-30.52-22.83-41.43,1.9c0,0-3.33,3.45-.94,7.58,0,0,1.14-1.61,4,1.06a17.51,17.51,0,0,0,3.34,2.44,8.59,8.59,0,0,0,5.37,1h0s11.36,2.19,24.45-10.12c0,0,4.66-1.5,5.1-2.38l-6.87-1.24s-.72,5.07-4.27,7.34c0,0,4.39-7.06,3.25-7.57-.23-.11-3.66-.5-3.66-.5s-1.29,8.82-6.89,12.15c0,0,6.37-7.71,5.58-12.31l-5.23-.28s-.89,9.39-7.13,13.43c0,0,6.38-8.29,6-13.41l-5.18.42s-1,9.13-6.26,12.45c0,0,6.4-10.32,5.08-12.28,0,0-4.73.67-5.9,1.45,0,0-.9,6.54-4.1,8.2,0,0,3.54-7.35,2.82-7.86,0,0-5.93,2.51-8.26,5.37a19.53,19.53,0,0,1,7.82-6.28,10.77,10.77,0,0,0-6.12-.64s2.55-2.86,7.57.05c0,0,4.69-1.77,5.49-1.55,0,0-4.55-3.57-8.32-4.19,0,0,4.54-1.3,9.69,4l5.19-.53s-5.76-5-9.08-5.84c0,0,4.83-.61,10.4,5.81l5.13.23s-4.64-4.72-8.13-6.42c0,0,4.6.4,9.59,6.53l3.41.55s-3.45-3.38-4.53-4.26S936,133,936,133a16.44,16.44,0,0,1,6.88,5.72S949.81,140.28,949.94,139.87Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M973.52,304.69S963,268.06,939.34,281.21c0,0-4.74.73-5.33,5.47,0,0,1.88-.59,2.53,3.24a17.73,17.73,0,0,0,1.2,4A8.59,8.59,0,0,0,941.4,298h0s7.74,8.6,25.6,6.68c0,0,4.62,1.62,5.5,1.18l-4.73-5.14s-3.63,3.62-7.83,3.28c0,0,7.76-3,7.16-4.07-.12-.22-2.62-2.61-2.62-2.61s-6.34,6.26-12.82,5.53c0,0,9.73-2.3,11.87-6.44l-4-3.38s-6.38,6.94-13.79,6.4c0,0,10.08-2.77,12.86-7.08l-4.38-2.79s-6.35,6.65-12.51,6.15c0,0,11.33-4.37,11.47-6.72,0,0-4.18-2.32-5.59-2.4,0,0-4.67,4.66-8.22,4.06,0,0,7.26-3.73,7-4.57,0,0-6.24-1.57-9.83-.7a19.51,19.51,0,0,1,10-.29,10.73,10.73,0,0,0-4.5-4.2s3.76-.75,6,4.6c0,0,4.81,1.42,5.31,2.08,0,0-1.47-5.59-4.1-8.36,0,0,4.4,1.7,5.29,9.06l4.46,2.71s-1.56-7.5-3.72-10.14c0,0,4.22,2.43,4.79,10.91l4,3.27s-.85-6.56-2.61-10c0,0,3.43,3.1,3.71,11l2.38,2.5s-.7-4.78-1-6.14,0-1.55,0-1.55a16.39,16.39,0,0,1,2.05,8.72S973.16,304.93,973.52,304.69Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M739.1,387.23s-20.43-32.18-39.4-12.92c0,0-4.34,2-3.58,6.75,0,0,1.65-1.1,3.35,2.4a17.12,17.12,0,0,0,2.26,3.46,8.54,8.54,0,0,0,4.65,2.88h0s9.85,6.08,26.45-.8c0,0,4.89.26,5.61-.41l-6-3.6s-2.47,4.5-6.6,5.35c0,0,6.62-5,5.73-5.92-.17-.18-3.25-1.76-3.25-1.76s-4.33,7.78-10.75,8.91c0,0,8.69-4.95,9.59-9.53l-4.79-2.11s-4.17,8.45-11.43,10c0,0,8.9-5.49,10.35-10.41l-5-1.44s-4.22,8.17-10.27,9.42c0,0,9.64-7.38,9.11-9.68,0,0-4.66-1.05-6-.73,0,0-3.17,5.79-6.75,6.21,0,0,5.92-5.62,5.43-6.36,0,0-6.43.25-9.63,2.1a19.46,19.46,0,0,1,9.54-3.1,10.73,10.73,0,0,0-5.49-2.77s3.39-1.77,7,2.73c0,0,5,0,5.69.5,0,0-3-5-6.29-6.87,0,0,4.7.4,7.62,7.21l5.05,1.34s-3.61-6.75-6.42-8.68c0,0,4.73,1.14,7.66,9.13l4.72,2s-2.66-6.05-5.33-8.88c0,0,4.16,2,6.65,9.51l3,1.73s-2-4.39-2.71-5.6-.43-1.49-.43-1.49a16.4,16.4,0,0,1,4.41,7.79S738.83,387.57,739.1,387.23Z' transform='translate(-95.23 -55.03)' fill='%232D5798' opacity='0.1'/%3E%3Cpath d='M873.37,222.81s-19.43-32.79-39-14.13c0,0-4.4,1.9-3.78,6.64,0,0,1.67-1.06,3.27,2.49a17.28,17.28,0,0,0,2.15,3.54,8.49,8.49,0,0,0,4.56,3h0s9.65,6.38,26.46,0c0,0,4.88.41,5.62-.24l-5.87-3.78s-2.6,4.41-6.76,5.14c0,0,6.77-4.83,5.92-5.74-.18-.19-3.2-1.87-3.2-1.87s-4.57,7.65-11,8.58c0,0,8.84-4.68,9.87-9.22L856.89,215s-4.43,8.33-11.74,9.66c0,0,9.07-5.21,10.67-10.08l-4.94-1.6s-4.48,8-10.56,9.1c0,0,9.86-7.08,9.4-9.39,0,0-4.62-1.2-6-.92,0,0-3.35,5.69-6.94,6,0,0,6.09-5.42,5.63-6.18,0,0-6.44.05-9.69,1.8a19.52,19.52,0,0,1,9.63-2.8,10.75,10.75,0,0,0-5.41-2.94s3.45-1.67,7,2.94c0,0,5,.17,5.67.68,0,0-2.83-5-6.07-7.06,0,0,4.68.54,7.39,7.44l5,1.5s-3.39-6.86-6.15-8.88c0,0,4.7,1.29,7.38,9.36l4.65,2.17s-2.47-6.13-5-9c0,0,4.09,2.13,6.36,9.71l2.93,1.82s-1.88-4.45-2.54-5.68-.38-1.5-.38-1.5a16.43,16.43,0,0,1,4.17,7.92S873.08,223.14,873.37,222.81Z' transform='translate(-95.23 -55.03)' fill='%232D5798'/%3E%3Cpath d='M750.44,291.76s1-38.1-25.47-32.73c0,0-4.74-.73-6.74,3.61,0,0,2,0,1.44,3.85a17.56,17.56,0,0,0-.06,4.14,8.55,8.55,0,0,0,2.25,5h0s4.77,10.54,22.38,14.12c0,0,3.91,2.95,4.89,2.79l-3-6.32s-4.55,2.34-8.46.75c0,0,8.3-.49,8.07-1.71,0-.25-1.72-3.29-1.72-3.29s-7.94,4.05-13.89,1.39c0,0,10,.75,13.27-2.54l-2.79-4.43s-8.18,4.68-15.08,1.92c0,0,10.45.42,14.41-2.85l-3.33-4s-8.07,4.42-13.79,2.08c0,0,12.12-.73,13-2.94,0,0-3.28-3.47-4.6-4,0,0-5.86,3-9.06,1.38,0,0,8-1.34,8.05-2.23,0,0-5.47-3.39-9.16-3.64a19.47,19.47,0,0,1,9.65,2.76,10.75,10.75,0,0,0-3-5.37s3.81.43,4.33,6.2c0,0,4.17,2.82,4.44,3.6,0,0,.29-5.77-1.38-9.21,0,0,3.68,2.95,2.3,10.23l3.43,3.94s.78-7.62-.47-10.79c0,0,3.28,3.59,1.26,11.85l2.77,4.31s1.18-6.51.55-10.34c0,0,2.32,4,.2,11.61l1.52,3.1s.77-4.77.87-6.16.48-1.48.48-1.48a16.42,16.42,0,0,1-.69,8.93S750,291.89,750.44,291.76Z' transform='translate(-95.23 -55.03)' fill='%232D5798'/%3E%3Cellipse cx='698.97' cy='716.3' rx='26.93' ry='4.55' fill='%232D5798' opacity='0.1'/%3E%3Cellipse cx='600.8' cy='785.38' rx='26.93' ry='4.55' fill='%232D5798' opacity='0.1'/%3E%3Cellipse cx='93.14' cy='749.99' rx='26.93' ry='4.55' fill='%232D5798' opacity='0.1'/%3E%3Cellipse cx='805.06' cy='780.83' rx='26.93' ry='4.55' fill='%232D5798' opacity='0.1'/%3E%3Cellipse cx='833.1' cy='723.1' rx='40.21' ry='6.8' fill='%232D5798'/%3E%3Cpath d='M945,767a11.61,11.61,0,0,0,3.83-5.78c.5-2.3-.48-5.05-2.67-5.89-2.46-.94-5.09.76-7.09,2.48s-4.27,3.69-6.88,3.33a10.5,10.5,0,0,0,3.24-9.81,4.11,4.11,0,0,0-.9-2c-1.37-1.46-3.84-.83-5.48.32-5.2,3.66-6.65,10.72-6.68,17.08-.52-2.29-.08-4.68-.09-7s-.66-5-2.65-6.22a7.91,7.91,0,0,0-4-1c-2.34-.08-4.95.15-6.54,1.86-2,2.12-1.47,5.69.25,8s4.35,3.8,6.77,5.42a15.13,15.13,0,0,1,4.84,4.61,4.7,4.7,0,0,1,.35.82h14.66A40.44,40.44,0,0,0,945,767Z' transform='translate(-95.23 -55.03)' fill='%232D5798'/%3E%3Cpath d='M170.29,783.87s15.35-.47,20-3.77,23.63-7.23,24.78-1.94,23.08,26.29,5.74,26.43-40.29-2.7-44.91-5.52S170.29,783.87,170.29,783.87Z' transform='translate(-95.23 -55.03)' fill='%23a8a8a8'/%3E%3Cpath d='M221.1,802.75c-17.34.14-40.29-2.7-44.91-5.52-3.52-2.14-4.92-9.83-5.39-13.38l-.51,0s1,12.39,5.59,15.2,27.57,5.66,44.91,5.52c5,0,6.73-1.82,6.64-4.46C226.73,801.72,224.82,802.72,221.1,802.75Z' transform='translate(-95.23 -55.03)' opacity='0.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    margin: auto;
    margin-bottom: 2.125rem
}

.dsm-result .dsm-result-title {
    font-weight: bold;
    font-size: 1rem
}

.dsm-result .dsm-result-describe {
    margin-top: 0;
    margin-bottom: 1.875rem;
    color: rgba(9, 9, 9, 0.45);
    font-size: 1rem
}

.dsm-result .dsm-result-button {
    font-size: 1rem;
    margin-bottom: 0
}

.dsm-result.dsm-result-lg .dsm-result-img {
    width: 34rem;
    height: 26rem
}

.dsm-result.dsm-result-xs {
    margin: 0
}

.dsm-result.dsm-result-xs .dsm-result-img {
    width: 11.33333rem;
    height: 8.66667rem
}

.dsm-steps {
    display: flex;
    width: 100%
}

.dsm-steps-item {
    position: relative;
    display: inline-block;
    flex: 1;
    overflow: hidden;
    vertical-align: top;
    padding-left: .5rem
}

.dsm-steps-item:first-child {
    padding-left: 0
}

.dsm-steps-item:last-child .dsm-steps-item-title:after {
    display: none
}

.dsm-steps-item-tail {
    position: absolute;
    top: 0.75rem;
    left: 0;
    width: 100%;
    padding: 0 0.625rem
}

.dsm-steps-item-tail:after {
    display: inline-block;
    width: 100%;
    height: 1px;
    background: rgba(9, 9, 9, 0.15);
    border-radius: 1px;
    content: ''
}

.dsm-steps-item-icon {
    width: 1.75rem;
    height: 1.75rem;
    margin: 0 0.5rem 0 0;
    font-size: 1rem;
    line-height: 1.75rem;
    text-align: center;
    border: 1px solid rgba(9, 9, 9, 0.3);
    border-radius: 2rem;
    transition: background-color .3s, border-color .3s;
    color: rgba(9, 9, 9, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: top
}

.dsm-steps-item-icon .dsm-steps-icon {
    position: relative;
    display: flex
}

.dsm-steps-item-content {
    vertical-align: top;
    display: inline-block;
    width: calc(100% - 2.5rem)
}

.dsm-steps-item-title {
    position: relative;
    display: inline-block;
    padding-right: .5rem;
    color: rgba(9, 9, 9, 0.25);
    font-size: 1rem;
    line-height: 1.75rem
}

.dsm-steps-item-title:after {
    position: absolute;
    top: .875rem;
    left: 100%;
    display: block;
    width: 9999px;
    height: 1px;
    background: rgba(9, 9, 9, 0.15);
    content: ''
}

.dsm-steps-item-description {
    font-size: .875rem;
    color: rgba(9, 9, 9, 0.45);
    max-width: 12rem
}

.dsm-steps-item.dsm-steps-item-finish .dsm-steps-item-container .dsm-steps-item-icon {
    border-color: #2D5798;
    color: #2D5798
}

.dsm-steps-item.dsm-steps-item-finish .dsm-steps-item-container .dsm-steps-item-content .dsm-steps-item-title {
    color: rgba(9, 9, 9, 0.65)
}

.dsm-steps-item.dsm-steps-item-finish .dsm-steps-item-container .dsm-steps-item-content .dsm-steps-item-title:after {
    background: #2D5798
}

.dsm-steps-item.dsm-steps-item-active .dsm-steps-item-container .dsm-steps-item-icon {
    background: #2D5798;
    border-color: #2D5798;
    color: #fff
}

.dsm-steps-item.dsm-steps-item-active .dsm-steps-item-container .dsm-steps-item-content .dsm-steps-item-title {
    color: #090909
}

.dsm-steps-item.dsm-steps-item-active .dsm-steps-item-container .dsm-steps-item-content .dsm-steps-item-title:after {
    background: #2D5798
}

.dsm-steps-item.dsm-steps-item-active .dsm-steps-item-container .dsm-steps-item-content .dsm-steps-item-description {
    color: rgba(9, 9, 9, 0.45)
}

.dsm-steps-item.dsm-steps-item-wait .dsm-steps-item-container .dsm-steps-item-content .dsm-steps-item-description {
    color: rgba(9, 9, 9, 0.25)
}

.dsm-steps-vertical {
    flex-flow: column
}

.dsm-steps-vertical .dsm-steps-item {
    display: block;
    flex: 1 0 auto;
    overflow: visible;
    padding-left: 0
}

.dsm-steps-vertical .dsm-steps-item .dsm-steps-item-tail {
    display: block;
    position: absolute;
    top: 0;
    left: .875rem;
    width: 1px;
    height: 100%;
    padding: 2rem 0 0.25rem
}

.dsm-steps-vertical .dsm-steps-item .dsm-steps-item-tail:after {
    width: 1px;
    height: 100%
}

.dsm-steps-vertical .dsm-steps-item .dsm-steps-item-title:after {
    display: none
}

.dsm-steps-vertical .dsm-steps-item .dsm-steps-item-content {
    display: block;
    min-height: 4.25rem;
    overflow: hidden;
    width: auto
}

.dsm-steps-vertical .dsm-steps-item .dsm-steps-item-icon {
    float: left
}

.dsm-steps-vertical .dsm-steps-item.dsm-steps-item-finish .dsm-steps-item-tail:after,
.dsm-steps-vertical .dsm-steps-item.dsm-steps-item-active .dsm-steps-item-tail:after {
    background: #2D5798
}

.dsm-steps-vertical .dsm-steps-item:last-child .dsm-steps-item-tail:after {
    display: none
}

.dsm-steps-horizontal .dsm-steps-item-tail {
    display: none
}

.dsm-steps-horizontal .dsm-steps-item {
    white-space: nowrap
}

.dsm-steps-horizontal .dsm-steps-item .dsm-steps-item-description {
    white-space: normal;
    word-break: break-word
}

.dsm-steps-horizontal.center .dsm-steps-item {
    white-space: nowrap;
    padding-left: 0
}

.dsm-steps-horizontal.center .dsm-steps-item:first-child .dsm-steps-item-icon:before {
    display: none
}

.dsm-steps-horizontal.center .dsm-steps-item:last-child {
    flex: 1
}

.dsm-steps-horizontal.center .dsm-steps-item:last-child .dsm-steps-item-icon:after {
    display: none
}

.dsm-steps-horizontal.center .dsm-steps-item-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.dsm-steps-horizontal.center .dsm-steps-item-container .dsm-steps-item-icon {
    width: .5rem;
    height: .5rem;
    background: #2D5798;
    border-color: #2D5798
}

.dsm-steps-horizontal.center .dsm-steps-item-container .dsm-steps-item-icon:after,
.dsm-steps-horizontal.center .dsm-steps-item-container .dsm-steps-item-icon:before {
    position: absolute;
    top: .25rem;
    left: calc(50% + .25rem);
    display: block;
    width: 100%;
    height: 1px;
    background: #2D5798;
    content: ''
}

.dsm-steps-horizontal.center .dsm-steps-item-container .dsm-steps-item-icon:before {
    left: 0;
    width: calc(50% - .25rem - .5rem)
}

.dsm-steps-horizontal.center .dsm-steps-item-container .dsm-steps-item-icon .dsm-steps-icon {
    display: none
}

.dsm-steps-horizontal.center .dsm-steps-item-wait .dsm-steps-item-icon {
    background-color: #c1c1c1;
    border-color: #c1c1c1
}

.dsm-steps-horizontal.center .dsm-steps-item-active+.dsm-steps-item-wait .dsm-steps-item-container .dsm-steps-item-icon:before {
    background: #2D5798
}

.dsm-steps-horizontal.center .dsm-steps-item-wait .dsm-steps-item-container .dsm-steps-item-icon:after,
.dsm-steps-horizontal.center .dsm-steps-item-wait .dsm-steps-item-container .dsm-steps-item-icon:before {
    background: rgba(9, 9, 9, 0.15)
}

.dsm-steps-horizontal.center .dsm-steps-item-content {
    display: block;
    width: auto;
    white-space: normal
}

.dsm-steps-horizontal.center .dsm-steps-item-content .dsm-steps-item-title {
    padding-right: 0
}

.dsm-steps-horizontal.center .dsm-steps-item-content .dsm-steps-item-title:after {
    display: none
}

@media (max-width: 768px) {
    .dsm-steps-horizontal {
        flex-flow: column
    }

    .dsm-steps-horizontal .dsm-steps-item {
        padding-left: 0;
        white-space: normal
    }

    .dsm-steps-horizontal .dsm-steps-item.dsm-steps-item-finish .dsm-steps-item-tail:after {
        background: #2D5798
    }

    .dsm-steps-horizontal .dsm-steps-item:last-child .dsm-steps-item-tail:after {
        display: none
    }

    .dsm-steps-horizontal .dsm-steps-item-small .dsm-steps-item-tail {
        left: .6875rem;
        padding-top: 1.625rem
    }

    .dsm-steps-horizontal .dsm-steps-item-tail {
        display: block;
        padding: 2rem 0 0.25rem;
        height: 100%;
        width: 1px;
        top: 0;
        left: .875rem
    }

    .dsm-steps-horizontal .dsm-steps-item-tail:after {
        display: block;
        height: 100%;
        width: 1px;
        top: 0;
        left: .875rem
    }

    .dsm-steps-horizontal .dsm-steps-item-content {
        min-height: 4.25rem
    }

    .dsm-steps-horizontal .dsm-steps-item-content .dsm-steps-item-title:after {
        display: none
    }
}

.dsm-steps-item.dsm-steps-item-small .dsm-steps-item-icon {
    width: 1.375rem;
    height: 1.375rem;
    font-size: .875rem;
    line-height: 1.25rem;
    padding-top: 0.0625rem
}

.dsm-steps-item.dsm-steps-item-small .dsm-steps-item-icon .dsm-steps-icon>i {
    font-size: .675rem
}

.dsm-steps-item.dsm-steps-item-small .dsm-steps-item-content .dsm-steps-item-title {
    font-size: .875rem;
    line-height: 1.5rem
}

.dsm-steps-item.dsm-steps-item-small .dsm-steps-item-content .dsm-steps-item-title::after {
    top: .6875rem
}

.dsm-steps-vertical .dsm-steps-item-small .dsm-steps-item-tail {
    left: .6875rem;
    padding-top: 1.625rem
}

.dsm-tag-colorful {
    display: inline-block;
    height: 1.25rem;
    padding: 0 .75rem;
    border-radius: .625rem;
    font-size: .75rem;
    color: #fff;
    border: 1px solid transparent
}

.dsm-tag-colorful-dark {
    background-color: var(--colorfulTagColor)
}

.dsm-tag-colorful-plain {
    border-color: var(--colorfulTagColor) !important;
    color: var(--colorfulTagColor) !important;
    background-color: var(--borderColor)
}

.dsm-tag-text {
    position: relative;
    font-size: .8125rem;
    line-height: 1.25rem;
    font-family: 'Open Sans';
    letter-spacing: 0;
    margin-left: 0.75rem;
    color: var(--textTagColor)
}

.dsm-tag-text:before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    left: -0.75rem;
    margin: auto;
    background-color: var(--textTagColor);
    box-shadow: 0 0 2px 0 var(--textTagColor)
}

.dsm-tag {
    display: inline-block;
    height: 2rem;
    padding: 0 1.25rem;
    border-radius: 1rem;
    line-height: 2rem;
    font-size: .8125rem;
    color: rgba(9, 9, 9, 0.65);
    border: 1px solid #dadada;
    cursor: pointer
}

.dsm-tag-sm {
    height: 1.5rem;
    padding: 0 .875rem;
    border-radius: .75rem;
    line-height: 1.5rem
}

.dsm-tag-basic:hover {
    color: #2D5798;
    border: 1px solid #2D5798
}

.dsm-tag-basic:hover .icon-close {
    color: #2D5798
}

.dsm-tag-basic-sm:hover {
    color: #2D5798
}

.dsm-tag-disabled {
    background-color: rgba(9, 9, 9, 0.09);
    color: rgba(9, 9, 9, 0.25);
    border: 1px solid rgba(9, 9, 9, 0.15);
    cursor: not-allowed
}

.dsm-tag-disabled .icon-close {
    color: rgba(9, 9, 9, 0.25)
}

.dsm-tag-close {
    display: flex;
    align-items: center;
    padding: 0 .25rem 0 .75rem
}

.dsm-tag-close .icon-close {
    padding-left: .25rem;
    margin: 0
}

.dsm-tag-primary {
    color: #fff;
    background-color: #2D5798;
    border: none
}

.dsm-tag-primary:hover {
    background-color: #005d94;
    color: #fff
}

.dsm-tag-primary .dsm-tag-close {
    color: #fff
}

.af-o-b-wrapp {
    padding: 0;
    min-height: 100vh;
    background-color: #f5f5f5
}

.af-o-b-bottom {
    width: 100%;
    height: 20vh;
    background-color: #000;
    display: none
}

.af-o-b-login,
.af-o-b-content {
    height: 100vh;
    width: 100vw
}

.af-o-b-content {
    overflow-y: auto;
    overflow-x: hidden
}

.af-o-b-content::-webkit-scrollbar {
    width: 0
}

.af-o-b-left {
    position: relative;
    background-size: cover;
    box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.5);
    flex: 1
}

.af-o-b-left .af-o-b-banner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.af-o-b-left .af-o-b-mask {
    position: relative;
    z-index: 2;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7)
}

.af-o-b-left .af-o-b-logo {
    background-color: #2D5798;
    border-radius: 2px;
    padding: .25rem 1rem;
    width: 136px
}

.af-o-b-left .af-o-b-logo img {
    width: 110px
}

.af-o-b-left .af-o-b-logo+h3 {
    font-size: 58px;
    margin: 1.5rem 0 .5rem 0
}

.af-o-b-left .af-o-b-logo+h3+h2 {
    font-size: 28px
}

@media (max-width: 765px) {
    .af-o-b-left {
        display: none
    }
}

.af-o-b-right {
    background-color: #f5f5f5;
    padding: 1rem;
    flex: 1
}

.af-o-b-form {
    margin-top: -4rem
}

.af-o-b-box {
    min-width: 300px;
    width: 50%
}

.af-o-b-bg {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 1
}

.af-o-b-bg img {
    width: 100%;
    height: 100%
}

.af-o-b-bg:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.8)
}

.af-o-b-header {
    position: relative;
    background: #000;
    padding: .8rem 1rem;
    z-index: 10
}

.af-o-b-header.primary {
    background: #2D5798
}

.af-o-b-header.primary img {
    height: 25px
}

.af-o-b-header img {
    height: 13px
}

.af-o-b-header-wrap {
    width: 60%;
    margin: auto
}

@media (max-width: 1366px) {
    .af-o-b-header-wrap {
        width: 100%
    }
}

@media (max-width: 768px) {
    .af-o-b-header-wrap {
        width: 100%
    }
}

.af-o-b-body {
    position: relative;
    min-height: calc(100vh - 50px);
    z-index: 9
}

.af-o-b-main {
    position: relative;
    padding: 1.875rem 3.75rem;
    z-index: 2;
    width: 60%;
    margin: auto
}

@media (max-width: 1366px) {
    .af-o-b-main {
        width: 100%
    }
}

@media (max-width: 768px) {
    .af-o-b-main {
        width: 100%
    }
}

.af-o-b-main h1,
.af-o-b-main .h1 {
    font-size: 1.75rem
}

.af-o-b-main-profile {
    width: 80%
}

.map-height {
    position: relative;
    min-height: 355px;
    height: 100%
}

.map-height .gm-svpc,
.map-height .gm-style-mtc,
.map-height .gm-fullscreen-control {
    display: none
}

.map-height+.map-button-group {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 999999
}

.map-height+.map-button-group.right {
    left: auto;
    right: 1rem
}

.text-bg-light {
    color: rgba(0, 0, 0, 0.4)
}

.text-gray {
    color: #ccc
}

.dsm-card-img-top-circle {
    position: relative;
    width: 100%;
    height: 77px;
    background: #2D5798;
    background-size: cover;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem
}

.dsm-card-img-top-circle:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem
}

.dsm-card-img-top-circle p {
    position: relative;
    color: #fff;
    font-size: .75rem;
    text-align: right;
    z-index: 1;
    padding: 50px 15px 0
}

.dsm-card-img-top-circle .dsm-card-img-profile {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid #2D5798;
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: -1.8rem;
    margin-left: 1rem
}

.dsm-card-img-top-circle .dsm-card-img-profile img {
    width: 100%;
    height: 100%;
    border-radius: 50%
}

.dsm-card-img-top-circle.dsm-card-img-edit p {
    visibility: hidden
}

.dsm-card-img-top-circle.dsm-card-img-edit .dsm-card-img-bg {
    position: absolute;
    bottom: .5rem;
    right: .5rem;
    color: #fff;
    font-size: 1.5rem
}

.dsm-card-img-top-circle.dsm-card-img-edit .dsm-card-img-profile:after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    border-radius: 50%
}

.dsm-card-img-top-circle.dsm-card-img-edit .dsm-card-img-profile-edit {
    position: absolute;
    bottom: .5rem;
    left: 1rem;
    color: #fff;
    font-size: 1.5rem;
    z-index: 2
}

.dsm-card-img-top-circle.dsm-card-img-edit .upload-photo-input {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    width: 45px
}

.af-avater-md {
    width: 81px;
    height: 81px;
    border: 3px solid #2D5798;
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.5)
}

.width-time {
    display: inline-block;
    width: 60px
}

.form-input-square {
    height: 32px;
    padding: 0.375rem 2px;
    text-align: center;
    width: 80px
}

.dsm-list-unstyle {
    list-style: none;
    padding: 0;
    margin: 0
}

.data-list-icon .dsm-data-icon {
    visibility: hidden
}

.data-list-icon li:hover .dsm-data-icon {
    visibility: visible
}

.map-area-overflow {
    max-height: 335px;
    overflow-y: auto
}

.card-light-bg {
    background-color: #f5f5f5;
    border: 0
}

.card-white-bg {
    background-color: #fff;
    border: 0
}

.af-o-b-instructions {
    font-size: .75rem;
    line-height: 2
}

.af-o-b-tooltip {
    width: 200px;
    left: 40px;
    top: 0
}

.af-o-b-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: .5rem auto
}

.af-o-b-arrow i {
    font-size: 1rem
}
.dsm-table th {
    height: 48px;
  }
.dsm-table-striped tbody tr:nth-of-type(odd) {
    background-color: none;
}
.dsm-table-striped tbody tr:nth-of-type(odd) {
    background-color: #fff;
  }
.dsm-table-striped tbody tr:nth-of-type(even) {
    background-color: #f5f5f5;
}
.dsm-table-dark.dsm-table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}
.dsm-table-hover tbody tr:hover {
    color: #000;
    background-color: #f4f6f9;
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
    font-family: 'FontAwesome';
    src: url('../../sources/fonts/font-awesome-icons/fontawesome-webfont.eot?v=4.7.0');
    src: url('../../sources/fonts/font-awesome-icons/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../../sources/fonts/font-awesome-icons/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../../sources/fonts/font-awesome-icons/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../../sources/fonts/font-awesome-icons/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../../sources/fonts/font-awesome-icons/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

.fa-ul>li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right {
    margin-left: .3em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-gear:before,
.fa-cog:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before,
.fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-gears:before,
.fa-cogs:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-feed:before,
.fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0"
}

.fa-chain:before,
.fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-save:before,
.fa-floppy-o:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-unsorted:before,
.fa-sort:before {
    content: "\f0dc"
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "\f0dd"
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2"
}

.fa-legal:before,
.fa-gavel:before {
    content: "\f0e3"
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-flash:before,
.fa-bolt:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-paste:before,
.fa-clipboard:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "\f150"
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "\f151"
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "\f152"
}

.fa-euro:before,
.fa-eur:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before,
.fa-usd:before {
    content: "\f155"
}

.fa-rupee:before,
.fa-inr:before {
    content: "\f156"
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "\f157"
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "\f158"
}

.fa-won:before,
.fa-krw:before {
    content: "\f159"
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "\f19c"
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before,
.fa-car:before {
    content: "\f1b9"
}

.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "\f1c5"
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "\f1c6"
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
    content: "\f1d0"
}

.fa-ge:before,
.fa-empire:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7"
}

.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8"
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-intersex:before,
.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-hotel:before,
.fa-bed:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-yc:before,
.fa-y-combinator:before {
    content: "\f23b"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
    content: "\f240"
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "\f242"
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "\f244"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-sticky-note-o:before {
    content: "\f24a"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-hourglass-o:before {
    content: "\f250"
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "\f251"
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "\f255"
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: "\f256"
}

.fa-hand-scissors-o:before {
    content: "\f257"
}

.fa-hand-lizard-o:before {
    content: "\f258"
}

.fa-hand-spock-o:before {
    content: "\f259"
}

.fa-hand-pointer-o:before {
    content: "\f25a"
}

.fa-hand-peace-o:before {
    content: "\f25b"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-safari:before {
    content: "\f267"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-tv:before,
.fa-television:before {
    content: "\f26c"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-500px:before {
    content: "\f26e"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-calendar-plus-o:before {
    content: "\f271"
}

.fa-calendar-minus-o:before {
    content: "\f272"
}

.fa-calendar-times-o:before {
    content: "\f273"
}

.fa-calendar-check-o:before {
    content: "\f274"
}

.fa-industry:before {
    content: "\f275"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-map-o:before {
    content: "\f278"
}

.fa-map:before {
    content: "\f279"
}

.fa-commenting:before {
    content: "\f27a"
}

.fa-commenting-o:before {
    content: "\f27b"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-vimeo:before {
    content: "\f27d"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-edge:before {
    content: "\f282"
}

.fa-credit-card-alt:before {
    content: "\f283"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-modx:before {
    content: "\f285"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-usb:before {
    content: "\f287"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-pause-circle-o:before {
    content: "\f28c"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stop-circle-o:before {
    content: "\f28e"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-percent:before {
    content: "\f295"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-envira:before {
    content: "\f299"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-wheelchair-alt:before {
    content: "\f29b"
}

.fa-question-circle-o:before {
    content: "\f29c"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-volume-control-phone:before {
    content: "\f2a0"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: "\f2a3"
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: "\f2a4"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-signing:before,
.fa-sign-language:before {
    content: "\f2a7"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "\f2b3"
}

.fa-fa:before,
.fa-font-awesome:before {
    content: "\f2b4"
}

.fa-handshake-o:before {
    content: "\f2b5"
}

.fa-envelope-open:before {
    content: "\f2b6"
}

.fa-envelope-open-o:before {
    content: "\f2b7"
}

.fa-linode:before {
    content: "\f2b8"
}

.fa-address-book:before {
    content: "\f2b9"
}

.fa-address-book-o:before {
    content: "\f2ba"
}

.fa-vcard:before,
.fa-address-card:before {
    content: "\f2bb"
}

.fa-vcard-o:before,
.fa-address-card-o:before {
    content: "\f2bc"
}

.fa-user-circle:before {
    content: "\f2bd"
}

.fa-user-circle-o:before {
    content: "\f2be"
}

.fa-user-o:before {
    content: "\f2c0"
}

.fa-id-badge:before {
    content: "\f2c1"
}

.fa-drivers-license:before,
.fa-id-card:before {
    content: "\f2c2"
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
    content: "\f2c3"
}

.fa-quora:before {
    content: "\f2c4"
}

.fa-free-code-camp:before {
    content: "\f2c5"
}

.fa-telegram:before {
    content: "\f2c6"
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
    content: "\f2c7"
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
    content: "\f2c8"
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
    content: "\f2c9"
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
    content: "\f2ca"
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
    content: "\f2cb"
}

.fa-shower:before {
    content: "\f2cc"
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
    content: "\f2cd"
}

.fa-podcast:before {
    content: "\f2ce"
}

.fa-window-maximize:before {
    content: "\f2d0"
}

.fa-window-minimize:before {
    content: "\f2d1"
}

.fa-window-restore:before {
    content: "\f2d2"
}

.fa-times-rectangle:before,
.fa-window-close:before {
    content: "\f2d3"
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
    content: "\f2d4"
}

.fa-bandcamp:before {
    content: "\f2d5"
}

.fa-grav:before {
    content: "\f2d6"
}

.fa-etsy:before {
    content: "\f2d7"
}

.fa-imdb:before {
    content: "\f2d8"
}

.fa-ravelry:before {
    content: "\f2d9"
}

.fa-eercast:before {
    content: "\f2da"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-snowflake-o:before {
    content: "\f2dc"
}

.fa-superpowers:before {
    content: "\f2dd"
}

.fa-wpexplorer:before {
    content: "\f2de"
}

.fa-meetup:before {
    content: "\f2e0"
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}