.unauthbody {

	background-image: url("/ui/public/images/bg-unauthenticated.jpg	");
    background-repeat: no-repeat;
    background-position: left top;
	background-size: 100%;
    height: 100%;
}


img.bg {
    /* Set rules to fill background */
    min-height: 100%;
    min-width: 1024px;

    /* Set up proportionate scaling */
    width: 100%;
    height: auto;


}

.panel {
    background: rgba(27, 39, 53, 0.8);
}

.row.header {
    position: relative;
    min-height: 250px;
}

.wrapper {
    position: relative;
}

#loader{
color: #1B2735;
}
.resetPassword #loader{
    color:#fff;
}
.panel-error {
    background: rgba(255, 163, 65, 0.33);
    border: 1px solid rgba(255, 163, 65, 1);
    margin-top: 7px;
    padding: 12px;
}
.panel-error ul{
    margin-top: 8px;

}
.panel-error ul li{
    list-style-type: disc;
    list-style-position: inside;
}

.panel-success {
    background: rgba(255, 255, 255, 0.33);
    border: 1px solid rgba(230, 230, 245, 1);
    margin: 40px;
    padding: 12px;
    font-size: 1.5rem;
    text-shadow: 1px 1px #000000;
}

#accordion h2 a {
    font-size: 18px;
    display: block;
    padding: 9px;
    padding-left: 32px;
    margin: 0;
    color: #FFF;
    text-decoration: none;
    font-weight: normal;
}

#accordion div {
     font-size:16px;
 }
#accordion div.panel {
    background: rgba(255, 255, 255, 0.33);
}
#accordion h2.open a {
    background-position: 14px -24px;
}

#accordion h2 span.right-arrow {
    display: inline-block;
    position: relative;
    margin-right:25px
}

#accordion h2 span.right-arrow:before {
    content: '';
    display: block;
    position: absolute;
    left: 100%;
    top: 50%;
    margin-top: -10px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-right:5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #71a0d2;
}

#accordion h2.open span.right-arrow:before {
    content: '';
    display: block;
    position: absolute;
    left: 100%;
    top: 50%;
    margin-right:10px;
    margin-top: -5px;
    width: 0;
    height: 0;
    border-left:5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #71a0d2;
}

#accordion div.accordion-card {
    margin-bottom: 0;
    margin-top: 0;

    padding-right: 1.1538461538rem;
}

#accordion div.accordion-card-bg-light {
    background: #212c3c;
}

#accordion div.accordion-card-bg-dark {
    background-color: transparent;
}

#accordion div.accordion-show-border {
    border: 2px solid gray;
    max-width: 800px;
}

#accordion div.accordion-card-bg-light {
    background: rgba(27, 39, 53, 0.8);
}

#accordion div.accordion-card-bg-dark {
    background: #212c3c;
}

#accordion h2.accordion-card-header {
    padding-bottom: 5px;
    padding-top: 5px;
    margin-bottom: 0;
    margin-top: 0;
}

#accordion div.accordion-card-body {
    margin-left: 57px !important;
}

#accordion p.accordion-card-body-content {
    margin-bottom: 0;
    padding-bottom: 1.4rem;
}

#accordion hr.accordion-card-hr {
    background-color: gray;
    height: 5px;
    margin-top: 0px;
}

@media screen and (max-width: 1024px) {
    /* Specific to this particular image */
    img.bg {
        left: 50%;
        margin-left: -512px; /* 50% */
    }

    .cookie-consent-banner {
        display: block;
        padding: 22px 24px;
    }
    .cookie-consent-btn {
        margin-top: 20px;
    }
}
@media screen and (min-width: 1024px) {
    .cookie-consent-banner {
        display: flex;
        padding: 10px 24px;
    }
    .cookie-consent-text {
        margin-right: 20px;
    }
}

@media screen and (max-width: 1920px) {
    #accordion div.accordion-show-border {
        border: 1px solid gray;
    }

    #accordion hr.accordion-card-hr {
        height: 4px;
    }
}

@-webkit-keyframes fade-in {
    0% {opacity: 0}
    50% {opacity: 0.5}
    100%{opacity: 1}
}

@-moz-keyframes fade-in {
    0% {opacity: 0}
    50% {opacity: 0.5}
    100%{opacity: 1}
}

@keyframes fade-in {
    0% {opacity: 0}
    50% {opacity: 0.5}
    100%{opacity: 1}
}

@-webkit-keyframes scale-up-ver-center {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        opacity:0;
    }

    50% {
        -webkit-transform: scaleY(0.5);
        transform: scaleY(0.5);
        opacity:0;
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        opacity:1;
    }
}

@keyframes scale-up-ver-center {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        opacity:0;
    }

    50% {
        -webkit-transform: scaleY(0.5);
        transform: scaleY(0.5);
        opacity:0;
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        opacity:1;
    }
}

.scale-up-ver-center {
    animation: scale-up-ver-center 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
}

.animate {
    -webkit-animation: fade-in 0.5s;
    animation: fade-in 0.5s;
    -moz-animation: fade-in 0.5s;
}

.delayed-animate{
    -webkit-animation: fade-in 0.5s;
    animation: fade-in 0.5s;
    -moz-animation: fade-in 0.5s;
    animation-fill-mode: forwards;
    animation-delay: 0.4s;
    -moz-animation-delay: 0.4s; /* Firefox */
    -webkit-animation-delay: 0.4s; /* Safari and Chrome */
    -o-animation-delay: 0.4s; /* Opera */
}

.modal-banner{
    height: auto;
    position: fixed;
    z-index: 9999999999;
    x: 0;
    y: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
}
.cookie-consent-banner {
    display: none;
    width: 414px;
    height: 150px;
    padding: 24px;
    background: #202A37;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    position: fixed;
    top: 50%;
    left: 50%;
    overflow: hidden;
    margin-left: -207px;
    margin-top: -75px;
}

.cookie-warning{
    background-color: #212C3C;
    border-top: solid 4px #D2C858;
    border-bottom: solid 1px #939393;
    border-right: solid 1px #939393;
    border-left: solid 1px #939393;
    padding: 10px 10px 10px 60px;
    position: fixed;
    max-width: 430px;
    height: 100px;
    top: 50%;
    left: 50%;
    overflow: hidden;
    margin-left: -215px;
    margin-top: -50px;
    display: none;
}

.exclamationCustom{
    color: #D2C858;
    margin-left: -40px;
    font-size: 1.4em;
    cursor: default;
}

.cookie-warning-text{
    font-family: Proxima-Regular, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

.btn-container {
    margin-top: 24px;
    display: flex;
}
button {
    width: 50%;
    padding: 0.75rem 1rem;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    letter-spacing: 0.1em;
}

.secondary-btn {
    font-family: Proxima-Regular;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 15px;/
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    background-color: transparent;
    border: 1px solid white;
    padding: 0.75rem 1rem;
    width: 50%;
    color: #ffffff;
    position: relative;
    cursor: pointer;
    margin-right: 20px;
}

.secondary-btn:hover {
    background-color: #182130;
    border: 1px solid transparent;
}
.cookie-consent-text{

    font-family: Proxima-Regular, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

a.logo-link.anchor-disabled {
    pointer-events: none;
    cursor: default;
}

.cookie-info-wrapper{
    height: inherit;
    opacity: 1;
    opacity: -webkit-calc(1 - 1);
}

@-moz-document url-prefix(){
    .cookie-info-wrapper {
        opacity: 0;
    }
}

.cookie-info {
    margin: 0 auto;
    max-width: 700px;
    height: 100%;
    display: none;
    z-index: 10000000;
    overflow: hidden;
    padding: 24px 6px 24px 24px;
    background: #202A37;
    border: 1px solid #FFFFFF;
    position: relative;
}

.cookie-details{
    height: calc(100% - 120px);
    height: -webkit-calc(100% - 120px);
    height: -moz-calc(100% - 120px);
    overflow: auto;
    padding-right: 18px;
}

.cookie-details p{
    font-family: Proxima-Regular, Arial, sans-serif;;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

.cookie-details h3{
    font-weight: bold;
}

.cookie-details::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #75A6D4;
}

.cookie-details-btn{
    width: 100%;
    margin-top: 20px;
    bottom: 0;
    text-align: center;
    min-height: 60px;
    max-height: 60px;
    position: absolute;
    padding-right: 24px;
}

.cookie-details-btn button{
    width: 30%;
    max-width: 180px;
}

.walkme-main-toggle {
     position: fixed;
     bottom: 0px;
     right: 50px;
     height: 50px;
     z-index: 9999999;
     -webkit-backface-visibility: hidden;
     -webkit-transform: translateZ(0);
}