* {
    box-sizing: border-box;
}

.btn-start {
    background-color: white;
    color: #4b60be;
    border: 2px solid #4b60be;
    border-radius: 15px;
    margin: 15px auto;
    display: block;
    width: 10rem;
    height: 2rem;
}

.container {
    border: 5px solid #55a2a7;
    margin: 10px auto;
    background-image: url(./Images/Christmas-Calendar.jpg);
    background-size: cover;
    box-shadow: 6px 6px 20px dimgray;
    display: grid;
    grid-template-columns: repeat(4, 25%);
    grid-template-rows: repeat(6, 1fr);
    grid-template-areas:
        "door9 door6 door11 door7"
        "door3 door20 door16 door2"
        "door14 door12 door19 door15"
        "door22 door1 door5 door23"
        "door17 door10 door24 door21"
        "door8 door18 door4 door13";
    cursor: pointer;
}
.col-xs-12 {
    padding: 0px;
}
.open {
    overflow: scroll;
}

@media only screen and (min-width: 600px) {
    .container {
        width: 600px !important;
        height: 1200px !important;
    }
}

@media only screen and (max-width: 768px) {
    .container {
        width: 768px !important;
        height: 1200px !important;
    }
}
@media only screen and (max-width: 480px) {
    .container {
        width: 100% !important;
        height: 1200px !important;
        background-image: url(./Images/Christmas-Calendar-mob.jpg);
        background-color: #55a2a7;
        background-repeat: no-repeat;
        background-size: contain;
        padding: 0px;
        display: grid;
        grid-template-columns: repeat(2,50%);
        grid-template-rows: repeat(12, 1fr);
        grid-template-areas:
            "door9 door6"
            "door11 door7"
            "door3 door20"
            "door16 door2"
            "door14 door12"
            "door19 door15"
            "door22 door1"
            "door5 door23"
            "door17 door10"
            "door24 door21"
            "door8 door18"
            "door4 door13";
        cursor: pointer;
    }

  
}


@media only screen and (min-width: 992px) {
    .container {
        width: 992px !important;
        height: 1200px !important;
    }
}

@media only screen and (min-width: 1400px) {
    .container {
        width: 1400px !important;
        height: 1200px !important;
    }
}

.image {
    background-image: none;
    background-size: cover;
    background-position: center;
}

.image:disabled {
    border-color: lightcoral;
	background-color: #f117ad;
	color: lightcoral;
	cursor: default;
}

.text {
    height: 100%;
    width: 100%;
    padding: 10px;
    border: 2px solid;
    color: #e4d256;
    font-size: 25px;
    font-weight: bold;
    transition: opacity 2.5s;
}

.closed {
    text-shadow: 2px 2px 0 black, 2px -2px 0 black, -2px 2px 0 black, -2px -2px 0 black;
}



.calender-text-box {
    color: #ffffff;
    font-size: 14px;
    font-weight: normal;
    margin: 15px auto;
    text-shadow: none;
}


.container-cant-wait {
    display: flex;
    flex-direction: column;
}
.cant-wait {
    flex-grow: 1;
    text-align: center;
    color: white;
    font-size: 25px;
    font-weight: bold;
}
.cant-wait-g {
    flex-grow: 3;
}
.cant-wait-check {
    flex-grow: 1;
    text-align: center;
    color: white;
    font-size: 25px;
    font-weight: bold;
}



.modal {
    display: none;
    position: fixed;
    z-index: 1;
   /* padding: 10px 62px 0px 62px;*/
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    padding: 0 0 0 0;
    width: 100%;
    max-width: 1200px;
    background-color: #55a2a7;
    text-align: center;
    margin-top: 50px;
}
.modal-content .calender-text-box {font-size:120%;}
    .modal-content a {
        color: #b9fe11;
    }
.close {
    color: white !important;
   /* position: absolute;*/
    top: 10px;
    right: 25px;
    font-size:70px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}


/* .paragraph{
    color: white;
    font-size: large;
    padding: 10px;
    text-align: center;
    visibility: hidden;
} */