@font-face {
    font-family: "Open Sans";
    font-weight: 300;
    src: url("/static/assets/fonts/OpenSans-Light.ttf");
}

@font-face {
    font-family: "Open Sans";
    font-weight: 300;
    font-style: italic;
    src: url("/static/assets/fonts/OpenSans-LightItalic.ttf");
}

@font-face {
    font-family: "Open Sans";
    font-weight: 400;
    font-style: normal;
    src: url("/static/assets/fonts/OpenSans-Regular.ttf");
}

@font-face {
    font-family: "Open Sans";
    font-weight: 400;
    font-style: italic;
    src: url("/static/assets/fonts/OpenSans-Italic.ttf");
}

@font-face {
    font-family: "Open Sans";
    font-weight: 500;
    font-style: normal;
    src: url("/static/assets/fonts/OpenSans-SemiBold.ttf");
}

@font-face {
    font-family: "Open Sans";
    font-weight: 500;
    font-style: italic;
    src: url("/static/assets/fonts/OpenSans-SemiBoldItalic.ttf");
}

@font-face {
    font-family: "Open Sans";
    font-weight: 600;
    font-style: normal;
    src: url("/static/assets/fonts/OpenSans-Bold.ttf");
}

@font-face {
    font-family: "Open Sans";
    font-weight: 600;
    font-style: italic;
    src: url("/static/assets/fonts/OpenSans-BoldItalic.ttf");
}

@font-face {
    font-family: "Open Sans";
    font-weight: 700;
    font-style: normal;
    src: url("/static/assets/fonts/OpenSans-ExtraBold.ttf");
}

@font-face {
    font-family: "Open Sans";
    font-weight: 700;
    font-style: italic;
    src: url("/static/assets/fonts/OpenSans-ExtraBoldItalic.ttf");
}

body {
    font-family: "Arial";
    font-weight: 400;
    font-size: 1em;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1 1 auto;
    max-width: 824px;
}

.contain {
    padding: 40px 0;
    /* min-height: calc(100vh - 156px); */
    /* padding-bottom: 70px; */
}

.full {
    width: 100%;
}

.font-segoe {
    font-family: "Arial";
}

.font-weight-light {
    font-weight: 300;
}

.font-weight-normal {
    font-weight: 400;
}

.font-weight-semibold {
    font-weight: 500;
}

.font-weight-bold {
    font-weight: 600;
}

.font-weight-extrabold {
    font-weight: 700;
}

b,
strong {
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Arial", sans-serif;
    font-weight: 400;
    margin: 0;
}

p,
a {
    font-family: "Arial", sans-serif;
    margin: 0;
}

a,
a:hover {
    color: #212121;
}

small,
.small {
    font-size: 85%;
    line-height: 1.6;
}

.small-2x {
    font-size: 75%;
}

.fsize {
    font-size: 100%;
}

.fsize-2x {
    font-size: 120%;
}

.fsize-3x {
    line-height: 1.4;
    font-size: 135%;
}

.fsize-4x {
    line-height: 1.5;
    font-size: 250%;
}

.fsize-5x {
    font-size: 350%;
}

@media (max-width: 768px) {
    .fsize-4x {
        line-height: 1.5;
        font-size: 190%;
    }
    .font-weight-semibold {
        font-weight: 700;
    }
}

.move {
    cursor: move;
}

hr {
    border-top: 1px solid #dee2e6 !important;
}

label {
    color: #333;
}

.no-border {
    border: 0 !important;
}

input.no-border,
textarea.no-border {
    box-shadow: unset !important;
}

.hover-no-border:hover {
    text-decoration: none;
}

.underline {
    text-decoration: underline;
}

.unselect {
    user-select: none;
}

.opa5 {
    opacity: 0.5;
}

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

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

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

.d-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 9px;
    column-gap: 40px;
}

.d-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 9px;
    column-gap: 20px;
}

.d-none {
    display: none !important;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.align-baseline {
    align-items: baseline;
}

.align-start {
    align-items: flex-start;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: flex-end;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-fill {
    flex: 1 1 auto;
}

.break-word {
    word-break: break-word;
}

.text-break {
    word-break: break-all !important;
    overflow-wrap: break-word !important;
}

.pointer {
    cursor: pointer;
}

.movable {
    cursor: move;
}

.ml-auto {
    margin-left: auto;
}

.ml-d {
    margin-left: 1em;
}

.ml-d2 {
    margin-left: 2em;
}

.ml-d3 {
    margin-left: 3em;
}

.ml-d4 {
    margin-left: 4em;
}

.ml-d5 {
    margin-left: 5em;
}

.mr-auto {
    margin-right: auto;
}

.mr-d {
    margin-right: 1em;
}

.mr-d2 {
    margin-right: 2em;
}

.mr-d3 {
    margin-right: 3em;
}

.mr-d4 {
    margin-right: 4em;
}

.mr-d5 {
    margin-right: 5em;
}

.mt-d {
    margin-top: 1em;
}

.mt-d2 {
    margin-top: 2em;
}

.mt-d3 {
    margin-top: 3em;
}

.mt-d4 {
    margin-top: 4em;
}

.mt-d5 {
    margin-top: 5em;
}

.mb-d {
    margin-bottom: 1em;
}

.mb-d2 {
    margin-bottom: 2em;
}

.mb-d3 {
    margin-bottom: 3em;
}

.mb-d4 {
    margin-bottom: 4em;
}

.mb-d5 {
    margin-bottom: 5em;
}

.pl-auto {
    padding-left: auto;
}

.p-d {
    padding: 1em;
}

.p-d2 {
    padding: 2em;
}

.p-d3 {
    padding: 3em;
}

.p-d4 {
    padding: 4em;
}

.p-d5 {
    padding: 5em;
}

.pl-d {
    padding-left: 1em;
}

.pl-d2 {
    padding-left: 2em;
}

.pl-d3 {
    padding-left: 3em;
}

.pl-d4 {
    padding-left: 4em;
}

.pl-d5 {
    padding-left: 5em;
}

.pr-auto {
    padding-right: auto;
}

.pr-d {
    padding-right: 1em;
}

.pr-d2 {
    padding-right: 2em;
}

.pr-d3 {
    padding-right: 3em;
}

.pr-d4 {
    padding-right: 4em;
}

.pr-d5 {
    padding-right: 5em;
}

.pt-d {
    padding-top: 1em;
}

.pt-d2 {
    padding-top: 2em;
}

.pt-d3 {
    padding-top: 3em;
}

.pt-d4 {
    padding-top: 4em;
}

.pt-d5 {
    padding-top: 5em;
}

.pb-d {
    padding-bottom: 1em;
}

.pb-d2 {
    padding-bottom: 2em;
}

.pb-d3 {
    padding-bottom: 3em;
}

.pb-d4 {
    padding-bottom: 4em;
}

.pb-d5 {
    padding-bottom: 5em;
}

.rounded {
    border-radius: 10px;
}

.rounded-2x {
    border-radius: 20px;
}

.btn-semirounded {
    border-radius: 3px;
}

.btn-rounded {
    border-radius: 10px;
}

.btn-facebook {
    background-color: #4863ae;
    border-color: #4863ae;
    color: white;
}

.btn-facebook:hover {
    background-color: #25396b;
    border-color: #25396b;
    color: white;
}

.btn-googleplus {
    background-color: #dd4a38;
    border-color: #dd4a38;
    color: white;
}

.btn-googleplus:hover {
    background-color: transparent;
    color: #dd4a38;
}

.btn-link {
    text-decoration: underline;
    background: transparent;
    border-color: transparent;
}

.btn-link:hover {
    color: #212121 !important;
}

.btn-primary {
    background: #5a8bf3;
    border-color: #5a8bf3;
}

.btn-primary-reverse {
    color: #5a8bf3;
    background: #fff;
    border-color: #5a8bf3;
}

.btn-primary-reverse:hover,
.btn-primary-reverse:focus {
    color: #e6e6e6;
    background: #5a8bf3;
    border-color: #5a8bf3;
}

.btn-info {
    background: #15cbff;
    border-color: #15cbff;
}

.btn-info-reverse {
    color: #15cbff;
    background: #fff;
    border-color: #15cbff;
}

.btn-info-reverse:hover,
.btn-info-reverse:focus {
    color: #e6e6e6;
    background: #15cbff;
    border-color: #15cbff;
}

.btn-default {
    background: #eeeeee;
    border-color: #eeeeee;
}

.btn-default:hover,
.btn-default:focus {
    background: #e6e6e6;
    border-color: #e6e6e6;
}

.fg-primary {
    color: #5a8bf3;
}

.fg-success {
    color: #5be48b;
}

.fg-warning {
    color: #ff902e;
}

.fg-danger {
    color: #ef0000;
}

.badge {
    border-radius: 20px;
}

.badge-primary {
    background: #5a8bf3;
    border-color: #5a8bf3;
}

.badge-warning {
    background: #ff902e;
    border-color: #ff902e;
}

.badge-success {
    background: #5be48b;
    border-color: #5be48b;
}

.bg-default {
    background: #eeeeee;
}

.bg-primary {
    background: #5a8bf3;
}

.bg-success {
    background: #5be48b;
}

.bg-warning {
    background: #ff902e;
}

.bg-danger {
    background: #ef0000;
}

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

.object-fit-none {
    object-fit: none;
}

.border-full {
    border: 1px solid #dee2e6;
}

.border-left {
    border-left: 1px solid #dee2e6;
}

.border-right {
    border-right: 1px solid #dee2e6;
}

.border-top {
    border-top: 1px solid #dee2e6;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6;
}

.border-dashed-top {
    border-top: 1px dashed #dee2e6;
}

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

.border-hover-gray:hover,
.border-hover-gray:focus {
    box-shadow: 0px 0px 0px 1px #cecece;
}

.w-25 {
    width: 25%;
}

.w-40 {
    width: 40%;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-75 {
    width: 75%;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.icon-notification {
    position: relative;
}

.icon-notification::before {
    content: "";
    background: #fa3e3e;
    right: -5px;
    top: -5px;
    position: absolute;
    border-radius: 50%;
    padding: 6px;
}

.dropdown-menu li {
    cursor: pointer;
    padding: 5px;
}

.dropdown-menu li:hover {
    background: #efefef;
}

.pagination {
    float: right;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    border-color: #15cbff;
    background-color: #15cbff;
}

.pagination li a:hover {
    border-color: #15cbff;
    background-color: #15cbff;
}

.modal-middle {
    margin-top: 40vh;
}

.DayPicker {
    border: 1px solid #dedede;
}

.slide-card .ce-block,
.slide-card .ce-block p,
.slide-card .ce-block li,
.slide-card .ce-block h1,
.slide-card .ce-block h2,
.slide-card .ce-block h3,
.slide-card .ce-block h4,
.slide-card .ce-block h5,
.slide-card .ce-block h6 {
    font-family: Arial;
}

.slide-card .ce-block p {
    font-size: 1.2em;
    line-height: 1.575;
    padding-bottom: 1.2em;
}

.slide-card .ce-block li {
    font-size: 1.2em;
    line-height: 1.575;
    padding-bottom: 1.1em;
}

.slide-card .ce-block h1 {
    font-weight: 500;
    font-size: 3em;
    line-height: 1.05;
    padding: 0.5em 0;
}

.slide-card .ce-block h2 {
    font-weight: 500;
    line-height: 1.25;
    font-size: 2.25em;
    padding: 0.5em 0;
}

.slide-card .ce-block h3 {
    font-weight: 500;
    font-size: 1.75em;
    line-height: 1.25;
    padding: 0.5em 0;
}

.slide-card .ce-block h4 {
    font-weight: 500;
    font-size: 1.125em;
    line-height: 1.222;
    padding: 0.5em 0;
}

.slide-card .ce-block figure {
    padding-bottom: 1.2em;
}

.slide-card .ce-block figure img.with-bg {
    width: 50%;
}

.slide-card .ce-block iframe {
    width: 100%;
    height: 450px;
    margin-bottom: 1.2em;
    border: 0;
}
