:root {
	--am-green: #289c00;
    --am-red: #e43732;
    --am-grey: #a0a0a0;
    --am-grey-dark: #3f3f3f;
}

.ob-font-smallest{
	font-family: 'Tahoma';
	font-size: 10px;
}

.ob-font-smaller{
	font-family: 'Tahoma';
	font-size: 11px;
}

.ob-font-small{
	font-family: 'Tahoma';
	font-size: 13px;
}

.ob-font-normal{
	font-family: 'Tahoma';
	font-size: 15px;
}

.ob-font-big{
	font-family: 'Tahoma';
	font-size: 18px;
}

.ob-font-bigger{
	font-family: 'Tahoma';
	font-size: 19px;
}

.ob-font-h1{
	font-family: 'Tahoma';
	font-size: 42px;
}

.ob-font-grey-dark{
	color: var(--ob-grey-dark);
}

.ob-font-grey{
	color: var(--ob-grey);
}

.ob-font-grey-light{
	color: var(--ob-grey-light);
}

/* header */

header {
    width: 100%;
}
.header {
    align-items: center;
    height: 70px;
    justify-content: center;
    position: relative;
	width: 100%;
}

.header > div{
    align-items: center;
    gap: 0px 30px;
    justify-content: space-between;
	max-width: 1400px;
	width: 100%;
}

    /* logo */

    .shobsi.logo{
        align-items: center;
        gap: 0px 10px;
    }

    .shobsi.logo .text{
        width: 300px;
    }

    /* logo end */

    /* searchform */

    #shobsi-siteform{
        height: 40px;
        position: relative;
        width: 250px;
    }

    #shobsi-siteform input[type="text"]{
        border: 1px solid var(--ob-grey-light);
        border-radius: 20px;
        box-sizing: border-box;
        height: 100%;
        padding: 0px 50px 0px 20px;
        width: 100%;
    }

    #shobsi-siteform button{
        align-items: center;
        background: none;
        border: 0px;
        height: calc(100% - 10px);
        justify-content: center;
        position: absolute;
        right: 10px;
        top: 5px;
        width: 30px;
    }

    #shobsi-siteform button i{
        font-size: 16px;
    }

    /* shobsi-siteform end */

    /* shobsi-siteform-popup */

    #shobsi-siteform-popup {
        height: 60px;
        left: 50vw;
        overflow: hidden;
        position: absolute;
        top: 70px;
        transform: translateX(-50%);
        transition: .5s;
        width: 0px;
        z-index: 111;
    }
    #shobsi-siteform-popup.show {
        width: calc(100vw - 60px);
    }
    #shobsi-siteform-popup input[type=text] {
        border: 1px solid var(--ob-blue);
        box-sizing: border-box;
        color: #000;
        font-family: 'Tahoma';
        font-size: 16px;
        height: 100%;
        padding: 0 20px;
        width: calc(100% - 80px);
    }
    #shobsi-siteform-popup button {
        align-items: center;
        background: #fff;
        border: 1px solid var(--ob-blue);
        color: var(--ob-blue);
        cursor: pointer;
        height: 100%;
        justify-content: center;
        padding: 0;
        position: absolute;
        right: 0;
        top: 0;
        width: 60px;
    }
    #shobsi-siteform-popup button i.fa-search {
        color: var(--cm-orange);
        font-size: 18px;
    }
    #shobsi-siteform-popup button:hover { background: var(--ob-blue); }
    #shobsi-siteform-popup button:hover i.fa-search { color: #fff; }

    /* shobsi-siteform-popup end */

    /* search-block */

    .shobsi.search-block{
        height: 100%;
    }

    .shobsi.search-callbtn{
        align-items: center;
        background-color: var(--ob-blue);
        border: 2px solid var(--ob-blue);
        color: #ffffff;
        cursor: pointer;
        font-size: 24px;
        height: 100%;
        justify-content: center;
        transition: .2s;
        width: 60px;
    }

    .shobsi.search-callbtn:hover{
        background-color: #ffffff;
        color: var(--ob-blue);
    }

    /* search-block end */

/* header end */

/* main */

main {
    width: 100%;
}
.col-main {
	box-sizing: border-box;
	max-width: 1440px;
    padding: 0 20px;
	width: 100%;
}

/* main end */

/* footer */

footer {
    width: 100%;
}
.footer{
    width: 100%;
}

.footer > div{
    align-items: center;
    gap: 0px 40px;
    justify-content: center;
    max-width: 1400px;
    width: 100%;
}

/* footer end */

/* modal block */

.modal-block {
	background: #eee;
	border-radius: 6px;
	box-sizing: border-box;
	left: 50%;
	margin: 0 auto;
	opacity: 0;
	position: absolute;
	transform: translateX(-50%) translateY(-40px);
	transition: opacity .4s, transform .4s, visibility .4s;
	visibility: hidden;
	width: 95%;
	z-index: 25000;
}
.modal-block.visible {
	transform: translateX(-50%) translateY(0px);
	opacity: 1;
	visibility: visible;
}
.modal-block .mb-close {
	align-items: center;
    background: transparent;
    border: none;
    color: #eee;
	cursor: pointer;
	display: flex;
	height: 35px;
	justify-content: center;
	position: absolute;
	right: -28px;
	top: -28px;
	width: 35px;
	z-index: 10;
}
.modal-block .mb-close i {
	font-size: 22px;
}
.modal-block .mb-input-wrapper {
	box-sizing: border-box;
	margin: 0 0 15px 0;
	position: relative;
	width: 100%;
	z-index: 30001;
}
.modal-block input[type=text],
.modal-block textarea,
.modal-block select {
	background: #fff;
	border: 1px solid #aaa;
	border-radius: 5px;
	box-sizing: border-box;
	color: var(--am-grey-dark);
	font-family: 'Tahoma';
	font-size: 14px;
	outline: none;
	padding: 6px 12px;
	width: 100%;
}
.modal-block input[type=text],
.modal-block select { height: 36px; }
.modal-block textarea { height: 175px; resize: none; }
.modal-block .form-submit {
	background: #d9d9d9;
	border: 1px solid #aaa;
	border-radius: 5px;
	clear: both;
	color: var(--am-grey-dark);
	cursor: pointer;
	display: block;
	font-family: 'Tahoma';
	font-size: 14px;
	height: 40px;
	margin: 15px auto;
	overflow: hidden;
	position: relative;
	text-align: center;
	transition: .3s;
	width: 100%;
	z-index: 1;
}
.modal-block .form-submit:hover {
	background: #aaa;
	color: #fff;
}
.modal-block .form-submit.success {
	cursor: default;
	pointer-events: none;
}
.modal-block .form-submit::after {
	align-items: center;
	background-color: var(--am-green);
	color: #fff;
	content: attr(data-success);
	display: flex;
	font-family: inherit;
	font-size: inherit;
	height: 100%;
	justify-content: center;
	left: 0;
	position: absolute;
	top: -100%;
	transition: 0.3s cubic-bezier(0.42, 0, 0.58, 1);
	width: 100%;
}
.modal-block .form-submit.success::after {
	top: 0;
}

/* modal block end */