html,body {height: 100%;}
body {padding: 0px; margin:0px; background:url(../img/image.jpg) ; background-position: center; background-size: cover; background-attachment: fixed; background-repeat: no-repeat;}

.calendar-icon {
	background: #fff !important;
}
.icon-calendar { color: #273c66; font-size: 30px;}
.calendar-wrapper.active {}

.calendar-wrapper .calendar-input-holder {
    overflow: hidden;
    height: 45px;
    width: 45px;
    background: rgba(255,255,255,0);
    border-radius:6px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.calendar-wrapper.active .calendar-input-holder {
/*    border-radius: 50px;*/
    width: 210px;
    background: rgb(253 134 134 / 50%);
    -webkit-transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
}

.calendar-wrapper .calendar-input-holder .calendar-input {
		letter-spacing: 1px;
    width: 210px;
    height: 25px;
    padding:0px 70px 0 20px;
    opacity: 0;
    position: absolute;
    top:0px;
    left:0px;
    background: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border:none;
    outline:none;
    font-family:"Open Sans", Arial, Verdana;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color:#FFF;
    -webkit-transform: translate(0, 60px);
    transform: translate(0, 60px);
    -webkit-transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
		padding-left: 54px !important;
		padding-right: 10px !important;
}
.calendar-wrapper.active .calendar-input-holder .calendar-input {
    opacity: 1;
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
}

.calendar-wrapper .calendar-input-holder .calendar-icon {
    width: 45px;
    height: 45px;
    border:none;
    border-radius:6px;
    background: transparent;
    padding:0px;
    outline:none;
    position: relative;
    z-index: 2;
    float:left;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
		border: 1px solid #273c66;
}
.calendar-wrapper.active .calendar-input-holder .calendar-icon {
    width: 40px;
    height:40px;
    margin: 2px;
/*    border-radius: 30px;*/
}
.calendar-wrapper .calendar-input-holder .calendar-icon span {
/*
    width:22px;
    height:22px;
*/
    display: inline-block;
    vertical-align: middle;
    position:relative;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
    transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);

}
.calendar-wrapper.active .calendar-input-holder .calendar-icon span {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.calendar-wrapper .calendar-input-holder .calendar-icon span::before, .calendar-wrapper .calendar-input-holder .calendar-icon span::after {
/*
    position: absolute;
    content:'';
*/
}
.calendar-wrapper .calendar-input-holder .calendar-icon span::before {
/*
    width: 4px;
    height: 11px;
    left: 9px;
    top: 18px;
    border-radius: 2px;
    background: #974BE0;
*/
}
.calendar-wrapper .calendar-input-holder .calendar-icon span::after {
/*
    width: 14px;
    height: 14px;
    left: 0px;
    top: 0px;
    border-radius: 16px;
    border: 4px solid #974BE0;
*/
}

.calendar-wrapper .close {
    position: absolute;
    z-index: 1;
    top:35px;
    right:35px;
    width:25px;
    height:25px;
    cursor: pointer;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.calendar-wrapper.active .close {
    right: 10px;
    top: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.calendar-wrapper .close::before, .calendar-wrapper .close::after {
    position:absolute;
    content:'';
    background: #21a7d0;
    border-radius: 2px;
}
.calendar-wrapper .close::before {
    width: 5px;
    height: 25px;
    left: 10px;
    top: 0px;
	color: #21a7d0;	
}
/*
.calendar-wrapper .calendar-input:focus {
	background-color: #21a7d0 !important;	
}
*/
.calendar-wrapper .close::after {
    width: 25px;
    height: 5px;
    left: 0px;
    top: 10px;
	color: #21a7d0;	
}
.calendar-wrapper .result-container {
    width: 100%;
    position: absolute;
    top:80px;
    left:0px;
    text-align: center;
    font-family: "Open Sans", Arial, Verdana;
    font-size: 14px;
    display:none;
    color:#B7B7B7;
}


@media screen and (max-width: 560px) {
    .calendar-wrapper.active .calendar-input-holder {width:200px;}
}