@font-face {
    font-family: geometria;
    src: url(../../fonts/Geometria.ttf);
}
@font-face {
    font-family: galano;
    src: url(../../fonts/Galano-Grotesque.otf);
}
@font-face {
    font-family: galano-bold;
    src: url(../../fonts/Galano-Grotesque-Bold.otf);
}
@font-face {
    font-family: galano-medium;
    src: url(../../fonts/Galano-Grotesque-Medium.otf);
}

html,
body {
    overflow: hidden;
}

body {
    background-color: black;
    height: 100vh;
    font-family: geometria;
}

header {
    z-index: 1;
}

/* main background for create page  */
.main-create {
    /* background-image: url(../../images/top-background.png),
        url(../../images/bottom-background.png); */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top -140px center, bottom -130px center;
}

/* not-found page start */
.not-found-img {
    width: 50%;
}

.error-title {
    color: #5cb8b2;
}

.error-msg {
    color: #686868;
}

/* not-found page end */

/* for set display non to any tag div,buttpn,p ...etc.. */
.displayNone {
    display: none;
}

/* title of museum  */
.main-title {
    color: #ffa300;
    font-weight: bold;
    max-width: 200px;
    letter-spacing: 3.6px;
}

/* timer title  */
.time-title {
    color: #ebebeb;
    font-weight: 600;
    letter-spacing: 1.4px;
}

/* common pink button css  */
.next-btn {
    background-color: #00779B;
    border-radius: 5px;
    height: 50px;
    width: 240px;
    color: #ffffff;
    display: flex;
}

.next-btn:focus {
    box-shadow: none;
}

.next-btn:disabled {
    background-color: #5c5c5c;
}

.next-btn:hover {
    color: #ffffff;
}

.modal-backdrop.show {
    display: none;
}

.dt-row {
    overflow: auto;
    width: 100%;
    max-height: calc(100vh - 310px);
    margin: 20px 0;
}

.dataTables_length label {
    width: 180px;
    display: flex;
    align-items: center;
}

.dataTables_length label .form-select {
    margin: 0 10px;
}

.pagination {
    justify-content: flex-end;
}

footer {
    margin-top: auto;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    background-color: transparent;
}

.footer-right {
    position: relative;
    padding-left: 20px;
    margin-top: -10px;
}

.footer-right::before {
    position: absolute;
    content: "";
    border-left: 1px solid #ffffff33;
    height: 60%;
    left: 10px;
    top: 15px;
    width: 1px;
}

.footer p {
    color: #a5a5a5;
    font-size: 7px;
    text-align: left;
}

.footer a {
    color: #a5a5a5;
}

.check-subscribe {
    color: #868686;
    font-size: 12px;
    position: relative;
}

.check-subscribe label {
    padding: 0 0 0 20px;
}

.check-subscribe .checkmark {
    background-color: #000000;
}

.check-subscribe input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #000;
    border: 1px solid #707070;
    border-radius: 3px;
}

/* When the checkbox is checked, add a blue background */
.check-subscribe input:checked ~ .checkmark {
    background-color: #73cac7;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-subscribe input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-subscribe .checkmark:after {
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
