button.close {
	display: inline-block;
	cursor: pointer;
	min-height: 20px;
	padding: 10px 30px;
	text-transform: uppercase;
	color: #ccc;
	text-align: center;
	box-sizing: border-box;
	margin: 5px 0;
	background: none;
	border: 0;
	font-size: 28px;
	font-weight: 700;
}

.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1102;
    display: none;
    overflow: hidden;
	outline: 0;
}

.modal > * {
	height: initial;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

.modal {
    padding-right: 0px !important;
}
.modal-content {
    border-radius: 5px;
}
.cookie-text{
    color: #fff;
font-size: 15px;
font-weight: 600;
}

.form-group.loghome {
    margin-right: 0;
    margin-left: 0;
	margin-bottom: 15px;
	grid-template-columns: none;
}
.loghome .form-control {
    border-radius: 2px;
}
.append-icon, .prepend-icon {
    top: 0;
    left: 0;
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 100%;
}
.append-icon .field-icon, .prepend-icon .field-icon {
    top: 0;
    z-index: 4;
    width: 40px;
    height: 34px;
    color: #333;
    line-height: 34px;
    position: absolute;
    text-align: center;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    pointer-events: none;
}
.prepend-icon > input, .prepend-icon > textarea {
    padding-left: 36px;
}
.modal-footer {
    padding: 15px;
    font-weight: 400;
    font-size: 14px;
	border-top: 1px solid rgba(255,255,255, 0.06);
	margin-top: 10px;
}
.modal-footer>* {
    margin: 0;
}

.form-group label {
    margin-bottom: 0;
}
label .field-icon i {
     font-size: 14px;
}
.modal p {
    font-size: 12px;
    font-weight: 400;
    margin: 10px 0 0;
    color: #ccc;
}

@media screen and (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    z-index: 1102;
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2));
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #272c30;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	background-color: #000;
	z-index: 1101;
	display: none;
	height: initial;
}

.modal-backdrop.ligthview {
	z-index: 1101;
}

.modal-backdrop.confirm {
	z-index: 1102;
}

.modal-backdrop.message {
	z-index: 1103;
}


.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
	opacity: 0.5;
	display: block;
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255, 0.06);
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
	height: initial;
}

.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}

.modal-title {
    margin-bottom: 0;
    margin-top: 0;
    line-height: 2;
}
.modal-title h2 {
    margin: 0;
}
.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
	padding: 1.5rem;
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
}

.modal-footer> :not(:first-child) {
    margin-left: .25rem;
}

.modal-footer> :not(:last-child) {
    margin-right: .25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

.modal-primary .modal-content {
    border-color: #8897AA;
}

.modal-primary .modal-header {
    color: #fff;
    background-color: #8897AA;
}

.modal-secondary .modal-content {
    border-color: #c8ced3;
}

.modal-secondary .modal-header {
    color: #fff;
    background-color: #c8ced3;
}

.modal-success .modal-content {
    border-color: #4dbd74;
}

.modal-success .modal-header {
    color: #fff;
    background-color: #4dbd74;
}

.modal-info .modal-content {
    border-color: #6460ab;
}

.modal-info .modal-header {
    color: #fff;
    background-color: #6460ab;
}

.modal-warning .modal-content {
    border-color: #ffc107;
}

.modal-warning .modal-header {
    color: #fff;
    background-color: #ffc107;
}

.modal-danger .modal-content {
    border-color: #f86c6b;
}

.modal-danger .modal-header {
    color: #fff;
    background-color: #f86c6b;
}

.modal-light .modal-content {
    border-color: #f0f3f5;
}

.modal-light .modal-header {
    color: #fff;
    background-color: #f0f3f5;
}

.modal-dark .modal-content {
    border-color: #2f353a;
}

.modal-dark .modal-header {
    color: #fff;
    background-color: #2f353a;
}

.lightview-responsive {
	max-height: 85vh;
	overflow: auto;
}

.modal.ligthview {
	z-index: 1102;
}

.modal.confirm {
	z-index: 1103;
}

.modal.message {
	z-index: 1104;
}

.modal-body-scroll {
	max-height: calc(100vh - 280px);
	overflow: auto;
}

.modal-content .modal-body div .modal-footer {
	margin-left: -15px;
	margin-right: -15px;
}

.modal.show {
	display: block;
}

.modal-full {
	max-width: 100%;
	max-height: 100%;
	margin: unset;
}

.modal-full .lightview-responsive {
	max-height: 100vh;
	height: 100%;
}

.modal-full .modal-body-scroll {
	max-height: calc(100vh - 180px);
	min-height: calc(100vh - 180px);
}

.modal-full .modal-body-full {
	max-height: calc(100vh - 105px);
	min-height: calc(100vh - 105px);
}

.modal-full .modal-content {
	height: 100vh;
	width: 100vw;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
    .modal-dialog-centered {
        min-height: calc(100% - (1.75rem * 2));
    }
    .modal-sm {
        max-width: 320px;
	}

	.modal-full.modal-dialog{
		max-width: 100vw;
		margin: unset;
	}
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px;
	}

	.modal-xl {
        max-width: 900px;
	}

	.modal-full.modal-dialog{
		max-width: 100vw;
		margin: unset;
	}
}

@media (min-width: 1199.99px) {
    .modal-lg {
        max-width: 1140px;
	}

	.modal-xl {
        max-width: 1340px;
	}

	.modal-full.modal-dialog{
		max-width: 100vw;
		margin: unset;
	}
}

.modal {
	color: #ccc;
}
