  ﻿body.modal-open {
	width: 100%;
	height: 100%;
}

a {
	text-decoration: none !important;
}

    a.btn,
    button.btn {
        font-family: "TradeGothic BoldCn 20";
        display: inline-flex;
        border-radius: 0;
        padding: 10px 40px;
        white-space: initial;
        text-decoration: none;
        text-align: center;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 0 0 0 !important;
        border: 2px solid #800000;
    }
#btnAcceptCookies.btn 
{
    font-family: "TradeGothic BoldCn 20";
    display: inline-flex;
    border-radius: 0;
    padding: 10px 20px 30px 20px;
    white-space: initial;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 0 0 !important;
    border: 2px solid #800000;
}

    a.btn-maroon,
    #btnAcceptCookies.btn-maroon {
        background: #800000;
        color: white;
    }

        a.btn-maroon:hover,
        a.btn-maroon:focus,
        #btnAcceptCookies.btn-maroon:hover,
        #btnAcceptCookies.btn-maroon:focus {
            background: transparent;
            color: #800000;
        }

table {
	table-layout: fixed;
	border-top: 4px solid #ececec;
	border-bottom: 4px solid #ececec;
}

table tr {
	border-bottom: 1px solid #bfbfbf;
}

table td {
	padding: 10px 20px 10px 0px;
	vertical-align: top;
	text-align: left;
	font-size: 16px;
	word-break: break-word;
}

/* ===== Cookie Consent Floating Banner ===================== */
#cookie-consent-banner {
	position: fixed;
	left: 10px;
	bottom: calc(87px + 2%);
	max-width: 500px;
	width: calc(100% - 20px);
	min-width: 40vw;
	display: none;
	background: #ececec;
	z-index: 10000;
	border: 2px solid maroon;
}

.cookie-container {
	padding: 20px;
}

.cookie-container p {
	font-size: 16px;
	line-height: 1.5;
	clear: both;
}

.cookie-container p:first-child {
	display: flex;
	justify-content: space-between;
}

.cookie-container a:hover,
.cookie-container a:focus {
	color: #800000;
  box-shadow: 0px 5px 0px 0px;
}
.cookie-container a {
  border-bottom: 2px solid maroon;
  transition: all .2s;
}

#cookie-consent-banner .btn,
#cookie-consent-banner #btnAcceptCookies.btn {
    margin-left: 10px;
    font-size: calc(18px);
    cursor: pointer;
    white-space: nowrap;
}

#cookieModal .btn {
	margin-right: 10px;
	margin-top: 10px;
	font-size: calc(18px);
	cursor: pointer;
	white-space: nowrap;
}

.cookie-container .options {
	margin-top: 20px;
	text-align: right;
}

#manage-cookies {
	cursor: pointer;
}

.manage-details-menu {
	display: none;
}

@media screen and (max-width: 767px) {
	#cookie-consent-banner {
		bottom: 120px;
	}

	.cookie-container p:first-child {
		flex-direction: column;
	}

	#cookie-consent-banner .btn {
		margin-left: 0;
		margin-top: 20px;
	}
}

/* ==== COOKIE TABLE CSS ================ */
.cookie-table td {
	width: 70%;
}

.cookie-table td:nth-child(2) {
	text-align: center;
	vertical-align: middle;
	color: maroon;
	width: 30%;
}

@media (min-width: 768px) {
	.modal-dialog {
		width: 750px;
		margin: 20px auto;
	}

	.modal-content {
		-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	}

	.cookie-table td {
		width: 80%;
	}

	.cookie-table td:nth-child(2) {
		width: 20%;
	}
}

/* Modal CSS ================== */
.modal-open {
	overflow: hidden !important;
}

.modal {
	position: fixed;
	top: 0px;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10500;
	display: none;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	outline: 0;
}

.modal.in .modal-dialog {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
}

.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: 10px auto;
	max-width: 800px;
}

.modal-content {
	position: relative;
	background-color: #ffffff;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: 1px solid #999999;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
	box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
	outline: 0;
	max-height: calc(100vh - 40px);
	overflow: auto;
}

.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	background-color: #000000;
}

.modal-backdrop.fade {
	filter: alpha(opacity=0);
	opacity: 0;
}

.modal-backdrop.in {
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.modal-header {
	padding: 15px;
}

.modal-header .close {
	background-image: url("https://chicagobooth.edu/assets/chicagobooth/img/close.svg");
	display: inline-block;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 20px;
	top: 20px;
	transition: transform 0.2s;
	cursor: pointer;
	z-index: 10;
}

.modal-header .close:hover {
	transform: scale(0.75);
}

.modal-title {
	padding: 0;
	padding-right: 40px;
	margin: 0;
}

.modal-header button {
	margin-top: 20px !important;
}

.modal-backdrop.show {
	opacity: 0.5;
}

.modal-body {
	position: relative;
	padding: 15px;
}

.modal-footer {
	padding: 15px;
	text-align: right;
}

.modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll;
}

.hide {
	display: none !important;
}

.show {
	display: block !important;
}

.invisible {
	visibility: hidden;
}

.text-hide {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

.hidden {
	display: none !important;
}

.hidden-preview:not(.scEnabledChrome) {
	display: none !important;
}

/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* The slider */
.switch-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #800000;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border-radius: 34px;
}

.switch-slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border-radius: 50%;
}

input:checked + .switch-slider {
	background-color: #ccc;
}

input:focus + .switch-slider {
	box-shadow: 0 0 1px #800000;
	outline: 1px solid #6b6b6b;
	outline-offset: 5px;
}

input:checked + .switch-slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}