@font-face {
    font-family: "ProximaNova";
    src: url("../fonts/proxima_nova/ProximaNova-Regular.otf") format("opentype");
}

@font-face {
    font-family: "ProximaNovaBold";
    src: url("../fonts/proxima_nova/Proxima\ Nova\ Bold.otf") format("opentype");
    font-weight: bold;
}

@font-face {
    font-family: "ProximaNovaThin";
    src: url("../fonts/proxima_nova/Proxima\ Nova\ Thin.otf") format("opentype");
    font-weight: thin;
}

body {
    font-family: "ProximaNova", sans-serif;
    font-weight: 500;
    height: 100%;
    width: 100%;
}

vg-player,
.lobibox,
.lobibox-notify {
    font-family: "ProximaNova", sans-serif !important;
}

:focus,
button:focus {
    outline: none;
}

.bg-grey {
    background-color: #f5f5f5;
}

.navy-blue {
    color: #0a385f;
}


/* Hr */

hr {
    border-top: 3px solid rgba(0, 0, 0, 0.1);
}

.hr-light {
    border-top: 3px solid rgba(255, 255, 255, 0.3);
}


/* Heights */

.h-400 {
    height: 400px;
}

.h-70-vh {
    height: 70vh;
}

.h-80-vh {
    height: 80vh;
}

.h-100-vh {
    height: 100vh;
}

.min-h-100-vh {
    min-height: 100vh;
}

.min-h-75-vh {
    min-height: 75vh;
}

.min-h-50-vh {
    min-height: 50vh;
}

.max-h-450 {
    max-height: 450px;
}

.max-h-800 {
    max-height: 800px;
}


/* Width */

.w-90 {
    width: 90vw;
}

.w-80 {
    width: 80vw !important;
}

.w-450 {
    width: 450px;
}

.w-col-11 {
    width: 91.666667%;
    padding-left: 15px;
    padding-right: 15px;
}

.max-w-700 {
    max-width: 700px;
}

.max-w-800 {
    max-width: 800px;
}

.fw-900 {
    font-weight: 900 !important;
}

.single-line {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.multiple-line {
    overflow: auto;
    white-space: normal;
}

.top-auto {
    top: auto;
}

.bottom-0 {
    bottom: 0;
}

.br-declaration {
    border-radius: 8px;
}


/* Padding */

.p-6 {
    padding: 6rem;
}

.px-6 {
    padding-left: 6rem;
    padding-right: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

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

.pb-6 {
    padding-bottom: 6rem;
}

.pl-6 {
    padding-left: 6rem;
}

.p-7 {
    padding: 12rem;
}

.pr-7 {
    padding-right: 12rem;
}

.pb-80 {
    padding-bottom: 80px;
}

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

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

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

.pb-120 {
    padding-bottom: 120px;
}

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


/* Margin */

.mt-120 {
    margin-top: 120px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-40 {
    margin-top: 40px;
}

.lh-high {
    line-height: 1.7;
}

.small {
    font-weight: 500;
}

.img-fit {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.img-icon {
    height: 1rem;
    width: auto;
}

.divider {
    border: 0.5px solid rgb(196, 196, 196);
    margin: 0;
}

.bg-deep-secondary {
    background-color: #dfe6eb;
}


/* Avatar */

.avatar-xs {
    height: 1.5rem;
    width: 1.5rem;
}

.avatar-sm {
    height: 2.25rem;
    width: 2.25rem;
}

.avatar {
    height: 3rem;
    width: 3rem;
}

.avatar-md {
    height: 3.5rem;
    width: 3.5rem;
}

.avatar-lg {
    height: 4.5rem;
    width: 4.5rem;
}

.avatar-xl {
    height: 6rem;
    width: 6rem;
}

.avatar-xxl {
    height: 7.5rem;
    width: 7.5rem;
}


/* Lobilox */

.lobibox .lobibox-btn {
    font-weight: 500;
}

.lobibox.lobibox-info .lobibox-btn.lobibox-btn-default,
.lobibox.lobibox-info .lobibox-btn.lobibox-btn-default:hover {
    background-color: #fff;
    color: #2e79b4;
    border-color: #2e79b4;
    border-radius: 4px;
}

.lobibox .lobibox-btn.lobibox-btn-default {
    background-color: #ca2121;
    color: #fff;
    border-radius: 4px;
}

.lobibox .lobibox-btn.lobibox-btn-default.active,
.lobibox .lobibox-btn.lobibox-btn-default.focus,
.lobibox .lobibox-btn.lobibox-btn-default:active,
.lobibox .lobibox-btn.lobibox-btn-default:focus,
.lobibox .lobibox-btn.lobibox-btn-default:hover,
.open>.dropdown-toggle.lobibox .lobibox-btn.lobibox-btn-default {
    color: #fff;
    background-color: #ca2121;
    border-color: #ca2121;
}

.lobibox.lobibox-error .lobibox-footer {
    background-color: #fff;
}

.lobibox.lobibox-error .lobibox-header {
    padding-bottom: 2rem;
}

.lobibox.lobibox-error {
    border-radius: 4px;
    border: 1.5rem solid #ca2121;
}


/* Buttons */

.btn-transparent {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: 10px 24px !important;
    font-size: 1rem;
}


/* Border radius */

.br-8 {
    border-radius: 8px;
}

.br-12 {
    border-radius: 12px;
}

.br-50-p {
    border-radius: 50%;
}


/* Border color */

.border-white {
    border-color: #f8f9fa !important;
}

.border-light {
    border: 0.5px solid rgba(0, 0, 0, 0.2) !important;
}


/* Links */

a:hover,
a:visited,
a:active {
    color: #09395f;
    text-decoration: none;
}

.is-a {
    cursor: pointer !important;
}


/* Social media icons */

.bg-facebook {
    background-color: #3b5999;
}

.bg-apple {
    background-color: #b3b4b5;
}

.bg-google {
    background-color: #db4437;
}

.icon-bg {
    padding: 5px;
    height: 4rem;
    width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}


/* Overflow */

.overflow-y-scroll {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}


/* Font size */

.font-size-11 {
    font-size: 11px !important;
}

.font-size-16 {
    font-size: 16px !important;
}

.font-size-18 {
    font-size: 18px !important;
}

.font-size-20 {
    font-size: 20px !important;
}

.font-size-22 {
    font-size: 22px !important;
}

.font-size-24 {
    font-size: 24px !important;
}

.font-size-30 {
    font-size: 30px !important;
}

.font-size-36 {
    font-size: 36px !important;
}

.font-size-48 {
    font-size: 48px !important;
}

.fas.fa-info-circle {
    font-size: 18px;
}


/* Texts */

.text-underline {
    text-decoration: underline !important;
}


/* Outline */

.outline-none,
.outline-none:active,
.outline-none:focus {
    outline: none !important;
}


/* z-index */

.z-index-3 {
    z-index: 3;
}


/* Owl carousel */

[class*="owl-"]:hover,
.owl-theme .owl-nav [class*="owl-"]:hover {
    background-color: transparent;
}


/* Forms */

label {
    margin-bottom: 4px;
    margin-left: 8px;
    color: rgba(51, 51, 51, 0.7);
    font-size: 14px;
    font-weight: 400;
}

.form-label-group textarea:not(:placeholder-shown)~label {
    padding-top: calc(var(--input-padding-y) / 3);
    padding-bottom: calc(var(--input-padding-y) / 3);
    font-size: 12px;
    top: -10%;
}

.form-control {
    font-weight: 500;
}

.form-control-lg {
    font-size: 14px;
    padding: 16px 1rem;
    height: calc(1.5em + 1rem + 12px);
}

.bg-primary .form-control,
.form-light .form-control {
    border-radius: 0;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    font-weight: 500;
}

.form-primary .form-control {
    border-radius: 0;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 2px solid rgba(9, 57, 95, 0.5);
    background: transparent;
    font-weight: 500;
}

.form-primary label {
    color: rgba(9, 57, 95, 0.5);
}

.form-primary .form-label-group input:not(:placeholder-shown)~label,
.form-primary .form-control,
.form-primary .form-label-group textarea:not(:placeholder-shown)~label {
    color: #09395f;
}

.bg-primary .form-light .form-control:focus,
.form-light .form-control:focus {
    box-shadow: none;
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.form-primary .form-control:focus {
    color: #09395f;
    box-shadow: none;
    background-color: transparent;
    border-color: #09395f;
}

.form-light input:-webkit-autofill,
.form-light input:-webkit-autofill:hover,
.form-light input:-webkit-autofill:focus,
.form-light input:-webkit-autofill:active {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px #09395f inset !important;
    background: transparent !important;
    color: #fff !important;
}

.form-transparent input.form-control:-webkit-autofill,
.form-transparent input:-webkit-autofill:hover,
.form-transparent input:-webkit-autofill:focus,
.form-transparent input:-webkit-autofill:active {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px #09395f inset !important;
}

.form-primary input.form-control:-webkit-autofill,
.form-primary input:-webkit-autofill:hover,
.form-primary input:-webkit-autofill:focus,
.form-primary input:-webkit-autofill:active {
    -webkit-text-fill-color: #09395f !important;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
}

.bg-primary .form-control,
.bg-primary .form-control:focus,
.form-light .form-control,
.form-light .form-control:focus,
.form-light .input-group-append.password {
    color: #fff;
}


/* Nav bar */

a.nav-link {
    color: #fff;
    text-decoration: none;
}

.light .navbar .navbar-nav .nav-item .nav-link,
.light .navbar-brand,
.light .navbar .navbar-nav .nav-item .nav-link:hover,
.light .navbar-brand:hover {
    color: #fff;
    text-decoration: none;
}

.primary .navbar .navbar-nav .nav-item .nav-link,
.primary .navbar-brand,
.primary .navbar .navbar-nav .nav-item .nav-link:hover,
.primary .navbar-brand:hover {
    color: #fff;
    text-decoration: none;
}

.navbar {
    z-index: 2;
}

.light .navbar .navbar-toggler-icon {
    color: #fff;
}

.primary .navbar .navbar-toggler-icon {
    color: #0a385f;
}

.light .navbar .navbar-nav i,
.light .navbar i {
    font-size: 1.5rem;
    color: #fff;
}

.primary .navbar .navbar-nav i,
.primary .navbar i {
    color: #0a385f;
    font-size: 1.5rem;
}

.navbar .navbar-nav .dropdown-menu {
    min-width: 7rem;
}

.nav-form input {
    width: 0rem !important;
    padding: 0;
    transition: width 0.2s ease-in;
}

.nav-form input:focus {
    width: 10rem !important;
    box-shadow: none;
}


/* hero */

.hero-wrapper {
    min-height: 40rem;
    height: 80vh;
    width: 100%;
}

.hero-wrapper.search {
    height: 100vh;
}

.hero-wrapper.discover {
    height: 70vh;
}

.home-page .hero {
    padding-top: 32px;
    padding-bottom: 72px;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient( linear, left top, left bottom, from(#1e2022), color-stop(30%, rgba(0, 0, 0, 0.1)), to(#1e2022)), url(../images/declaration-image-2.jpg);
    background-image: linear-gradient( 180deg, #1e2022, rgba(0, 0, 0, 0.1) 30%, #1e2022), url(../images/declaration-image-2.jpg);
    background-position: 0px 0px, 50% 50%;
    background-size: auto, cover;
    background-repeat: repeat, no-repeat;
}

.search .hero {
    padding-top: 32px;
    padding-bottom: 72px;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient( linear, left top, left bottom, from(#1e2022), color-stop(30%, rgba(0, 0, 0, 0.1)), to(#1e2022)), url(../images/declaration-image-7-p-500.jpeg);
    background-image: linear-gradient( 180deg, #1e2022, rgba(0, 0, 0, 0.1) 30%, #1e2022), url(../images/declaration-image-7-p-500.jpeg);
    background-position: 0px 0px, 50% 50%;
    background-size: auto, cover;
    background-repeat: repeat, no-repeat;
}

.search-results-hero {
    background-image: -webkit-gradient( linear, left top, left bottom, from(#1e2022), color-stop(30%, rgba(0, 0, 0, 0.1)), to(#1e2022)), url(../images/declaration-image-7-p-500.jpeg);
    background-image: linear-gradient( 180deg, #1e2022, rgba(0, 0, 0, 0.1) 30%, #1e2022), url(../images/declaration-image-7-p-500.jpeg);
    background-position: 0px 0px, 50% 50%;
    background-size: auto, cover;
    background-repeat: repeat, no-repeat;
}

.discover .hero {
    padding-top: 32px;
    padding-bottom: 72px;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient( linear, left top, left bottom, from(#1e2022), color-stop(30%, rgba(0, 0, 0, 0.1)), to(#1e2022)), url(../images/declaration-image-7.jpg);
    background-image: linear-gradient( 180deg, #1e2022, rgba(0, 0, 0, 0.1) 30%, #1e2022), url(../images/declaration-image-7.jpg);
    background-position: 0px 0px, 50% 50%;
    background-size: auto, cover;
    background-repeat: repeat, no-repeat;
}

.hero .hero-content {
    max-width: 420px;
}

.search .hero .hero-content,
.discover .hero .hero-content {
    max-width: 650px;
}

.text-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 200px;
    background-color: #f5f5f5;
    padding: 20px;
    transition: background-color 0.3s ease;
}

.text-tile:hover {
    background-color: #0a385f;
    cursor: pointer;
}

.text-tile i,
.text-tile h5 {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.text-tile i {
    font-size: 40px;
    margin-bottom: 10px;
}

.text-tile:hover i,
.text-tile:hover h5 {
    opacity: 0;
}

.text-tile:hover::before {
    content: attr(data-default-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
}


/* Discover declaration */

.discover-declarations .card-text {
    font-size: 14px;
}

.discover-declarations .card {
    height: 22rem;
}

.section-heading {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.section-heading a {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.discover.container-fluid {
    padding-right: 75px;
    padding-left: 75px;
}

.section-heading h3 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
}


/* Sign-up */

.sign-in .left {
    left: 0;
    padding: 26px 96px 120px;
    background-image: -webkit-gradient( linear, left top, left bottom, from(#1e2022), color-stop(50%, hsla(0, 0%, 61.2%, 0)), to(#1e2022)), url(../images/declaration-image-3.jpg);
    background-image: linear-gradient( 180deg, #1e2022, hsla(0, 0%, 61.2%, 0) 50%, #1e2022), url(../images/declaration-image-3.jpg);
    background-position: 0px 0px, 50% 50%;
    background-size: auto, cover;
}

.sign-up .left {
    left: 0;
    padding: 26px 96px 120px;
    background-image: -webkit-gradient( linear, left top, left bottom, from(#000), color-stop(48%, rgba(21, 21, 21, 0)), to(#1e2022)), url(../images/declaration-image-1.jpg);
    background-image: linear-gradient( 180deg, #000, rgba(21, 21, 21, 0) 48%, #1e2022), url(../images/declaration-image-1.jpg);
    background-position: 0px 0px, 0px 0px;
    background-size: auto, cover;
}

.forgot-password .left {
    left: 0;
    padding: 26px 96px 120px;
    background-image: -webkit-gradient( linear, left top, left bottom, from(#000), color-stop(48%, rgba(21, 21, 21, 0)), to(#1e2022)), url(../images/geran-de-klerk-WJkc3xZjSXw-unsplash.jpg);
    background-image: linear-gradient( 180deg, #000, rgba(21, 21, 21, 0) 48%, #1e2022), url(../images/geran-de-klerk-WJkc3xZjSXw-unsplash.jpg);
    background-position: 0px 0px, 0px 0px;
    background-size: auto, cover;
}

.sign-up .left .content,
.sign-in .left .content,
.forgot-password .left .content {
    max-width: 420px;
}

.sign-up .right,
.sign-in .right {
    padding-top: 48px;
}

.bg-blue-gradient {
    background: linear-gradient(180deg, #08385e 35%, #477ea6 100%);
}

.bg-blue-gradient a,
.bg-blue-gradient a:focus {
    color: #fff;
}

.input-group-append.password {
    position: absolute;
    right: 10px;
    z-index: 10;
}

.sign-up .underlined-link {
    font-weight: bold;
    text-decoration: underline;
    color: #fff;
}

.auth-form-wrapper {
    padding-top: 30%;
}


/* Declaration card */

.declaration-card {
    height: 400px;
}

.declaration-card.small {
    height: 300px;
}

.declaration-card .card-img-overlay {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 32px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-image: -webkit-gradient( linear, left top, left bottom, from(rgba(30, 32, 34, 0.8)), color-stop(35%, rgba(30, 32, 34, 0)), to(#1e2022));
    background-image: linear-gradient( 180deg, rgba(30, 32, 34, 0.8), rgba(30, 32, 34, 0) 35%, #1e2022);
}

.declaration-card .card-img-overlay .card-action {
    opacity: 1;
    transition: all ease-in 0.5s;
}


/* Main player */

.bg-light-blue {
    background-color: #dfe6eb;
}

.declaration-details {
    height: 100vh;
}

.declaration-details .declaration-cover {
    height: 100vh;
    z-index: 1;
}

.declaration-details .declaration-cover-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    /* transform: translateX(-50%); */
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #1f1f1f;
    opacity: 0.3;
}

.declaration-cover-wrapper .declaration-info {
    top: 0;
    left: 0;
    padding-bottom: 132px;
    padding-top: 132px;
    color: #fff;
    background-image: -webkit-gradient( linear, left top, left bottom, from(rgba(30, 32, 34, 0)), color-stop(20%, rgba(30, 32, 34, 0)), to(#1e2022));
    background-image: linear-gradient( 180deg, rgba(30, 32, 34, 0), rgba(30, 32, 34, 0) 20%, #1e2022);
}

.declaration-details .play-button .button-wrapper {
    width: 100%;
    height: 100%;
}

.declaration-details .play-button .button-wrapper .vg-icon-play_arrow,
.declaration-details .play-button .button-wrapper .vg-icon-pause {
    font-size: 3rem;
    background-color: #09395f;
    color: #fff;
    border-radius: 3rem;
    padding: 1rem 2.5rem;
}

.declaration-details a.text-primary:hover,
.declaration-details a.text-primary:visited,
.declaration-details a.text-primary:active {
    color: #09395f !important;
}

.declaration-details .dropdown-item.active,
.declaration-details .dropdown-item:active {
    color: #09395f;
    background-color: transparent;
}

.declaration-details vg-player,
.declaration-details vg-controls {
    background-color: #dfe6eb;
}

.playlist-declarations-list {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(30, 32, 34, 0.35);
    color: #fffcf5;
    position: fixed;
    bottom: 135px;
    right: 5px;
    z-index: 5;
    max-width: 450px;
}

.mini-player-bg-blur {
    position: fixed;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 0%;
    height: 120px;
    -webkit-filter: blur(5px);
    filter: blur(5px);
}

.mini-player {
    height: 120px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(12px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(30, 32, 34, 0.35);
    color: #fffcf5;
}

.mini-player vg-controls {
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.mini-player vg-volume .volumeBackground {
    background-color: #6c757d !important;
}

.mini-player .dropdown-toggle::after {
    display: none !important;
}

.mini-player vg-volume .volumeKnob {
    width: 10px;
    height: 10px;
}

.mini-player vg-volume .volumeBackground,
.mini-player vg-volume .volumeValue {
    width: 3px;
    height: 3px;
}

.mini-player vg-controls vg-scrub-bar-current-time {
    background-color: rgba(255, 252, 245, 0.5) !important;
    z-index: 1;
    height: 3px;
}

.mini-player vg-scrub-bar-cue-points,
.mini-player vg-scrub-bar-cue-points .cue-point-container .cue-point {
    height: 3px;
}

.mini-player vg-scrub-bar .scrubBar {
    overflow: hidden;
}

.mini-player vg-mute {
    width: 30px;
}

.mini-player vg-time-display {
    width: 40px;
}

.mini-player vg-controls vg-scrub-bar-buffering-time {
    z-index: 2;
    height: 3px;
}

.mini-player vg-play-pause {
    border-radius: 50%;
    border: 1px solid;
    margin-right: 0.25rem;
    margin-left: 0.25rem;
}

.mini-player vg-player,
.mini-player vg-controls {
    background-color: transparent;
    color: #fff;
}

.mini-player vg-player {
    overflow: visible;
}

.mini-player [class^="vg-icon-"],
.mini-player [class*=" vg-icon-"] {
    font-size: 1.6rem;
}

.mini-player vg-time-display {
    font-size: 12px;
}

.mini-player a.text-light:hover,
.mini-player a.text-light:visited,
.mini-player a.text-light:active {
    color: #fff !important;
}

.player-icon {
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    width: 2rem;
    cursor: pointer;
    color: white;
}

.player-icon img {
    width: 1.5rem;
    height: auto;
}

.mini-player .dropdown-item {
    color: #212529;
}

.custom-radios [type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-radios [type="radio"]+.card {
    cursor: pointer;
}

.custom-radios [type="radio"]:checked+.card {
    border: 0.15rem solid #2e75ad;
}

.add-to-playlist .mini-cover {
    height: 3rem;
    width: 3rem;
}


/* Footer */

footer .list-unstyled li {
    margin-top: 1rem;
}

.footer-call-to-action .left {
    padding: 48px;
}

.footer-call-to-action .right {
    max-height: 300px;
}

.footer-call-to-action .right img {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.social li img {
    width: 20px;
}


/* Carousels */

.discover .owl-carousel .item {
    height: 15rem;
}


/* Home Mobile Phone Ad Carousel */

.mobile-display .owl-carousel .item img {
    object-fit: cover;
    object-position: center;
    border-radius: 40px;
}

.mobile-display .owl-carousel .owl-stage-outer,
.mobile-display .owl-carousel .owl-stage,
.mobile-display .owl-carousel .owl-item,
.mobile-display .owl-carousel .item {
    height: 100%;
}

.mobile-display .owl-carousel {
    width: 15rem;
    height: 35rem;
    border-radius: 40px;
    box-shadow: 0px 0px 0px 11px #1f1f1f, 0px 0px 0px 13px #191919, 0px 0px 0px 20px #111;
}

.mobile-display .owl-carousel:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -5px;
    width: 56%;
    height: 30px;
    background-color: #1f1f1f;
    border-radius: 0px 0px 40px 40px;
    z-index: 2;
}

.mobile-display .left {
    padding-top: 6rem;
    padding-bottom: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
}

.mobile-display .right .content {
    background: none;
    background-color: #f3f3f3;
    height: 45rem;
}


/* Badges */

/* .badges img {
    width: 100%;
    height: auto;
} */


/* Iphone mockup */

.iphone-mockup {
    width: 260px;
    max-width: 440px;
}


/* Search */

.search .card {
    height: 10rem;
}

.search .mini-cover {
    height: 3rem;
    width: 3rem;
}

.search .icon {
    height: 4rem;
    width: 4rem;
}

.search .icon img {
    opacity: 0.3;
}


/* Playlist */

.playlist-details-page.hero {
    padding-top: 56px;
    padding-bottom: 80px;
    background-position: 0px 0px, 50% 0%;
    background-size: auto, cover;
}

.playlist .cover,
.profile .cover,
.playlist-declarations-list .cover {
    height: 20rem;
    width: auto;
}

.playlist .mini-cover {
    height: 4rem;
    width: 5rem;
}

.playlist .form-control,
.playlist .form-control:focus {
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #707070;
    border-radius: 0;
    box-shadow: none;
}

.playlist .form-control {
    color: #09395f;
}

.playlist .form-control::-webkit-input-placeholder {
    color: #707070;
    font-weight: 500;
}

.playlist .form-control::-moz-placeholder {
    color: #707070;
    font-weight: 500;
}

.playlist .form-control:-ms-input-placeholder {
    color: #707070;
    font-weight: 500;
}

.playlist .form-control::-ms-input-placeholder {
    color: #707070;
    font-weight: 500;
}

.playlist .form-control::placeholder {
    color: #707070;
    font-weight: 500;
}

.playlist .add-link {
    background-color: transparent;
    padding: 0;
    color: #09395f;
}

.playlist .declaration-wrapper:hover {
    background-color: rgba(9, 57, 95, 0.1);
}

.playlist .declaration-wrapper .declaration-wrapper__left.hover-show {
    display: none;
}

.playlist .declaration-wrapper:hover .declaration-wrapper__left.hover-hide {
    display: none !important;
}


/* Upload */

.upload-overlay .badge {
    font-size: 1rem;
    opacity: 0.5;
    transition: opacity 0.5s;
    position: absolute;
    top: 5px;
    right: 5px;
}

.upload-overlay:hover .badge {
    opacity: 1;
}

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

.dropzone .dropzone-preview .dz-details {
    position: relative !important;
}

.dropzone .dropzone-preview .dz-details .dz-filename:not(:hover) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropzone .dropzone-preview .dz-details .dz-filename:hover {
    white-space: nomal;
}

.dropzone .dropzone-preview.dz-error:hover .dz-preview .dz-error-message {
    opacity: 1;
    pointer-events: auto;
}

.dropzone .dropzone-preview.dz-success .dz-success-mark {
    -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dropzone-preview.dz-success .dz-preview:hover .dz-success-mark {
    opacity: 1;
}

.dropzone .dropzone-preview.dz-processing .dz-progress {
    opacity: 1;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.dropzone .dropzone-preview.dz-complete .dz-progress {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in;
    -moz-transition: opacity 0.4s ease-in;
    -ms-transition: opacity 0.4s ease-in;
    -o-transition: opacity 0.4s ease-in;
    transition: opacity 0.4s ease-in;
}

.dropzone .dropzone-preview:not(.dz-processing) .dz-progress {
    -webkit-animation: pulse 6s ease infinite;
    -moz-animation: pulse 6s ease infinite;
    -ms-animation: pulse 6s ease infinite;
    -o-animation: pulse 6s ease infinite;
    animation: pulse 6s ease infinite;
}

.dropzone .dz-preview:hover .dz-image img {
    transform: none !important;
    -webkit-filter: none !important;
    filter: none !important;
}

.dropzone .dz-preview .dz-error-message {
    display: block !important;
}

.dropzone .dz-preview .dz-progress .dz-upload {
    background: #00ad00 !important;
}

.dropzone {
    background-color: rgba(0, 0, 0, 0.1) !important;
}


/* Pagination */

.page-item.active .page-link {
    color: #09395f !important;
    background-color: transparent !important;
    font-weight: bolder;
}

.page-item.active .page-link {
    color: #09395f !important;
    border: none;
}

.pagination-sm .page-item:last-child .page-link,
.pagination-sm .page-item:first-child .page-link {
    border: none;
}


/* Media queries */

@media (min-width: 992px) {
    .sign-up .right,
    .sign-in .right {
        padding-top: 128px;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .position-lg-absolute {
        position: absolute !important;
    }
    .w-lg-100 {
        width: 100% !important;
    }
    .w-lg-80 {
        width: 80vw;
    }
    .playlist .declaration-wrapper:hover .declaration-wrapper__left.hover-show {
        display: block;
    }
    .mobile-display .right {
        background: linear-gradient( rgba(20, 20, 20, 0.5), rgba(20, 20, 20, 0.5)), url("../images/mobile.jpg") !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        height: 45rem;
    }
    .mobile-display .owl-carousel {
        top: 15%;
        left: -25%;
    }
    .mobile-display .left {
        padding-left: 6rem !important;
        padding-right: 15% !important;
    }
    .auth-form-wrapper {
        padding-top: 15%;
    }
    .declaration-card .card-img-overlay .card-action {
        opacity: 0;
    }
    .declaration-card:hover .card-img-overlay .card-action {
        opacity: 1;
    }
    .iphone-mockup {
        width: auto;
    }
    .footer-call-to-action .right {
        max-height: inherit;
    }
    .footer-call-to-action .right img {
        border-top-left-radius: 0px;
        border-top-right-radius: 12px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 12px;
    }
}

@media (min-width: 576px) {
    #navbarSupportedContent .nav-item .nav-link {
        font-size: 16px;
    }
    .footer-call-to-action .left {
        padding: 64px;
    }
    .hero-wrapper {
        height: 100vh;
    }
    .home-page .hero {
        padding-top: 56px;
        padding-bottom: 120px;
    }
    .iphone-mockup {
        width: 300px;
    }
    .p-sm-6 {
        padding: 6rem !important;
    }
    .mobile-display .left {
        padding-top: 6rem;
        padding-bottom: 3rem;
        padding-left: 6rem;
        padding-right: 6rem;
    }
    .multiple-line-sm {
        overflow: auto;
        white-space: normal;
    }
    .auth-form-wrapper {
        padding-top: 25%;
    }
    .playlist .add-link {
        display: inline-block;
        font-weight: 500;
        color: #fff;
        background-color: #09395f;
        text-align: center;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border: 1px solid transparent;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        line-height: 1.5;
        border-radius: 0.25rem;
        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;
    }
    .w-sm-80 {
        width: 80%;
    }
    .playlist-declarations-list {
        right: 30px;
    }
}

@media (min-width: 768px) {
    .bg-md-transparent {
        background-color: transparent !important;
    }
    .font-size-md-16 {
        font-size: 16px !important;
    }
    .font-size-md-48 {
        font-size: 48px !important;
    }
    .mobile-display .left {
        padding-bottom: 0;
        padding-top: 0;
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .p-md-6 {
        padding: 6rem !important;
    }
    .lh-md-normal {
        line-height: 1.5;
    }
    .mobile-display .owl-carousel {
        height: 70%;
    }
    /* .badges img {
        width: auto;
        height: 20px;
    } */
    .w-md-75 {
        width: 75%;
    }
    .px-md-6 {
        padding-right: 6rem !important;
        padding-left: 6rem !important;
    }
    .multiple-line-md {
        overflow: auto;
        white-space: normal;
    }
    .single-line-md {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .auth-form-wrapper {
        padding-top: 20%;
    }
    .playlist .cover {
        height: 15rem;
    }
    .playlist .right {
        padding-top: 4rem !important;
    }
    .playlist .playlist-declarations-wrapper.empty {
        min-height: 15rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .playlist .playlist-declarations-wrapper {
        min-height: 15rem;
    }
    .declaration-card .card-img-overlay {
        padding: 32px;
    }
    .primary .navbar .navbar-nav .nav-item .nav-link,
    .primary .navbar-brand,
    .primary .navbar .navbar-nav .nav-item .nav-link:hover,
    .primary .navbar-brand:hover {
        color: #0a385f;
    }
    .iphone-mockup {
        width: auto;
    }
}

@media (min-width: 1200px) {
    .mobile-display .left {
        padding-right: 30%;
    }
    .p-lg-6 {
        padding: 6rem !important;
    }
    .auth-form-wrapper {
        padding-top: 10%;
    }
}


/* Lobibox */

.lobibox {
    max-width: 450px !important;
}

.lobibox.lobibox-error .lobibox-header,
.lobibox.lobibox-warning .lobibox-header,
.lobibox.lobibox-info .lobibox-header,
.lobibox.lobibox-error .lobibox-footer,
.lobibox.lobibox-warning .lobibox-footer,
.lobibox.lobibox-info .lobibox-footer {
    background-color: #fbfbfb;
    color: #000;
}

.lobibox-header {
    padding: 1rem 1.5rem !important;
}

.lobibox-body {
    padding: 2.5rem !important;
}

.lobibox .lobibox-body .lobibox-icon-wrapper {
    display: none;
}

.lobibox.lobibox-error,
.lobibox.lobibox-warning,
.lobibox.lobibox-info {
    border: none;
}

.lobibox .lobibox-btn.lobibox-btn-default {
    display: block;
    width: 100%;
    color: #fff !important;
    background-color: #09395f !important;
    border-color: #09395f !important;
    padding: 0.5rem 1rem !important;
    font-size: 1.25rem !important;
    line-height: 1.5;
    border-radius: 0.3rem !important;
}

.lobibox .lobibox-btn.lobibox-btn-default:hover,
.lobibox .lobibox-btn.lobibox-btn-default:active {
    background-color: #09395f !important;
    border-color: #09395f !important;
    color: #fff !important;
}

.lobibox.lobibox-error .lobibox-footer,
.lobibox.lobibox-info .lobibox-footer,
.lobibox.lobibox-error .lobibox-info {
    padding: 0 2.5rem 2.5rem !important;
}

.legal {
    padding-top: 105px;
}