@import url(https://fonts.googleapis.com/css?family=Short+Stack|Gloria+Hallelujah|Open+Sans);


.scrollbar::-webkit-scrollbar {
    width: 12px;
}

.scrollbar::-webkit-scrollbar-track {
    background-color: #e7e7e7;
    border: 1px solid #cacaca;
}

.scrollbar::-webkit-scrollbar-thumb {
    background-color: grey;
}

.collapsible {
    cursor: pointer;
    transition: background-color 0.2s;
}

.filterSectionTitle.active, .filterSectionTitle:hover {
    background-color: rgba(52, 56, 145, 1);
    color: #fff;
}

.collapsibleSection {
    /*padding: 0 18px;*/
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
    width: 100%;
}

.collapsibleSection.show {
    max-height: 2000px; /* Large enough for most content */
    transition: max-height 0.5s ease;
    padding-bottom: 10px;
}

.filterSection {
    margin: 10px;
    user-select: none;
    display: block;
}

.filterSectionTitle {
    margin-bottom: 5px;
    border-bottom: solid 2px rgba(52, 56, 145, 1);
}

.filterSectionTitle h5 {
    padding-top: 5px;
    margin-right: 8px;
}

.scrollableSection {
    z-index: 200;
    height: 100vh;
    padding-bottom: 50px;
    overflow-y: auto;
}

.sticky {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 400;
    background-color: white;
}

.leftSideFilterMain {
    display: block;

    background-color: #fff;
    border-width: 3px 3px 3px 0;
    border-style: solid;
    border-color: rgba(52, 56, 145, 1);
    border-radius: 0 5px 5px 0;
    width: 275px;

    /* Overriding undesired fields from rightSideShopping Modal */
    margin-top: .5% !important;
    margin-bottom: .2% !important;
    z-index: 100;

    position: fixed;
    top: 0;
    bottom: 0;
    left: -275px;
    overflow: hidden;
    outline: 0;
}

.leftSideFilterSearch {
    display: block;
    padding: 5px;
    text-align: center;
}

.leftSideFilterSearch button {

}

/* Css for the right side shopping in and out */
.leftSideFilter.slideIn {
    animation: slideInLeft 0.5s forwards;
}

.leftSideFilter.slideOut {
    animation: slideOutLeft 0.5s forwards;
}

/* Css for the right side shopping btn in and out */
.leftSideFilterBtn.slideIn {
    animation: slideInLeftBtn 0.5s forwards;
}

.leftSideFilterBtn.slideOut {
    animation: slideOutLeftBtn 0.5s forwards;
}

/* Css for the right side shopping in and out */
@keyframes slideInLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes slideOutLeft {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slideInLeftBtn {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(275px);
    }
}

@keyframes slideOutLeftBtn {
    0% {
        transform: translateX(275px);
    }
    100% {
        transform: translateX(0);
    }
}

.left-nav-slide-btn {
    cursor: pointer;
    background-color: #fff;
    width: 33px;
    height: fit-content;
    display: block;
    border-radius: 0 20% 20% 0;
    margin-top: 2% !important;
    z-index: 101;

    padding-right: 5px;
    border-width: 4px 4px 4px 0;
    border-style: solid;
    border-color: rgba(52, 56, 145, 1);

    overflow: visible;

    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.left-nav-slide-btn:hover {
    background-image: none;
    background-color: #343891;
}

.left-nav-slide-btn:hover .left-nav-slide-btn-text {
    color: #fff;
}

/* make the text inside the nav-slide-btn display sideways */
.left-nav-slide-btn .left-nav-slide-btn-text {
    writing-mode: vertical-lr;
    white-space: nowrap;
    transform: rotate(360deg);
    font-size: 16px;
    color: #343891;
    font-weight: bold;
    font-family: 'Gloria Hallelujah', cursive;
    overflow: visible;

    /* remove ability to highlight text */
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                         supported by Chrome and Opera */

    padding: 4px;
}

.rightSideShopping {
    display: block;
    line-height: 100% !important;
    background-color: #fff;
    border-width: 3px 0 3px 3px;
    border-style: solid;
    border-color: rgba(52, 56, 145, 1);
    width: 450px;
    right: -450px;

    /* Overriding undesired fields from rightSideShopping Modal */
    left: unset;
    margin-top: .5% !important;
    margin-bottom: .5% !important;
    z-index: 100;

    position: fixed;
    top: 0;
    bottom: 0;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.rightSideShoppingBtn .nav-slide-btn-text > i {
    /*  Rotate icon to match text */
    transform: rotate(180deg);
    font-size: 2rem;
}

/* Css for the right side shopping in and out */
.rightSideShopping.slideIn {
    animation: slideInRight 0.5s forwards;
}

.rightSideShopping.slideOut {
    animation: slideOutRight 0.5s forwards;
}

/* Css for the right side shopping btn in and out */
.rightSideShoppingBtn.slideIn {
    animation: slideInRightBtn 0.5s forwards;
}

.rightSideShoppingBtn.slideOut {
    animation: slideOutRightBtn 0.5s forwards;
}

/* Css for the right side shopping in and out */
@keyframes slideInRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes slideOutRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slideInRightBtn {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-450px);
    }
}

@keyframes slideOutRightBtn {
    0% {
        transform: translateX(-450px);
    }
    100% {
        transform: translateX(0);
    }
}

.right-nav-slide-btn {
    cursor: pointer;
    background-color: #fff;
    width: 2.5em;
    height: fit-content;
    display: block;
    right: 0;
    left: unset;
    margin-top: 2% !important;
    z-index: 101;
    padding-right: 5px;
    border-width: 4px 0 4px 4px;
    border-style: solid;
    border-color: rgba(52, 56, 145, 1);
    overflow: visible;
    position: fixed;
    top: 0;
    bottom: 0;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.right-nav-slide-btn:hover {
    background-image: none;
    background-color: #343891;
}

.right-nav-slide-btn:hover .nav-slide-btn-text {
    color: #fff;
}


/* make the text inside the nav-slide-btn display sideways */
.right-nav-slide-btn .nav-slide-btn-text {
    writing-mode: vertical-rl;
    white-space: nowrap;
    transform: rotate(180deg);
    font-size: 1.5rem;
    color: #343891;
    font-weight: bold;
    font-family: 'Gloria Hallelujah', cursive;
    overflow: visible;
    line-height: 120%;

    /* remove ability to highlight text */
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;

    padding: 4px;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 22px;
    height: 18px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 12px;
    height: 14px;
    margin: 4px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

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

.blockedOnLoad {
    display: none;
}

label.error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    padding: 1px 20px 1px 20px;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    /*font-size: 100%;*/

    vertical-align: baseline;
}

*:focus {
    outline: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*end css reset*/

body {
    background-image: url("../img/pine.jpg");
    background-repeat: repeat;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 120%;
    color: #333;
}

body:before {
    content: " ";
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    background-blend-mode: overlay;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .0) 50%, rgba(0, 0, 0, .1) 100%);
}

.NumberInputField {
    width: 30px;

}

a {
    color: #343891;
    text-decoration: none;

}

h1, h2, h3, h4, h5, h6, .nav a, .nav button {
    font-weight: bold;
    line-height: 140%;
    margin: 10px 0px 5px 0;
    font-family: 'Short Stack', sans-serif;
    margin-left: 5px;
}

.nav a, .nav button {
    font-family: 'Gloria Hallelujah', cursive;
}

a h1, a h2, a h3, a h4, a h5, a h6 {
    color: #343891;
}

a:hover, a h1:hover, a h2:hover, a h3:hover, a h4:hover, a h5:hover, a h6:hover {
    text-decoration: underline
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 22px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 13px;
}

h6 {
    font-size: 10px;
}


p {
    margin: 10px;
}

.faqParagraph {
    line-height: 1.5em;
}

.pageTitle {
    font-family: 'Gloria Hallelujah', cursive;
    font-weight: normal;
    background-image: url('../img/hr.png');
    background-repeat: no-repeat;
    padding-left: 20px;
    padding-bottom: 2px;
    margin-bottom: 10px;
    background-position: bottom left;
    color: #343891;
    background-size: 80%;
    width: 95%;
}

.sheet {
    position: relative;
    width: calc(100% - 150px);
    max-width: 1200px;
    margin: 30px auto;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, .3);
    background-color: #fff;
    background-repeat: repeat;
    z-index: 0;
    background-color: #fff;
}

.landing-cover {
    width: calc(100% - 150px);
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, .3);
    background-color: #fff;
    background-repeat: repeat;
    z-index: 0;
    text-align: center;
    position: absolute;
    top: 37.5%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.landing-sheet {
    width: calc(100% - 150px);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, .3);
    background-color: rgba(245,245,245, 0.8);
    background-repeat: repeat;
    z-index: 0;
    text-align: center;

    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.landing-sheet-modal {
    width: calc(100% - 150px);
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    background-repeat: repeat;
    text-align: center;
}

.landing-header {
    font-family: 'Open Sans', Sans-serif, serif;
    Background-color: white;
    font-weight: bold;
}

.landing-btn {
    font-family: 'Open Sans', sans-serif;
    display: inline-block;
    padding: 6px;
    margin: 2px .5px;
    background-color: rgb(52, 56, 145);
    border-radius: 4px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
    color: #fff;
    font-weight: bold;

    text-decoration: none;
    text-transform: uppercase;

    transition: transform 500ms ease-in-out, background-position 800ms ease-in-out, box-shadow 500ms linear;
    background-image: url('data:image/svg+xml;utf8,<?xml version="1.0" encoding="utf-8"?><svg version="1.1" id="Livello_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"	 width="1296px" height="768px" viewBox="0 0 1296 768" enable-background="new 0 0 1296 768" xml:space="preserve"><g><polygon fill="#8694D1" points="766.6,1.2 -0.2,768 200.7,768 967.5,1.2 	"/></g><g><polygon fill="#8694D1" points="1094.8,1.2 328,768 528.9,768 1295.7,1.2 	"/></g></svg>');
    background-size: contain;
    background-position: -200px center;
    background-repeat: no-repeat;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);

    border: 1px solid rgba(52, 56, 145, 0.8);

    min-width: 250px;
    min-height: 30px;
}

.landing-sheet-modal {

}

.landing-btn:active {
    transform: scale(1);
    background-position: 500px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.landing-btn:hover {
    background-color: rgba(255, 102, 0, 0.8);
    transform: scale(1.1);
    background-position: -60px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

hr {
    background-image: url('../img/hr.png');
    height: 5px;
    background-position: center;
    background-repeat: no-repeat;
    border: 0px;
}

.headerCustom {
    height: 100px;
    position: relative;
    top: 0;
    background-image: url('../img/nav-bkg.png');
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 3rem;
}

.header {
    cursor: pointer;
}

.container {
    width: 80%;
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}
.terms {
    max-height: 400px; /* Limiting the height to enable scrolling */
    overflow-y: scroll; /* Enable vertical scrolling */
    padding: 10px;
    border: 1px solid #ddd;
    background-color: transparent;
    color: #0c0c0c;
}

.nav {
    margin: 0 2em;
    margin-top: 1em;
    font-size: 17px;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    width: auto;
    max-width: 100%; /* Ensure it doesn't overflow its container */
}

.standout-nav {
    background-color: #343891 !important;
    color: #fff;
    transition: transform 0.5s;
}

.standout-nav:hover {
    transform: scale(1.1); /* 10% growth */
}

.nav a, .nav button {
    padding: 7px 14px;
    display: inline-block;
    background-color: #f7982c;
    border-radius: 8px;
    margin: 2px 1px;
    flex-shrink: 1;
    min-width: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 1.55rem; /* Base font size in rem for better scaling */
    transition: all 0.1s ease; /* Smooth transition for size changes */
}

.nav button {
    background-color: #f7982c !important;
    border: none;
    color: #342891;
    box-shadow: none;
    text-shadow: none;
}

.nav-dropdown-menu {
    background-color: #f7982c;
    padding: unset !important;
    margin: unset !important;
}

.nav-dropdown-menu > li > a {
    color: #342891 !important;
    font-weight: bold;
}

.nav button:hover {
    background-color: #342891 !important;
    color: white;
    border: none;
}

.dropdown-toggle.btn-default {
    border: none !important;
}

.dropdown-toggle.btn-default:hover {
    color: white !important;
    border: none !important;
}

.dropdown-toggle.btn-default:focus {
    color: white !important;
    background-color: #342891 !important;
    border: none !important;
}

.nav-dropdown-menu > li > a:hover {
    color: white !important;
    background: #342891;
    font-weight: bold;
}

.nav-dropdown-menu > li > a.category-selected {
    color: white !important;
    background: #342891;
    font-weight: bold;
}

/* Media queries for responsive button sizing */
@media screen and (max-width: 1200px) {
    .nav {
        font-size: 16px;
    }
    .nav a, .nav button {
        font-size: 1.30rem;
        padding: 6px 12px;
    }
}

@media screen and (max-width: 992px) {
    .nav {
        font-size: 15px;
    }
    .nav a, .nav button {
        font-size: 1.15rem;
        padding: 5px 10px;
        margin: 2px 1px;
    }
}

@media screen and (max-width: 768px) {
    .nav {
        font-size: 14px;
    }
    .nav a, .nav button {
        font-size: 1.30rem;
        padding: 4px 8px;
        margin: 1px;
    }
}

@media screen and (max-width: 576px) {
    .nav {
        font-size: 13px;
    }
    .nav a, .nav button {
        font-size: 1.25rem;
        padding: 3px 6px;
        margin: 1px;
        border-radius: 6px;
    }
}

.nav a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #343891;
}

.pageControls {
    position: absolute;
    top: 100px;
    right: 10px;
}

.content {
    min-height: 300px;
    padding: 0% 2.5% 1% 2.5%;
}

.title {
    color: #343891;
}

.landing-content {
    min-height: 300px;
    padding: 0% 2.5% 1% 2.5%;
}

.login-form {
    margin-bottom: 5%;
}

.login-form > div > label > input {
    margin: .5rem;
    padding: .75rem 1.5rem;
    width: 34rem;
}


.shape-bookmark {
    background-image: url("../img/bookmark2.png");
    position: absolute;
    background-size: 100%;
    left: -230px;
    top: -40px;
    width: 277px;
    height: 450px;
    z-index: 100;
    background-repeat: no-repeat;

}

.shape-stains {
    background-image: url("../img/paint-stains.png");
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0px;
    left: 0;
    z-index: -100;
    width: 343px;
    height: 249px;
}

.footer {
    clear: both;
    position: relative;
    bottom: 0;
    text-align: center;
    width: calc(100% - 150px);
    max-width: 1200px;
    margin: 40px auto;
}


.infoDisplay div {
    float: left;
}

.infoDisplay div, .formDisplay div div {
    text-align: left;

}

.infoDisplay div div, .formDisplay div {
    min-width: 25.5%;
    border: 1px solid rgba(0, 0, 0, .2);
    margin-bottom: -1px;
    margin-left: -1px;
    background-color: rgba(255, 255, 255, .7);
    padding: 4px;
}


.infoDisplay div div:nth-child(even), .formDisplay div:nth-child(even) {
    background-color: rgba(230, 230, 230, .7);
}

.infoDisplay label, .formDisplay label {
    display: inline;
}

.formDisplay label {
    width: 100%;
}

/*.infoBox {
    display: inline-block;
    padding: 4px;
    margin: 2px .5px;
    background-color: rgba(52,56,145, .7);
    border-radius: 8px;
    border: 1px solid rgba(52,56,145, 1);
    box-shadow: 1px 1px 3px rgba(0,0,0,.2);
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,.5);
}*/

.infoBox {
    display: inline;
}

/*.formDisplay div {
    min-width: 46.1%;
    min-height: 60px;
}*/

.half-width {
    width: 47.45%;
}

.full-width {
    width: 96%;

}

select {
    width: auto;
    display: inline-block;
}

label {
    font-weight: bold;
    margin-right: 6px;
}

input {
    padding: 3px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

input:focus {
    border: 1px solid #f90;
    box-shadow: 0 0 8px #f90;
}

.inactivePageBtn {
    pointer-events: none;
    text-decoration: none;
    font-weight: normal;
    cursor: not-allowed;
}

.activePageBtn {
    pointer-events: auto;
    cursor: pointer;
}

.artistCard {
    display: block;
    float: left;
    border: 1px solid rgba(0, 0, 0, 0);
    background-repeat: no-repeat;
    width: 190px;
    font-size: 11px;
    height: 310px;
    padding: 3px;
}

.programCartCard {
    margin-bottom: 3px;
}

.programCard {
    display: inline;
    float: left;
    background-repeat: no-repeat;
    border: 3px solid rgba(255, 255, 255, 100);
    border-radius: 4px;

    /*width: 335px;*/
    width: 100%;
    font-size: 11px;
    height: 10vh;
    padding: 3px;
}

.blue-square {
    width: 8.5vh;
    height: 8.5vh;
    background-color: #343891;
    display: inline-block;
    margin-right: 10px;
    align-self: start;
}

.program-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.program-title {
    font-size: 100vh;
}

.glyphicon-remove {
    float: right;
    color: white;
}


.programTypeCard {
    position: absolute;
    background-color: #343891;
    color: #fff;
    font-weight: bold;
    padding: 4px;
    border-radius: 4px;
}

.short {
    height: 242px;
}

.artistCard h5 {
    margin: 0;
    padding: 0;
}


.artistCard:hover {
    text-decoration: none;
}


.artistImage:hover {
    box-shadow: 0 0 16px #f90;
}

.artistImage {
    width: 175px;
    height: 175px;
    margin: 5px;
    background-color: #fff;
    background-image: url('/img/default_profile.jpg');
    /*box-shadow: 1px 1px 2px rgba(0,0,0,.3);*/
    background-size: cover;
    background-repeat: no-repeat;
    border: 5px solid rgba(255, 255, 255, 0);

}

.bordered {
    border: 3px solid;
}

.bold {
    font-weight: bold;
}

.integration-1 {
    border-color: #46b8da !important;
}

.integration-2 {
    border-color: #f90 !important;
}

.integration-3 {
    border-color: #7c0 !important;
}

.integration-color-1 {
    color: #46b8da !important;
}

.integration-color-2 {
    color: #f90 !important;
}

.integration-color-3 {
    color: #7c0 !important;
}

.padRight {
    padding-right: 5px;
    font-size: 14px;
    font-weight: bold;

}

.spaceTop {
    margin-top: 80px;
    align-items: center;
    align-self: center;
}

#icon {
    padding: 15px;
}

#icon img {
    display: inline-block;
    /*box-shadow: 1px 1px 8px rgba(0,0,0,.3); */
}

.simple {
    background-repeat: no-repeat;
    background-size: contain;
}

#slider {
    float: left;
    width: 540px;
    height: 200px;
    margin-top: 15px;
}

#icon img {
    max-width: 195px;
    max-height: 195px;
    padding: 5px;
    background-color: #fff;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, .3);
}

#ProfilPicture {
    text-align: center;
}

#artistRoster, #programRoster {
    clear: both;
}

#ProfilPicture img {
    width: 100px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, .3);
    background-color: #fff;
}

#artistRoster, #programRoster {
    clear: both;
}

#AddProgramForm_Page2 {
    display: none;
}

#AddProgramForm_Page3 {
    display: none;
}

#AddProgramForm_Page4 {
    display: none;
}

#AddProgramForm_Page5 {
    display: none;
}

.align-right {
    text-align: right;
}

.align-center {
    text-align: center;
    margin: 0 auto;
}

.align-left {
    text-align: left;
}

#AlertDiv, .alertDiv {
    width: 96%;
    padding: 10px;
    color: #fff;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .6);
    /*background-color: rgba(100, 170, 0, .75);*/
    border-radius: 8px;
    /*border: 1px solid #77aa00;*/
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .2);
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
}

.programCostArtStandard {
    width: 96%;
    padding: 10px;
    color: #fff;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .6);
    background-color: rgba(100, 170, 0, .75);
    border-radius: 8px;
    border: 1px solid #77aa00;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .2);
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
}

.programCostArtStandard a {
    color: #ffff00;
}

.success {
    background-color: rgba(100, 170, 0, .75);
    border: 1px solid #77aa00;
}

.danger {
    background-color: #9f191f;
    border: 1px solid lightcoral;
}

.warning {
    background-color: darkgoldenrod;
    border: 1px solid lightyellow;
}

#artistRoster, #programRoster {
    clear: both;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.float-clear {
    clear: both;
}

.three-column {
    float: left;
    width: 33%;
    margin: 0 .15%;
    margin-top: -3px;
}

.three-column select {
    width: 100%;
}

.inline {
    display: inline-block;
}

.programControls a {
    color: #fff;
}

.programControls a:hover {
    color: #f90;
}

.box {
    background-color: rgba(255, 255, 255, .6);
    border-radius: 8px;
    border: 1px solid #dedede;
    margin: 3px 0;
    /* padding: 1% 1% 1% 1.5%; */
    padding: 0 1%;
    min-height: 60px;
}

.searchBox {
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.9);
}

.serachBox input:focus {
    box-shadow: 0;
    background-image: url('../img/searchbox-hover.png');
}

.btn, input[type="button"] {
    font-family: 'Open Sans', sans-serif;
    display: inline-block;
    padding: 6px;
    margin: 2px .5px;
    background-color: rgba(52, 56, 145, 1);
    border-radius: 8px;
    border: 1px solid rgba(52, 56, 145, 1);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .2);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
    color: #fff;
}

.btn:hover, input[type="button"]:hover {
    text-decoration: none;
    color: #fff;
    background-color: #f7982c;
    border: 1px solid #e50;
    box-shadow: 0 0 8px #f90;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, .3);;
    cursor: pointer;
}

.activePageButton {
    text-decoration: none;
    color: #fff;
    background-color: #f7982c;
    border: 1px solid #e50;
    box-shadow: 0 0 8px #f90;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, .3);;
    cursor: pointer;
}

.registrationForm label {
    display: inline-block;
    /*width: 20%;*/
}

.registrationForm input {
    margin: 5px;
}

.profileDisplay div {
    float: left;
    border: 1px solid #fff;
}

.shape-tape {
    background-image: url('../img/tape.png');
    width: 160px;
    height: 47px;
    position: absolute;
}

.topright {
    top: 0;
    right: -60px;
    transform: rotate(25deg);
    -ms-transform: rotate(25deg); /* IE 9 */
    -webkit-transform: rotate(25deg); /* Opera, Chrome, and Safari */
}

.bottomright {
    bottom: 0;
    right: -60px;
    transform: rotate(-25deg);
    -ms-transform: rotate(-25deg); /* IE 9 */
    -webkit-transform: rotate(-25deg); /* Opera, Chrome, and Safari */
}

.bottomleft {
    bottom: 0;
    left: -60px;
    transform: rotate(25deg);
    -ms-transform: rotate(25deg); /* IE 9 */
    -webkit-transform: rotate(25deg); /* Opera, Chrome, and Safari */
}

.meter {
    height: 20px; /* Can be anything */
    position: relative;
    background: #555;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    padding: 10px;
    -webkit-box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
    -moz-box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
}

.meter > span {
    display: block;
    height: 100%;
    -webkit-border-top-right-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
    -moz-border-radius-topright: 8px;
    -moz-border-radius-bottomright: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    -webkit-border-top-left-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-bottomleft: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: rgb(43, 194, 83);
    background-image: -webkit-gradient(for linear,
    left bottom,
    left top,
    color-stop(0, rgb(43, 194, 83)),
    color-stop(1, rgb(84, 240, 84))
    );
    background-image: -webkit-linear-gradient(
            center bottom,
            rgb(43, 194, 83) 37%,
            rgb(84, 240, 84) 69%
    );
    background-image: -moz-linear-gradient(
            center bottom,
            rgb(43, 194, 83) 37%,
            rgb(84, 240, 84) 69%
    );
    background-image: -ms-linear-gradient(
            center bottom,
            rgb(43, 194, 83) 37%,
            rgb(84, 240, 84) 69%
    );
    background-image: -o-linear-gradient(
            center bottom,
            rgb(43, 194, 83) 37%,
            rgb(84, 240, 84) 69%
    );
    -webkit-box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3),
    inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3),
    inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

input[type="checkbox"] {
    margin-right: 20px;
}

.artistListImage:hover {
    box-shadow: 0 0 6px #f90;
}

.artistListImage {
    width: 50px;
    height: 50px;
    display: inline-block;
    background-color: #fff;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .3);
    background-size: cover;
    background-repeat: no-repeat;

}

.rosterCondensed {
    width: 100%;
}

.rosterCondensed tr:nth-child(even) {
    background-color: rgba(255, 255, 255, .6);

}

.rosterCondensed tr td {
    vertical-align: middle;
}

.alertDiv a {
    color: #ffff00;
}

.slideImage {
    border: 1px solid rgba(0, 0, 0, .1);
    width: 370px;
    height: 130px;
    background-size: contain;
    background-repeat: no-repeat;
}

textarea {
    width: 400px;
    height: 200px;
}

@media print {

    .shape-bookmark,
    .shape-stains,
    .shape-tape topright,
    .shape-tape bottomright,
    .shape-tape bottomleft,
    .nav,
    .header {
        position: relative;
        top: 0;
        left: 0;
        z-index: -1000;
        display: none;
    }

    .content {
        box-shadow: none;
        margin: 0;
        padding: 0;
        position: absolute;
        top: 0;
    }

    .sheet {
        box-shadow: none;
        margin: 0;
        padding: 0;
        background-color: white;
    }

    .sliderContainer {
        display: none
    }

    .btn {
        display: none;

    }

    .box {
        box-shadow: none;
    }

    .footer {
        display: none;
    }

}

@page {
    margin: 2cm 0.5cm;
}

.popupDiv {
    position: fixed;
    top: 50%;
    left: 50%;
    height: auto;
    width: 500px;
    background-color: #ffffff;
    border: 1px solid black;
    margin-left: -200px;
    margin-top: -200px;
    padding: 20px;
    display: none;
    overflow: auto;
}



.programDisplayNested {
    width: 100%;
}

.programDisplayNested tr:first-child {
    border-top: 1px solid rgba(0, 0, 0, .2);
}

.programDisplayNested tr:nth-child(odd) {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    border-left: 1px solid rgba(0, 0, 0, .2);
    border-right: 1px solid rgba(0, 0, 0, .2);
}

.programDisplayNested tr:nth-child(even) {
    background-color: rgba(230, 230, 230, .7);
}

.programDisplayNested span.glyphicon {
    float: right;
    font-size: 1.3em
}

.programDisplay {
    width: 100%;
}

.programDisplay td:first-child {
    word-wrap: break-word;
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    overflow-wrap: break-word;
}

.programDisplay tr {
    background-color: rgba(255, 255, 255, .7);
}

.programDisplay tr:nth-child(even) {
    background-color: rgba(230, 230, 230, .7);
}

.programDisplay td, .programDisplay th {
    border-top: 1px solid rgba(0, 0, 0, .2);
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    border-left: 1px solid rgba(0, 0, 0, .2);
    border-right: 1px solid rgba(0, 0, 0, .2);
    text-align: left;
}

.programDisplay div.collapsibleSection {
    cursor: pointer;
    width: 100%;
}

.responsive-cell {
    width: 100%;
    padding: 10px !important;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 0;
}

.section-header label {
    margin-bottom: 0;
    font-weight: bold;
    flex: 1;
}

.content-wrapper {
    width: 100%;
    overflow: hidden;
}

.section-content {
    padding: 10px 5px;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.standard-item {
    margin-bottom: 15px;
    padding: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.standard-item:last-child {
    border-bottom: none;
}

.expand-all-container {
    display: flex;
    justify-content: flex-end;
    margin: 10px 0;
    width: 100%;
}

.expand-all-btn {
    background-color: rgba(52, 56, 145, 0.8);
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.expand-all-btn:hover {
    background-color: rgba(52, 56, 145, 1);
}

@media (max-width: 768px) {
    .expand-all-container {
        justify-content: center;
        margin: 15px 0;
    }

    .expand-all-btn {
        width: 100%;
        max-width: 200px;
        padding: 8px 15px;
    }
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .programDisplay table, 
    .programDisplay tbody, 
    .programDisplay tr, 
    .programDisplay td {
        display: block;
        width: 100%;
    }

    .programDisplay td {
        padding: 1rem !important;
    }

    .section-header {
        padding: 8px 0;
    }

    .section-content {
        padding: 8px 0;
    }
}

.programDisplay td, .programDisplay th {
    padding: .75rem;
}

.programDisplay > tbody:first-child {
    border-top: 1px black bold;
}

.programDisplay > tbody > tr > td:first-child {
    font-weight: bold;
}

.programDisplay > tbody > tr > td:nth-child(2) {
    font-size: 14px;
}

.programDisplay span.glyphicon {
    float: right;
    font-size: 1.3em;
    color: rgba(52, 56, 145, 1);
}

.programDisplayNested span.glyphicon {
    float: right;
    font-size: 1.3em;
    color: rgba(52, 56, 145, 1);
}

.programImages {
    margin-bottom: 7px;
}

.loading {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .65);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    text-align: center;
    display: none;
}

.loading h1 {
    padding-top: 22%;
}

a.disabled {
    pointer-events: none;
    cursor: default;
    background-color: gray;
    color: lightgray;
}

.adminbar {
    color: #fff;
    background-color: #343891;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    margin: 4px 0;
}

.modal-backdrop {
    display: none;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 41px;
    height: 23px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.label-align-right {
    text-align: right;
    font-weight: bold;
    margin-right: 6px;
    padding: 3px;
    border-radius: 4px;
    height: 30px;
    /*display: inline-block;*/
}

.label-align-left {
    text-align: left;
    font-weight: bold;
    margin-right: 6px;
    padding: 3px;
    border-radius: 4px;
    height: 30px;
    /*display: inline-block;*/
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                     supported by Chrome, Edge, Opera and Firefox */
}

.favoriteTab {
    height: 0;
    width: fit-content;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Gloria Hallelujah', cursive;
    font-weight: bold;
    color: white;
    position: fixed;
    bottom: 0;
    overflow: hidden;
    transition: 2s ease;
}

.favoriteTabTrans {
    height: 40px;
    width: fit-content;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Gloria Hallelujah', cursive;
    font-weight: bold;
    color: white;
    border-width: 4px 4px 1px 4px;
    border-style: solid;
    background-color: #343891;
    border-color: #343891;
    border-radius: 20% 20% 0% 0%;
    position: fixed;
    bottom: 0;
    overflow: hidden;
    transition: 2s ease;
}

.invalid-field {
    border: 2px solid #ff0000 !important;
    background-color: #ffeeee !important;
}

.progress-bar {
    background-color: #343891;
}

.glyphicon-custom-style {
    color: #343891;
    background-color: white;
}