/* detect browser START */
.detect-browser-container {
    background-color: #fdc300;
    color: #000000;
    padding: 5px 20px;
    font-size: 12px;
    line-height: 1.2em;
    text-align: center;
    display: none;
    z-index: 999;
}

.detect-browser-container-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.detect-browser-close-button {
    font-size: 16px;
    font-weight: 100;
    line-height: 1;
    position: absolute;
    font-family: helvetica, arial, verdana, sans-serif;
    top: 0;
    right: 0;
    padding: 5px 10px;
    text-decoration: none;
    color: #000000;
}
/* detect browser END*/

/* portal START */
.wpthemeControl{
    margin: 0;
}
.layoutRow {
    width: 100%;
}
.wpToolbarActionBar {
    z-index: 50;
}
.wpthemeOverflowAuto {
    overflow: initial;
}
.wpthemeLayoutContainers {
    padding: inherit;
}
.wpthemeCol {
    margin-left: inherit;
}
.dlr a {
    color: inherit;
}

.dlr .navigation.is-open{
    /*min-width: 50vw; */
}

.dlr .scroll-it{
	font-size: 16px;
}

/* portal END*/

/* spinner START */
.spinner {
    margin: 100px auto 0;
    width: 70px;
    text-align: center;
}

.spinner > div {
    width: 18px;
    height: 18px;
    background-color: #004899;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}
/* spinner END */