/**
 * UTP One Docs Styles
 */
body {
	position: relative;
}
.docs-section {
	padding-top: 5px;
	position: relative;
}
.docs-section + .docs-section {
	margin-top: 15px;
	padding-top: 25px;
}
.docs-section + .docs-section:before {
	content: '';
	display: block;
	height: 1px;
	background-color: var(--light-gray-500);
	position: absolute;
	top: 0;
	left: -15px;
	right: -15px;
}
.docs-heading {
	margin-bottom: 15px;
}
.docs-title {
	margin: 0;
	font-size: 15px;
	font-weight: 400;
}
.docs-description {
	margin: 0;
	padding-top: 8px;
	padding-right: 85px;
}
.docs-content {
	position: relative;
}
.docs-actions {
	position: absolute;
	right: 0;
	bottom: 100%;
	margin-bottom: 2px;
}
.docs-actions > .btn {
	padding: 4px 7px;
	background-color: var(--light-gray-200);
	color: var(--blue);
}
.docs-actions > .btn:hover {
	padding: 4px 7px;
	background-color: var(--light-gray-400);
	color: var(--accent-orange);
}
.docs-markup {
	padding-bottom: 15px;
}
.docs-markup > .form-group:last-child {
	margin-bottom: 0;
}
.docs-markup .utp-cards {
	padding-left: 0;
	padding-right: 0;
}
.docs-footer {
	text-align: right;
}
.docs-modal-buttons .btn {
	margin: 0 5px 10px 0;
}
.docs-form-control-regular > .form-control + .form-control {
	margin-top: 15px;
}

/* Modals */
.modal.fade.zoom-out .modal-dialog,
.modal.zoom-out .modal-dialog {
	opacity: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.modal.fade.zoom-out.in .modal-dialog {
	opacity: 1;
	transform: scale(1);
}
.modal-copied {
	z-index: 1051;
}
.modal-copied .modal-dialog {
	position: absolute;
	width: 150px;
	top: 50%;
	left: 50%;
	margin-top: -40px;
	margin-left: -75px;
	-webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
			box-shadow: 0 3px 9px rgba(0,0,0,.5);
}
.modal-copied .modal-dialog {
	background-color: #fff;
	text-align: center;
}
.modal-copied .modal-title {
	padding: 10px;
	font-size: 16px;
}
.modal-backdrop.in ~ .modal-backdrop.in {
	display: none !important;
}

/* Code */
.docs-code {
	position: relative;
	background-color: transparent;
	border: 0;
	padding: 0;
	margin: 0;
}
.docs-code code {
	padding: 0;
	background-color: transparent;
	white-space: pre;
}
.docs-code > .btn {
	opacity: 1;
	border-radius: 0 0 0 3px;
	background-color: #1e8cbe;
	color: #fff;
	padding: 2px 6px;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}
.docs-code > .btn:hover {
	background-color: #ccc;
	color: #1e8cbe;
}

/**
 * Selection
 * =========================================== */
.docs-code ::selection {
	background: var(--light-gray-600);
	color: var(--dark-gray-900);
	text-shadow: none;
}
.docs-code ::-moz-selection {
	background: var(--light-gray-600);
	color: var(--dark-gray-900);
	text-shadow: none;
}


.docs-modal-example .modal {
	position: relative;
	z-index: 1;
	opacity: 1;
	display: block;
}
.docs-modal-example .modal-dialog {
	transform: none !important;
	margin-top: 10px;
	margin-bottom: 15px;
}

/* Colors */
.docs-background-colors > div {
	padding: 15px;
}
.docs-border-colors > div {
	padding: 15px;
	border: 2px solid transparent;
}
.docs-border-colors > div + div {
	margin-top: 5px;
}


/* Sidebar */
.sidebar-right-sticky {
	position: sticky;
	top: 57px;
}
.widget-menu-scroll li:not(.active) a:focus {
	outline: none;
	background-color: transparent;
	color: var(--dark-gray-900);
}
.widget-menu-scroll li a:hover {
	color: currentColor;
}

/*
code {
	font-size: 100%;
}*/
.component-group {
	margin-bottom: 90px;
}
.component-group-header {
	padding: 20px 0 10px;
	margin: 0;
}
.component-group-subheader {
	padding: 20px 0 10px;
	margin: 0;
}
.component-group-desc {
	margin-top: 25px;
}
.component-group-header + .component-group-desc,
.component-group-subheader + .component-group-desc {
	margin-top: 0;
}
.component-group-separator {
	margin-top: 25px;
	margin-bottom: 25px;
	height: 1px;
	background-color: #f1f1f1;
}
.component-colors {
	display: flex;
	flex-wrap: wrap;
}
.component-color-item {
	width: 32%;
	margin-right: 1%;
	height: 100px;
	padding: 10px 15px;
	border-radius: 2px;
}
.component-color-separator {
	width: 100%;
	margin-bottom: 10px;
}
.component-color-item .name {
	text-transform: uppercase;
	letter-spacing: 1px;
}
.bg-blue {
	background-color: #0073aa;
	color: #fff;
}
.bg-medium-blue {
	background-color: #00a0d2;
	color: #fff;
}
.bg-ultra-dark-gray {
	background-color: #191e23;
	color: #fff;
}
.bg-base-gray {
	background-color: #32373c;
	color: #fff;
}
.bg-dark-gray-200 {
	background-color: #7e8993;
	color: #fff;
}
.bg-light-gray-200 {
	background-color: #f3f4f5;
}

/* Preloader */
.docs-remove-preloader {
	position: fixed;
	top: 15px;
	right: 15px;
	z-index: 103;
	min-width: 150px;
}
.docs-add-preloader {
	position: fixed;
	top: 60px;
	right: 15px;
	z-index: 103;
	min-width: 150px;
}
.docs-remove-preloader:active,
.docs-add-preloader:active {
	bottom: auto;
}
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.docs-content .table-countries img {
	height: 24px;
	margin: -5px auto;
}
