/* Colors */

:root {
    --primary: #43afff;
    --secondary: #f18d31;
    --gray: #f8f8f8;
    --gray-text: #9b9797;
    --gray-disabled: rgba(229, 229, 229, 0.45);
    --black: #111111;
    --white: #fffdfd;
    --blue-header: #1b6ca8;
}


/* Fonts */


/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap'); */


/* General */

body,
html {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
}

ul,
li {
    margin: 0;
    padding: 0;
}

input,
select {
    height: 57px;
    border-radius: 30px;
    border: solid 2px #e8e8e8;
    background-color: var(--gray);
    width: 300px;
    display: block;
    box-sizing: border-box;
    padding-left: 30px;
    font-size: 14px;
    margin-bottom: 15px!important;
}
.btn{
        background-color: #ffd31d;
        color: var(--black);
        padding: 18px 68px;
        border-radius:30px;
        display: flex;
        align-items: center;
        width: 300px;
        border:none;
	    justify-content: center;
    }
.btn img{
    margin-left: 10px;
}
.h2{
    font-size: 32px;
    line-height: 1.09;
    letter-spacing: 1.6px;
    margin-top: 10px;
    margin-bottom: 0px;
}
.h4{
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: normal;
}
.semi-bold{
    font-weight: 500;
}
.bold{
    font-weight: bold;
}
/*----Calendar----*/

.fc-prev-button.fc-button.fc-button-primary, .fc-next-button.fc-button.fc-button-primary {
	background: var(--primary);
	border: none;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	padding: 0;
}

.fc-center {
    text-align: center;
}

.fc-center h2 {
    font-size: 16px;
    font-weight: 500;
}

.fc-today-button.fc-button.fc-button-primary {
	background: none;
	border: none;
	color: #000;
	font-size: 16px!important;
    font-weight: 500;
    opacity: 1;
}

.fc-prev-button.fc-button.fc-button-primary:active:focus, .fc-next-button.fc-button.fc-button-primary:active:focus {
    box-shadow: none;
}

.fc-day-header.fc-widget-header {
	font-size: 14px;
	font-weight: normal;
	padding: 12px 0;
}

.fc-ltr .fc-axis {
    text-align: center;
    font-size: 14px;
}

.fc-toolbar{
    justify-content: space-around!important;
}
.fc-time-grid-event.fc-event.fc-start.fc-end {
    border-radius: 0;
    background-color: #99f457;
    border: none;
    color: #000;
    font-size: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-time-grid-event .fc-time {
    display: none !important;
}
.fc-time-grid-event.fc-short .fc-title {
	font-size: 10px;
}
@media screen and (max-width: 600px) {
    .step{
        font-size: 14px;
    }
    .fc-toolbar h2{
        font-size: 16px!important;
    }
}