/* general contains basic stuff that modifies the defaults of elements */

@font-face {
    font-family: SourceSansPro-Regular;
    src: url(../fonts/Source_Sans_Pro/SourceSansPro-Regular.ttf);
}

@font-face {
    font-family: SourceSansPro-Bold;
    src: url(../fonts/Source_Sans_Pro/SourceSansPro-Bold.ttf);
}

@font-face {
    font-family: RedHatDisplay-Black;
    src: url(../fonts/Red_Hat_Display/static/RedHatDisplay-Black.ttf);
}

@font-face {
    font-family: RedHatDisplay-Bold;
    src: url(../fonts/Red_Hat_Display/static/RedHatDisplay-Bold.ttf);
}

@font-face {
    font-family: AlfaSlabOne-Regular;
    src: url(../fonts/Alfa_Slab_One/AlfaSlabOne-Regular.ttf);
}

:root {
    --primary: #c4007a;
    --primary-transparent: #c4007a0d;
    --secondary: #8c1765;
    --blue: #34215f;
    --blue-transparent: #34215f80;
    --green: #b5e8cf;
    --lighter-gray: #f8f8f8;
    --light-gray: #f2f2f2;
    --gray: #ececec;
    --dark-gray: #d8d8d8;
    --darker-gray: #9c9c9c;
    --video-background: #171717;
    --video-container: #282828;
    --orange: #e3a51a;
    --gold: #f2cb13;
    --error-background: #ffb2c5;
    --error-foreground: #d7214e;
    --separator: var(--gray);
    --gradient-start: #d8117e;
    --gradient-end: var(--secondary);
    --container-width: 1280px;
    --font-title: RedHatDisplay-Black, sans-serif;
    --font-subtitle: SourceSansPro-Bold, sans-serif;
    --font-default: SourceSansPro-Regular, sans-serif;
    --font-bolder: SourceSansPro-Bold, sans-serif;
    --font-bold: RedHatDisplay-Bold, sans-serif;
    --font-button: SourceSansPro-Bold, sans-serif;
    --font-fat: AlfaSlabOne-Regular, sans-serif;
    --swiper-theme-color: var(--primary);
    --swiper-pagination-bullet-size: 10px;
    --swiper-pagination-bullet-horizontal-gap: 10px;
}

::placeholder {
    color: var(--dark-gray);
    opacity: 1; /* Firefox */
}

* {
    position: relative;
}

body {
    color: var(--blue);
    font-family: var(--font-default);
    font-weight: 400;
    font-size: 16px;
}

*:focus, *:focus-visible {
    outline: none;
}

a {
    text-decoration: none;
    color: var(--blue);
    transition: .4s ease-in-out;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    color: var(--secondary);
    /*opacity: 0.7;*/
    transition: .4s ease-in-out;
}

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

button {
    background-color: transparent;
}

div.title,
span.title {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 900;
    vertical-align: middle;
}

h1 {
    font-size: 46px;
    line-height: 50px;
    font-family: var(--font-title);
    padding-bottom: 20px;
}

h2 {
    font-size: 36px;
    font-family: var(--font-title);
    padding-bottom: 10px;
}

h3 {
    font-size: 24px;
    font-family: var(--font-title);
    padding-bottom: 10px;
}

h4 {
    font-size: 20px;
    font-family: var(--font-title);
    text-transform: uppercase;
}

h5 {
    font-size: 18px;
    font-family: var(--font-title);
    color: var(--primary);
}

h6 {
    font-size: 14px;
    font-family: var(--font-bolder);
    text-transform: uppercase;
    margin-bottom: 0;
}

img {
    width: fit-content;
}

img.icon {
    width: 35px;
    height: 35px;
}

img.icon.filled {
    background-color: var(--primary);
    border-radius: 8px;
    width: 35px;
    height: 35px;
    padding: 5px;
}

input {
    border: 0px solid;
    border-radius: 5px;
    padding: 8px 10px;
}

input[type="text"]:focus {
    outline: 1px auto var(--blue);
}

input.error {
    background-color: var(--error-background);
    box-shadow: 0 0 0 1px var(--error-foreground);
}

/* radio */

label.radio {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

label.radio span.title {
    font-size: 16px;
    font-family: var(--font-default);
}

label.radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

label.radio .circle,
label.radio .empty-circle {
    position: absolute;
    height: 18px;
    width: 18px;
    top: 3px;
    border-radius: 50%;
    transition: 0.5s ease-in-out;
}

label.radio .circle {
    border: 1px solid var(--primary);
}

label.radio .empty-circle {
    border: 1px solid var(--darker-gray);
}

label.radio .circle {
    display: none;
}

label.radio .title {
    padding-left: 26px;
}

label.radio input:checked ~ .empty-circle {
    display: none;
}

label.radio input:checked ~ .circle {
    border: 1.5px solid var(--primary);
    display: block;
}

label.radio input:checked ~ .circle .inside {
    width: 11px;
    height: 11px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-top: 2px;
    margin-left: 2px;
}

/* end radio */

/* checkbox */

label.checkbox {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

label.checkbox span.title {
    font-size: 16px;
    font-family: var(--font-default);
    font-weight: 400;
}

label.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

label.checkbox .circle,
label.checkbox .empty-circle {
    position: absolute;
    height: 18px;
    width: 18px;
    top: 3px;
    border-radius: 50%;
    transition: 0.5s ease-in-out;
}

label.checkbox .circle {
    border: 1px solid var(--primary);
}

label.checkbox.dark .empty-circle {
    border: 1px solid var(--darker-gray);
}

label.checkbox .empty-circle {
    border: 1px solid var(--light-gray);
}

label.checkbox .circle {
    display: none;
}

label.checkbox .title {
    padding-left: 26px;
}

label.checkbox input:checked ~ .empty-circle {
    display: none;
}

label.checkbox input:checked ~ .circle {
    border: 1px solid var(--light-gray);
    display: block;
}

label.checkbox input:checked ~ .circle .inside {
    width: 12px;
    height: 12px;
    /*background-color: var(--primary);*/
    border-radius: 50%;
    margin-top: 2px;
    margin-left: 2px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.652 4.096a.469.469 0 0 1 0 .663L5.508 7.904a.469.469 0 0 1-.663 0L3.348 6.407a.469.469 0 1 1 .663-.663l1.165 1.165L7.99 4.096a.469.469 0 0 1 .663 0zM12 6c0 3.316-2.684 6-6 6S0 9.316 0 6s2.684-6 6-6 6 2.684 6 6zm-.938 0A5.06 5.06 0 0 0 6 .937 5.06 5.06 0 0 0 .937 6 5.06 5.06 0 0 0 6 11.063 5.06 5.06 0 0 0 11.063 6z' fill='%23C4007A' fill-rule='nonzero'/%3E%3C/svg%3E");
}

/* end checkbox */

/* switch */

label.field.switch-container {
    font-family: var(--font-bolder);
    text-transform: uppercase;
    font-size: 14px;
}

label.switch-container {
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    font-weight: inherit;
    justify-content: left;
    gap: 10px;
    padding: 8px 16px 8px 0;
}

label.switch-container .switch {
    background-color: var(--dark-gray);
    border-radius: 40px;
    cursor: pointer;
    flex-shrink: 0;
    height: 25px;
    position: relative;
    transition: background-color .2s;
    width: 45px;
}
label.switch-container .switch.on {
    background-color: var(--primary);
}
label.switch-container .switch.on:before {
    left: 23px;
}
label.switch-container .switch:before {
    background-color: #fff;
    border-radius: 50%;
    content: '';
    display: block;
    height: 19px;
    left: 3px;
    position: absolute;
    top: 3px;
    transition: left .2s;
    width: 19px;
}
label.switch-container .checkbox {
    cursor: pointer;
    left: 0;
    opacity: 0;
    height: 0;
    position: absolute;
}

/* end switch */

li {
    display: inline-block;
}

table {
    width: 100%;
}

table td,
table th {
    font-size: 14px;
}

table th {
    font-family: var(--font-subtitle);
}

table tr.no-border td {
    border: none;
}

.table thead th {
    border-top: none;
}

.table table.table-center thead th {
    text-align: center;
}

table.table-center td {
    text-align: center;
}

textarea {
    padding: 15px;
    border: 1px solid var(--gray);
    border-radius: 7px;
    width: 100%;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.avatar {
    border-radius: 10px;
}

.avatar.tiny {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.avatar.small {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.avatar.mid {
    width: 120px;
    height: 120px;
}

.avatar.big {
    width: 100%;
}

.avatar.edge {
    position: absolute;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    top: -24px;
    left: calc(50% - 24px);
}

.badge {
    padding: 5px 10px;
    background-color: var(--light-gray);
    border-radius: 7px;
    font-size: 12px;
    margin-right: 2px;
    margin-top: 3px;
    margin-bottom: 3px;
}

.badge img {
    height: 16px;
    margin-right: 3px;
}

.badge span {
    vertical-align: middle;
}

.btn {
    font-size: 14px;
    text-transform: uppercase;
    padding: 12px 48px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    font-family: var(--font-button);
    font-weight: bold;
    transition: .4s ease-in-out;
    /*display: table;*/
}

.btn:focus {
    box-shadow: none;
}

.btn-narrow {
    padding-left: 18px;
    padding-right: 18px;
}

.btn-icon {
    padding: 5px;
}

.btn-thin {
    padding-left: 5px;
    padding-right: 5px;
    overflow-x: hidden;
    text-overflow: ellipsis;
}

.btn-text {
    font-family: var(--font-subtitle);
    text-decoration: underline !important;
    text-align: left;
    padding: 0;
}

.btn-text:hover {
    text-decoration: none !important;
}

.btn-normal {
    font-family: var(--font-default);
    text-decoration: underline !important;
    text-align: left;
    text-transform: none;
    padding: 0;
    font-size: 16px;
    vertical-align: baseline;
}

small .btn-normal {
    font-size: inherit;
}

.btn-normal:hover {
    text-decoration: none !important;
}

.btn:hover {
    opacity: 0.8;
}

.btn img {
    margin-right: 10px;
}

.btn img:only-child {
    margin-right: 0;
}

.btn.btn-stretch {
    width: 100%;
}

.btn.btn-small {
    font-size: 12px;
    padding: 5px 20px;
}

.btn.btn-filled {
    background-image: linear-gradient(254deg, var(--gradient-start), var(--gradient-end) 100%);
    color: #fff !important;
    border: 1px solid var(--gradient-start);
}

.btn.btn-filled.no-gradient {
    background-color: var(--primary);
    background-image: none;
    color: #fff !important;
}

.btn.btn-outlined:hover {
    /* make the change slightly more visible */
    opacity: 0.6;
}

.btn.btn-filled:not(:disabled):not(.disabled).active, .btn.btn-filled:not(:disabled):not(.disabled):active {
    background-image: linear-gradient(254deg, var(--gradient-start), var(--gradient-end) 100%);
    opacity: 0.6;
}

.btn.btn-outlined {
    border: 1px solid var(--primary);
    color: var(--primary) !important;
}

.btn.btn-more:after {
    display: none;
}

.btn.btn-mono {
    border: 1px solid var(--blue);
    color: var(--blue) !important;
    font-family: var(--font-default);
    text-transform: none;
}

.btn.btn-input {
    padding: 11px 10px;
    font-size: 12px;
}

.card {
    border-radius: 15px;
    box-shadow: 0 0 14px 0 rgba(228, 228, 228, 0.5);
    background-color: #fff;
    margin: 20px 0px;
    padding: 25px;
    border: none;
}

.card.disabled {
    background-color: var(--separator);
    color: var(--blue-transparent);
}

.card.card-small-padding {
    padding: 15px;
}

.card .header {
    font-family: var(--font-subtitle);
    font-size: 16px;
}

.card .header-alt {
    font-family: var(--font-bold);
    font-size: 20px;
}

div.subtitle,
span.subtitle {
    font-family: var(--font-subtitle);
    font-size: 16px;
    font-weight: 900;
    vertical-align: middle;
}

.card .header img {
    margin-right: 3px;
}

.date-picker [class^="col-"]:first-child,
.date-picker [class*=" col-"]:first-child {
    padding-right: 0;
}

.date-picker [class^="col-"]:last-child,
.date-picker [class*=" col-"]:last-child {
    padding-left: 0;
}

.date-picker [class^="col-"] .select2,
.date-picker [class*=" col-"] .select2 {
    min-width: initial;
    width: 100%;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.daterangepicker .calendar {
    max-width: initial;
}

.daterangepicker .calendar th, .daterangepicker .calendar td {
    text-transform: uppercase;
    padding: 5px 10px;
}

.f-end {
    justify-content: end;
}

.field label {
    display: block;
    text-transform: uppercase;
    font-family: var(--font-bolder);
    font-size: 14px;
    margin-top: 10px;
}

.field input {
    display: block;
    width: 100%;
    border: 1px solid var(--gray);
    border-radius: 7px;
}

#floater {
    position: fixed;
    right: 0;
    top: calc(50% - 56px);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

#floater a {
    padding: 15px;
    background-color: #fff;
}

#floater a:hover {
    opacity: 0.6;
}

#floater a:first-child {
    border-top-left-radius: 7px;
}

#floater a:last-child {
    border-bottom-left-radius: 7px;
}

.gradiented-top {
    background-image: linear-gradient(to bottom, #f8f8f8 50%, #fff);
    background-size: 100% 340px;
    background-position: top;
    background-repeat: no-repeat;
    min-height: 340px;
}

.gradiented-bottom {
    background-image: linear-gradient(to bottom, #f8f8f8 50%, #fff);
    background-position: bottom;
    background-size: 100% 340px;
    background-repeat: no-repeat;
    min-height: 340px;
}

.gradient {
    background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 51%, #fff 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 0 !important;
}

.row > .gradient {
    left: 15px;
    right: 15px;
    width: initial;
}

.horizontal {
    flex-direction: row;
    display: flex;
}

.html-container {
    padding: 15px;
}

.html-container ol {
    list-style: decimal;
    padding-left: 30px;
}

.html-container li {
    display: list-item;
}

.list-group {
    border: 1px solid var(--gray);
    border-radius: 7px;
    padding: 15px;
}

.list-group ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
}

.list-group li {
    padding: 5px 0;
    border-bottom: 1px solid var(--gray);
}

.list-group li:first-child {
    padding-top: 0;
}

.list-group li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.loader {
    background-image: url('../images/loader.svg');
    width: 200px;
    height: 37px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-position-y: center;
    flex-shrink: 0;
}

.modal button.close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.modal .modal-content {
    padding: 40px;
}

.modal-dialog {
    max-width: 750px;
}

.modal h3 {
    margin-bottom: 0;
    padding-bottom: 5px;
}

.modal form {
    margin-top: 20px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: transparent;
    border-color: transparent;
    color: var(--secondary);
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active:before {
    border-color: var(--primary);
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary);
    display: block;
    margin: 0 8px;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: transparent;
}

.number {
    color: var(--orange);
    font-family: var(--font-subtitle);
}

.one-line {
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.padded-container {
    padding-left: 50px;
    padding-right: 50px;
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

.page-link {
    border: 1px solid var(--gray);
}

.price {
    color: var(--primary);
    font-family: var(--font-subtitle);
}

.rating .stars,
.rating .score {
    display: inline-block;
    vertical-align: middle;
}

.rating .score {
    font-size: 12px;
    margin-left: 5px;
}

.rating .star-empty,
.rating .star-full {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.rating .star-empty {
    background-image: url(../images/icons/star-empty.svg);
}

.rating .star-full,
.rating .star-hover {
    background-image: url(../images/icons/star-full.svg);
}

.rating .stars.spread {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.section .header {
    font-family: var(--font-bold);
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 20px;
    border-bottom: 1px solid var(--separator);
    padding-bottom: 5px;
}

.section .item {
    margin: 5px 0;
}

.select2 {
    /*min-width: 150px;*/
}

.select2-input-height .select2-container--default {
    height: 42px;
    width: 100% !important;
}

.select2-input-height .select2-container--default .select2-selection--single {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.select2-input-height .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

.select2-container li {
    display: block;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-image: linear-gradient(254deg, var(--gradient-start), var(--gradient-end) 100%);
    color: #fff;
}

.select2-container--default {
    height: fit-content;
}

.select2-container--default .select2-selection--single {
    border: 1px solid transparent;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    background-image: url(../images/icons/down_arrow.svg);
    width: 10px;
    height: 5px;
    border-style: none;
    transition: .4s ease-in-out;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: scaleY(-1);
}

.select2-container--default.select2-container--open .select2-selection--single {
    border: 1px solid var(--primary);
}

.select2-dropdown {
    border: 1px solid var(--primary);
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--light-gray);
}

.select2-container img.flag {
    height: 12px;
    margin-right: 5px;
    width: auto;
}

.select2-container .country-code {
    vertical-align: middle;
}

.select2-time .select2 {
    width: 100px;
    text-align: left;
    margin-right: 20px;
}

.select2-time .select2-container--default {
    height: 36px;
}

.select2-time .select2-container .select2-selection--single {
    height: 100%;
}

.select2-time .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
}

.select2-time .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
}

.country-code .select2-container .selection {
    height: 100%;
    display: block;
}

.country-code .select2-container .select2-selection--single {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.country-code .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px;
}

.country-code .select2-container--default {
    width: 100px;
    min-width: initial;
    border: 1px solid var(--gray);
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    border-right: none;
    height: initial;
}

.country-code input {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.country-code span.country-code {
    font-family: var(--font-bolder);
}

.country-code .select2-container--default .select2-selection--single .select2-selection__arrow b {
    filter: invert(36%) sepia(100%) saturate(2.9) hue-rotate(266deg) brightness(93%);
}

.country-code .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.country-code .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-top-right-radius: 0;
}

.country-code .select2-dropdown {
    min-width: 250px;
}

.separator {
    width: 100%;
    height: 1px;
    background-color: var(--separator);
    margin-top: 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.star {
    background-image: url(../images/icons/star.svg);
    width: 10px;
    height: 10px;
    display: inline-block;
}

.star-half {
    background-image: url(../images/icons/star-half.svg);
    width: 5px;
    height: 10px;
    display: inline-block;
}

.tag {
    padding: 10px 25px;
    background-color: #f2f2f2;
    margin-left: 10px;
    border-radius: 8px;
    font-family: var(--font-title);
    font-size: 15px;
    cursor: pointer;
}

.tag i.la-times {
    color: var(--primary);
    padding: 5px;
    cursor: pointer;
    margin-left: 5px;
}

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

.v-center {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.v-center h3 {
    padding-bottom: 0;
    margin-bottom: 0;
}

.wizard .disabled {
    color: var(--blue-transparent);
}
