.custom-banner-container {
    margin: 0 auto;
    padding: 10px 25px;
}

.custom-banner-container > p {
    font-size: 16px;
    text-align: center;
    margin: 0;
}

.custom-banner-container > p > a {
    margin: 0 10px;
    font-size: 16px;
    text-decoration: underline;
}

.custom-pop-in-wrapper {
    display: none;
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.7);
	z-index: 18000;
}

.custom-pop-in-wrapper.active {
    display: block;
}

.custom-pop-in-container {
    position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

button.custom-pop-in-close,
button.custom-pop-in-close:hover,
button.custom-pop-in-close:focus,
button.custom-pop-in-close:active {
    position: absolute;
	top: 0;
	right: 0;
	background: none;
	border: none;
	font-size: 32px;
	color: red;
	font-weight: bold;
	line-height: 30px;
}

.custom-pop-in-image {
    max-width: 100vw;
	max-height: 100vh;
}

.custom-slide-in-wrapper {
    position:fixed;
    bottom:0;
    left:0;
    z-index:500;
    height: 270px;
    box-shadow:2px 2px 5px #000;
}

.custom-slide-in-container {
    position:absolute;
    top:0;
    left: 42px;
    height: 270px;
    width: 436px;
    background-size:cover;
    background-position:center;
    transition:left 1s;
    cursor:pointer;
    box-shadow:2px 2px 5px #000;
}

button.custom-slide-in-button,
button.custom-slide-in-button:focus,
button.custom-slide-in-button:hover,
button.custom-slide-in-button:active {
    position:relative;
    top:0;
    left:0;
    z-index:2;
    height: 270px;
    width: 42px;
    border:none;
    background-color:#68762b;
    color:#fff;
    cursor:pointer;
    border-radius: 0;
    outline: none;
}

/* .custom-slide-in-button:focus {
    outline: none !important;
} */

.custom-slide-in-chevron {
    position:absolute;
    top:50%;
    left:50%;
    height:40px;
    width:40px;
    transform:translate(-50%, -50%) rotate(180deg);
    font-size:32px;
    transition: transform 1s;
}

.custom-slide-in-wrapper.closed .custom-slide-in-chevron {
    transform:translate(-50%, -50%) rotate(0deg);
}

.custom-slide-in-wrapper.closed .custom-slide-in-container {
    left: -500px;
}

.custom-slide-in-anchor {
    height: 100%;
    width: 100%;
    display: block;
}

.custom-bottom-banner-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 60px;
    z-index: 1000;
}

.custom-bottom-banner-wrapper a {
    text-decoration: none;
}

.custom-bottom-banner-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.custom-bottom-banner-links-container {
    height: 100%;
    width: 66%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.flex-col-center {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.custom-bottom-banner-icon {
    max-height: 20px;
    max-width: 20px;
    margin: 5px 0 0 0;
}

.custom-bottom-banner-btn {
    height: 100%;
    border: none;
    width: 34%;
}

@media only screen and (max-width:550px) and (orientation: portrait) {
    .custom-slide-in-wrapper {
        height:calc(0.6 * (100vw - 50px));
        bottom:calc((100vh - (0.6 * (100vw - 50px))) / 2);
    }

    .custom-slide-in-container {
        width:calc(100vw - 50px);
        height:calc(0.6 * (100vw - 50px));
    }

    .custom-slide-in-button {
        height:calc(0.6 * (100vw - 50px));
    }

    .custom-slide-in-wrapper.closed .custom-slide-in-container {
        left: calc(50px - 100vw);
    }
}

@media only screen and (max-height:550px) and (orientation: landscape) {
    .custom-slide-in-wrapper {
        height: 150px;
    }

    .custom-slide-in-container {
        width: 250px;
        height: 150px;
    }

    .custom-slide-in-button {
        height: 150px;
    }

    .custom-slide-in-wrapper.closed .custom-slide-in-container {
        left: -250px;
    }
}
