
.elegant-calencar {
    /* max-width: 700px; */
    text-align: center;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 5px;
    -webkit-box-shadow: 0px 19px 27px -20px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 19px 27px -20px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 19px 27px -20px rgba(0, 0, 0, 0.16);
}

.wrap-header {
    position: relative;
    width: 35%;
    z-index: 0;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
	background-color: #000;
}

.calendar-wrap {
    width: 65%;
    background: #fff;
    padding: 40px 20px 20px 20px;
}

.button-wrap {
    position: relative;
    padding: 10px 0;
}

    .button-wrap .pre-button {
        left: 20px;
    }

    .button-wrap .pre-button, .button-wrap .next-button {
        cursor: pointer;
        width: 1em;
        height: 1em;
        line-height: 1em;
        border-radius: 50%;
        position: absolute;
        top: 0;
        font-size: 18px;
    }

#calendar {
    width: 100%;
}

#disabled {
    cursor: default;
    background: #fff;
}

#today {
    color: #fff;
}

tbody td {
    width: 14%;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    position: relative;
    z-index: 0;
}

table {
    border-collapse: collapse;
}

#calendar tr {
    height: 3em;
}

thead tr {
    color: #000;
    font-weight: 700;
}

tbody tr {
    color: #000;
}

.head-day {
    font-size: 9em;
    line-height: 1;
    color: #fff;
	text-shadow: 2px 2px #000;
	
	 
}

.head-month {
    font-size: 2em;
    line-height: 1;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 300;
}

#header {
    width: 100%;
    position: relative;
}

.p-0 {
    padding: 0 !important;
}

#today:after {
    background: var(--bg-third);
}

tbody td:after {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    width: 44px;
    height: 44px;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: -1;
}

#reset {
    display: block;
    position: absolute;
    right: 0.5em;
    top: 0.5em;
    z-index: 999;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0 0.5em;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 12pt;
}