*{
    box-sizing: border-box;
}

:root{
    --gray-color:#626262;
    --black-color:#232323;
    --light-gray-color:#A8A8A8;
    --font-family:'Karla', sans-serif;
    --font-size-55: 55px;
    --font-size-24: 28px;
    --font-size-16: 16px;
    --font-size-18: 18px;
    --font-size-20: 20px;
    --font-size-14: 14px;
    --line-height-66:66px;
    --line-height-33:33px;
    --line-height-22:22px;
    --line-height-21:21px;
    --line-height-23:23px;
    --line-height-15:15px;
    --line-height-18:18px;
    --line-height-16:16px;

}

::placeholder{
    font-family: var(--font-family);
    color: var(--light-gray-color);
}
::-moz-placeholder{
    font-family: var(--font-family);
    color: var(--light-gray-color);
}
::-webkit-input-placeholder{
    font-family: var(--font-family);
    color: var(--light-gray-color);
}
body{
    margin: 0;
    font-family: var(--font-family);
}

body img {
    width: 100%;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body p{
    margin: 10px 0;
    color: var(--black-color);
}

body h1 {
    font-size: var(--font-size-55);
    line-height: var(--line-height-66);
    font-weight: 400;
}

body h2 {
    font-size: var(--font-size-24);
    line-height: var(--line-height-33);
    font-weight: 400;
}

body h3 {
    font-size: var(--font-size-20);
    line-height: var(--line-height-23);
    font-weight: 500;
}

body h4 {
    font-size: var(--font-size-16);
    line-height: var(--line-height-18);
    font-weight: 400;
    color: var(--gray-color);
}

body h5{
    font-size: var(--font-size-18);
    line-height: var(--line-height-21);
    font-weight: 400; 
}

body p {
    font-weight: 300;
    font-size: var(--font-size-16);
    line-height: var(--line-height-22);
    color: var(--gray-color);
}

body a{
    text-decoration: none;
    display: inline-block;
}

body input,body textarea{
        -webkit-appearance:none;
        -moz-appearance:none;
        appearance:none;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        outline: none;
        -moz-outline:none;
        -webkit-outline:none;
}

.siteContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.card-body label.error {
    -webkit-box-ordinal-group:4;
    -ms-flex-order:3;
        order:3;
    width: 100%;
    color: red;
    margin-top: 5px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

/*--------------------- Button css ----------------------*/
.btnTheme {
    padding: 13px 30px;
    font-weight: 400;
    font-size: var(--font-size-14);
    line-height: var(--line-height-16);
    text-transform: uppercase;
    border: solid 1px transparent;
}

.bthnThemeBlackText {
    color: var(--black-color);
}

.bthnThemeBlackBorder {
    border-color: var(--black-color);
}

/*---------------------- Loader Css Start ----------------------------*/
.class_loader {
	background: url("/configurator/assets/images/oval-loader-white.svg") rgba(0, 0, 0, 0.1);
	color: #000000;
	cursor: pointer;
	font-weight: bold;
	height: 40px;
	padding-bottom: 2px;
	border: none;
	background-repeat: no-repeat;
	display: none;
	text-decoration: none;
	overflow: hidden;
	font-size: 0px;
	background-size: 35px;
	position: fixed;
	z-index: 99;
	width: 100%;
	top: 0;
	left: 0;
	background-position: center;
	height: 100%;
}
.error
{
    color :red !important;
}

