.calculator {
    width: 100%;
    padding-top: 230px;
    padding-bottom: 120px;
	background: url(/assets/images/1bgimg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.calc-card {
    max-width: 650px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.calc-card-header,
.calc-card-body {
    text-align: center;
}

.calc-card-body {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
}

.calc-card-header h1 {
    font-family: 'Oswald-Medium', sans-serif;
    font-size: 36px;
    color: #181818;
    line-height: 1.31em;
    margin-bottom: 0 !important;
}

.calc-card-body h2 {
    font-family: 'Oswald-Medium', sans-serif;
    font-size: 24px;
    color: #181818;
    line-height: 1.31em;
}

.period-picker-v-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.radio-button {
    display: block;
    position: relative;
    z-index: 1;
    cursor: pointer;
    font-size: 15px;
    color: #ffffff;
    font-family: 'Raleway-Medium', sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 24%;
    padding: 10px 0;
    text-align: center;
    margin: 0;
    z-index: 0;
}

.radio-button-size {
    width: 32.5%;
}

/* Hide the browser's default radio button */
.radio-button input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    width: 100%;
    background-color: rgba(235, 105, 6, 0.5);
    z-index: -1;
}

/* On mouse-over, add a grey background color */
.radio-button:hover input~.checkmark {
    background-color: rgba(235, 105, 6, 0.8);
}

/* When the radio button is checked, add a blue background */
.radio-button input:checked~.checkmark {
    background-color: rgba(235, 105, 6, 1);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-button input:checked~.checkmark:after {
    display: block;
}

.room-image {
    width: 208px;
    height: 208px;
    position: relative;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(235, 105, 6, 1);
    background: #ffffff;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
}

.room-image img {
    max-width: 125px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}


.calc-card-body h3 {
    font-family: 'Oswald-Medium', sans-serif;
    font-size: 18px;
    color: #181818;
    line-height: 1.31em;
}

.calc-card-body h4 {
    font-family: 'Oswald-Bold', sans-serif;
    font-size: 20px;
    color: #181818;
    line-height: 1.31em;
}

.calc-card-body h5 {
    font-family: 'Oswald-Bold', sans-serif;
    font-size: 22px;
    color: #181818;
    line-height: 1.31em;
}

.calc-card-body h5 b {
    color: #ffa700;
}

.calc-card-body h6 {
    font-family: 'Oswald-Bold', sans-serif;
    font-size: 20px;
    color: #eb5757;
    line-height: 1.31em;
}

.calc-card-body button {
    background: rgba(235, 105, 6, 1);
    border: 1px solid rgba(235, 105, 6, 1);
    color: #ffffff;
    font-size: 15px;
    color: #ffffff;
    font-family: 'Raleway-Medium', sans-serif;
    line-height: 1.875em;
    margin-top: 20px;
}

.calculator-left-side .period-picker-v-1 {
	flex-wrap: wrap;
}

.calculator-left-side .period-picker-v-1 label {
	margin-bottom: 3px;
	width: 24%;
}

.calculator-left-side,
.calculator-left-right {
	width: 48%;
}

@media only screen and (max-width: 1024px) {
    .calculator {
        padding-top: 120px;
    }
}

@media only screen and (max-width: 600px) {
    .calc-card-body {
        flex-direction: column;
    }


    .calc-card-header hr {
        display: none;
    }

    .calculator {
        padding-top: 50px;
    }

    .calc-card {
        max-width: 320px;
    }
	.calculator-left-side, .calculator-left-right {
   		 width: 100%;
	}
}

@media only screen and (max-width: 320px) {
    .calc-card {
        max-width: 300px;
    }
}