/* ==================================================================================
    TABLE
================================================================================== */
.table {
    width: 100%;
    margin-bottom: 20px;
}

.table-layout-fixed {
    table-layout: fixed;
}

.table > thead > tr > th, 
.table > tbody > tr > th, 
.table > tfoot > tr > th, 
.table > thead > tr > td, 
.table > tbody > tr > td, 
.table > tfoot > tr > td {
    padding: 6px;
    line-height: 1.42857143;
    vertical-align: top;
    overflow: hidden;
    border-right: 1px solid #6983ed;
    vertical-align: middle;
    text-align: center;
}

.table > tbody > tr > td, 
.table > tfoot > tr > td {
	padding: 4px 20px;
    border-color: #dfe8f2;
}

.table th:last-child,
.table td:last-child {
    border: none !important;
}

.table th:first-child,
.table td:first-child {
    padding: 15px 10px 15px 20px;
    text-align: left !important;
}

.table > thead {
    background-color: #284de6;
}

.table > thead > tr > th,
.table > thead > tr > td {
    padding-top: 16px;
    padding-bottom: 16px;
    color: #fff;
    font-size: 14px;
}

.table > tbody > tr:nth-child(even) > th, 
.table > tbody > tr:nth-child(even) > td {
    background-color: #ebf4ff;
}

/*----- Table Responsive -----*/
.table-responsive {
    width: 100%;
    margin-bottom: 20px;
    overflow-y: hidden;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-overflow-scrolling: touch;
}

.table-responsive > .table {
    margin-bottom: 0;
    table-layout: auto;
}

@media (max-width: 991px) {
    .table-responsive > .table > thead > tr > th, 
    .table-responsive > .table > tbody > tr > th, 
    .table-responsive > .table > tfoot > tr > th, 
    .table-responsive > .table > thead > tr > td, 
    .table-responsive > .table > tbody > tr > td, 
    .table-responsive > .table > tfoot > tr > td {
        white-space: nowrap;
    }
}
/*  ======================================================================
        BREADCRUMB
========================================================================== */
.s-breadcrumbs__item,
.s-breadcrumbs__item a,
.s-breadcrumbs__item span {
	position: relative;
	display: inline-block;
	vertical-align: top;
	color: #333;
	font-size: 14px;
	line-height: 14px;
    -webkit-transition: all .15s;
			transition: all .15s;
}

.s-breadcrumbs__item > span {
	color: #b2b2b2;
	text-decoration: none;
}

.s-breadcrumbs__item a span {
	text-decoration: underline;
}

.s-breadcrumbs__item a:hover span {
	color: #333;
	text-decoration: none;
}

.s-breadcrumbs__item:after {
    content: '/';
    display: inline-block;
    vertical-align: middle;
    margin: -1px 6px 0 8px;
    color: #7f7f7f;
}

.s-breadcrumbs__item:last-child:after {
	display: none;
}
/*  ======================================================================
        BUTTONS
========================================================================== */
/*----- BUTTON -----*/
.btn {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 0 50px;
    line-height: 38px;
    padding-top: 2px;
    border: none;
    background-color: #fff;
    background: #f95949; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(#f95949),to(#f56f51));
    background: linear-gradient(to right, #f95949 0%,#f56f51 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    color: #fff;
    font-family: "Roboto";
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: all .3s;
            transition: all .3s;
}

.btn:hover {
    color: #fff;
    -webkit-box-shadow: 0 10px 20px rgba(248,86,71,.3);
    box-shadow: 0 10px 20px rgba(248,86,71,.3);
}

/*----- BUTTON: BG - BLUE -----*/
.btn--bg-blue {
    color: #fff;
    background: #0565a9;
}
.btn--bg-blue:hover {
    color: #fff;
    background-color: #1d89d6;
}

/*----- BUTTON: BG - TRANSPARENT -----*/
.btn--bg-transparent {
    border: 1px solid #0565a9;
    color: #0565a9;
}
.btn--bg-transparent:hover {
    color: #fff;
    background-color: #0565a9;
}

/*----- BUTTON: BG - RED -----*/
.btn--bg-red {
    border-color: #e51f35;
    background-color: #e51f35;
}
.btn--bg-red:hover {
    border-color: #e51f35;
    background-color: transparent;
    color: #e51f35;
}

/*----- BUTTON: CALL-BACK -----*/
.btn--call-back {
    padding: 0 45px;
    line-height: 39px;
    border-color: #e51f35;
    background-color: #e51f35;
    font-size: 17px;
}
.btn--call-back:hover {
    border-color: #e51f35;
    background-color: transparent;
    color: #e51f35;
}


/*----- BUTTON: SHADOW -----*/
.btn--shadow { -webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.1); box-shadow: 5px 5px 5px rgba(0,0,0,0.1); }

/*----- BUTTON: ROUNDED && CIRCLE   -----*/
.btn--rounded { border-radius: 5px !important; }
.btn--circle { border-radius: 21px !important; }

/*----- BUTTON: ICON  -----*/
.btn--icon-left span,
.btn--icon-right span,
.btn--icon-left i,
.btn--icon-right i {
    display: inline-block;
    vertical-align: middle;
}

.btn--icon-left i { margin-right: 5px; }
.btn--icon-right i { margin-left: 5px; }

/*----- BUTTON LINK -----*/
.btn--link {
    background-color: transparent !important;
    color: #595959;
}
.btn--link:hover {
    color: #595959;
}
.btn--link span {
    border-bottom: 1px solid transparent;
    -webkit-transition: all .3s;
            transition: all .3s;
}
.btn--link:hover span {
    border-color: #595959;
}
.form {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.form input[type='text'],
.form input[type='email'],
.form input[type='password'],
.form input[type='date'],
.form input[type='tel'],
.form textarea,
.form select {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 40px;
    padding: 0 16px;
    border: 1px solid #edf3f9;;
    margin-bottom: 18px;
    color: #333;
    border-radius: 5px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    outline: none !important;
    background-color: #edf3f9;
    -webkit-transition: border-color .2s, background-color .2s;
            transition: border-color .2s, background-color .2s;
}

.form textarea {
    height: 98px;
    padding-top: 10px;
    padding-bottom: 10px;
    resize: none;
}

@media screen and (min-width: 992px) {
    .form input:last-child,
    .form textarea:last-child,
    .form select:last-child {
        margin-bottom: 0;
    }
}

.form input[type='text'].error,
.form input[type='email'].error,
.form input[type='password'].error,
.form input[type='date'].error,
.form input[type='tel'].error,
.form textarea.error,
.form select.error {
    background-color: #f00;
}

.form label {
    position: relative;
    display: block;
    color: #343434;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
}

.form label span {
    display: block;
    margin-bottom: 9px;
}

.form label p {
    font-size: 12px;
    color: #aeacab;
    margin-bottom: 8px;
    line-height: 22px;
}

.form label.inline-block {
    display: inline-block;
}

.form label:last-child {
    margin-bottom: 0px;
}

.form label input[type='text'],
.form label input[type='email'],
.form label input[type='password'],
.form label input[type='date'],
.form label input[type='tel'],
.form label textarea,
.form label select {
    margin-bottom: 0;
}

.form input[type='text']:focus,
.form input[type='email']:focus,
.form input[type='password']:focus,
.form input[type='date']:focus,
.form input[type='tel']:focus,
.form select:focus,
.form textarea:focus {
    border-color: #0d70f7;
    background-color: #fff;
}

.form input::-webkit-input-placeholder { color: #ababab; }
.form input::-moz-placeholder          { color: #adabab; }/* Firefox 19+ */
.form input:-moz-placeholder           { color: #adabab; }/* Firefox 18- */
.form input:-ms-input-placeholder      { color: #adabab; }

.form textarea::-webkit-input-placeholder { color: #ababab; }
.form textarea::-moz-placeholder          { color: #adabab; }/* Firefox 19+ */
.form textarea:-moz-placeholder           { color: #adabab; }/* Firefox 18- */
.form textarea:-ms-input-placeholder      { color: #adabab; }

label .icon-required {
    position: absolute;
    left: -13px;
    top: -7px;
    color: #fe0000;
    font-size: 21px;
    font-style: normal;
}

/*----- Custom File Input -----*/
label.file-input {
    display: inline-block;
}

label.file-input input[type='file'] {
    display: none;
}

label.file-input span {
    position: relative;
    padding-left: 29px;
    text-decoration: underline;
}

label.file-input:hover span {
    text-decoration: none;
}

label.file-input span:before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0px;
    display: block;
    width: 18px;
    height: 22px;
    background: url(../img/icons/icon-file-upload.png) no-repeat;
}

/*----- Custom Checkbox -----*/
label.checkbox {
    cursor: pointer;
}

label.checkbox input[type='checkbox'] {
    display: none;
}

label.checkbox span {
    position: relative;
    display: inline-block;
    line-height: 18px;
    padding-left: 25px;
    color: #838587;
    font-size: 14px;
    font-weight: normal;
}

label.checkbox span a {
    font-size: 14px;
    font-weight: normal;
    color: #0d70f7;
    text-decoration: underline;
}

label.checkbox span a:hover {
    text-decoration: underline;
    color: #0d70f7;
}

label.checkbox span:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 0px;
    display: block;
    border-radius: 2px;
    width: 15px;
    height: 15px;
    border: 1px solid #d5d5d5;
}

label.checkbox span:after {
    content: '\f00c';
    position: absolute;
    top: 3px;
    left: 1px;
    z-index: 7;
    line-height: 13px;
    text-align: center;
    width: 13px;
    display: block;
    visibility: hidden;
    opacity: 0;
    color: #333;
    font-family: "FontAwesome";
    font-size: 12px;t
    -webkit-transition: all .1s;
            -webkit-transition: all .1s;
            transition: all .1s;
}

label.checkbox input:checked + span:after {
    visibility: visible;
    opacity: 1;
}

/*----- Custom Radio -----*/
label.radio:not(:last-child) {
    margin-bottom: 13px;
}

label.radio input[type='radio'] {
    display: none;
}

label.radio span {
    position: relative;
    display: inline-block;
    line-height: 16px;
    vertical-align: top;
    padding-left: 29px;
    color: #393939;
    font-size: 14px;
    font-weight: normal;
    white-space: normal;
}

label.radio span:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 0px;
    display: block;
    width: 13px;
    height: 13px;
    border: 2px solid #ffb001;
    background-color: #fff;
    border-radius: 50%;
    -webkit-transition: all .25s;
            transition: all .25s;
}

label.radio span:after {
    content: '';
    position: absolute;
    top: 5px;
    left: 4px;
    z-index: 9;
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #363636;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .25s;
            transition: all .25s;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
}

label.radio input:checked + span:after {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
}
/*  ======================================================================
		ICONS
========================================================================== */
.icon {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	background-repeat: no-repeat !important;
}

/*----- Icon Phone -----*/
.icon--yandex {
	width: 25px;
	height: 25px;
	background-image: url(../img/icons-svg/icon-yandex.svg);
	background-repeat: no-repeat;
	background-position: 47%;
	background-size: 9px;
	border-radius: 50%;
	background-color: #5e656c;
    -webkit-transition: all .3s;
			transition: all .3s;
}
/*  ======================================================================
        MODAL WINDOW
========================================================================== */
.md-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 2000;
    width: 100%;
    min-width: 320px;
    max-width: 697px;
    visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}

.md-modal.md-show {
    visibility: visible;
}

/*--------- Modal Window - Close ---------*/
.md-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9;
    width: 16px;
    height: 16px;
    text-decoration: none;
    -webkit-transition: all .25s;
            transition: all .25s;
    cursor: pointer;
}

.md-close svg {
    display: block;
    fill: #fff;
    -webkit-transition: all .25s;
            transition: all .25s;
}

.md-close:hover svg {
    fill: #fa5b4b;
}

/*--------- Modal Window - Overlay ---------*/
.md-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    opacity: 0;
    background-color: rgba(45,45,45,0.9);
    cursor: pointer;
    visibility: hidden;
    -webkit-transition: all 0.3s;
            transition: all 0.3s;
}

.md-overlay.md-show {
    opacity: 1;
    visibility: visible;
}

/*--------- Modal Window - Animation window ---------*/
.md-modal .md-content {
    opacity: 0;
    -webkit-transform: scale(0.96);
            transform: scale(0.96);
    -webkit-transition: all 0.3s;
            transition: all 0.3s;
}

.md-show.md-modal .md-content {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
}

/*----- Modal Window - Full Height -----*/
.md-modal.md-modal--full-height {
    height: calc(100% - 40px);
    top: 20px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}

.md-content::-webkit-scrollbar {
    width: 0;
}

/*--------- Modal Window - Content ---------*/
.md-content {
    position: relative;
    height: 100%;
    overflow: auto;
    background-color: #fff;
    border-radius: 5px;
    padding: 0 50px;
}

.md-form-wrap {
    max-width: 697px;
    margin: 0 auto;
}

.md-form-wrap > .md-form {
    overflow: hidden;
    padding-bottom: 65px;
}

.md-form.scroll-wrapper {
    padding: 0;
}

.md-form {
    padding: 25px 0 50px;
}

.md-form p {
    font-size: 14px;
    color: #848587;
    margin-bottom: 20px;
}

.md-form > p:first-child {
    margin-top: -5px;
}

.md-form .form {
    display: block;
}

.md-form textarea {
    height: 98px;
    margin-bottom: 15px;
}

.md-head {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -50px;
    padding: 0 50px;
    height: 147px;
    -ms-flex-align: flex-end;
    -webkit-box-align: end;
    align-items: flex-end;
    background-color: #000;
    background-image: -webkit-gradient(linear, right top, left top, from(#412bd5), to(#0777fb));
    background-image: linear-gradient(right, #412bd5 0%, #0777fb 100%);
}

.md-img {
    width: 180px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: -54px;
}

.md-title {
    color: #fff;
    width: 100%;
    font-size: 34px;
    font-weight: bold;
    line-height: 44px;
    margin-bottom: 20px;
}

.md-result {
    display: none;
    font-size: 18px;
    color: #3e282a;
    letter-spacing: 0.4px;
}

.md-result span {
    display: block;
}

.md-result span:first-child {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 17px;
}

.md-preloader {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(255,255,255,0.7);
}

.mb-btn {
    width: 182px;
    padding: 0;
}

.md-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.md-col {
    width: 100%;
}

.md-col:first-child {
    width: 180px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .md-img,
    .md-col:first-child {
        display: none;
    }
    .md-head {
        height: auto;
        padding-top: 20px;
    }
    .md-title {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .md-title {
        font-size: 22px;
        line-height: 30px;
    }
    .md-head {
        padding: 20px 25px 0;
        margin: 0 -25px;
    }
    .md-content {
        padding: 0 25px;
    }
}
/*  ======================================================================
        PAGINATION
========================================================================== */
.pagination {
    display: inline-block;
    vertical-align: top;
    border-radius: 0 5px 5px 0;
    background-color: #fff;
    padding: 0 13px 0 11px;
}

.pagination__list {
    white-space: nowrap;
    font-size: 0;
    text-align: center;
}

.pagination li {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 24px;
    margin-right: 3px;
    color: #ffb001;
}

.pagination li:last-child {
    margin-right: 0;
}

.pagination a {
    position: relative;
    display: block;
    text-decoration: none;
    margin: 0 2px;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    text-decoration: underline;
    color: #ffb001;
    -webkit-transition: all 0.2s;
            transition: all 0.2s;
    cursor: pointer;
}

.pagination a.active,
.pagination a:hover {
    color: #363636;
    text-decoration: none;
}

.pagination .pagination__prev,
.pagination .pagination__next {
    width: 18px;
    height: 24px;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

.pagination .pagination__prev:before {
    content: '\f0d9';
    font-family: 'FontAwesome';
    font-size: 16px;
    line-height: 25px;
}

.pagination .pagination__next:before {
    content: '\f0da';
    font-family: 'FontAwesome';
    font-size: 16px;
    line-height: 25px;
}

.pagination a.disabled {
    cursor: default;
}

.pagination a.disabled:before {
    color: #bfbfbf;
}

@media screen and (max-width: 767px) {
    .pagination {
        display: block;
        text-align: center;
    }
    .pagination a {
        margin: 0 6px;
        font-size: 16px;
    }
}
/*  ======================================================================
        CUSTOM SELECT
========================================================================== */
.select {
    position: relative;
    text-align: left;
}

.select__title {
    position: relative;
    z-index: 2;
    padding: 5px 40px 4px 13px;
    background-color: #fff;
    font-size: 14px;
    color: #353535;
    cursor: pointer;
    -webkit-transition: all .2s;
            transition: all .2s;
}

.select__title:before {
    content: '\f107';
    position: absolute;
    top: 0;
    right: 17px;
    z-index: 1;
    display: block;
    line-height: 45px;
    color: #b3b3b3;
    font-family: "FontAwesome";
    font-size: 18px;
    font-weight: normal;
}

.select__title span {
    color: #6c6c6c;
}

.select ul {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9;
    list-style: none;
    background-color: #fff;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 10px rgba(0,0,0,0.15);
    -webkit-transition: all .3s;
            transition: all .3s;
    -webkit-transform: translateY(-13px);
            transform: translateY(-13px);
}

.select:hover ul {
    will-change: transform;
}

.select.active ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
}

.select ul li {
    position: relative;
    padding: 7px 16px;
    font-size: 14px;
    color: #353535;
    cursor: pointer;
    -webkit-transition: all .25s;
            transition: all .25s;
}

.select ul li:hover,
.select ul li.selected {
    background-color: #efefef;
}

/*----- Select Gray -----*/
.select--gray .select__title {
    border: 1px solid #bfbfbf;
}

.select--gray .select__title:after {
    background: #bfbfbf;
    right: -1px;
}

/*----- Select Style #1 -----*/
.select--s1 {
    display: inline-block;
}

.select--s1 .select__title {
    padding: 9px 51px 7px 16px;
    color: #212121;
    font-size: 18px;
    font-weight: bold;
    border: 3px solid #ffd137;
    background-color: #fff;
}

/*----- Select Style #2 -----*/
.select--s2 .select__title {
    padding: 14px 40px 13px 17px;
    color: #616161;
    font-size: 13px;
    border: 1px solid #d7d7d7;
    background-color: #fff;
}
/*  ======================================================================
    SOCIAL MEDIA
========================================================================== */
.social-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.social-media a {
    display: inline-block;
    vertical-align: top;
    margin-right: 21px;
    font-size: 22px;
    color: #b4c1f6;
    -webkit-transition: all .25s;
            transition: all .25s;
}

.social-media a:last-child {
    margin-right: 0px;
}

.social-media a:hover {
    color: #f56f51;
}
/*  ======================================================================
        BASIC ELEMENTS: TABS
========================================================================== */
.tabs:not(:last-child) {
    margin-bottom: 30px;
}

.tabs .tabs__caption {
    position: relative;
    z-index: 2;
    font-size: 0;
    list-style: none;
}

.tab__link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    color: #828282;
    padding: 15px 0px;
    margin: 0 25px;
    -webkit-transition: all .3s;
            transition: all .3s;
}

.tabs .tab__link:hover,
.tabs .tab__link.active {
   color: #000;
}

.tab__content { display: none; }
.tab__content.active { display: block; }

/*----- Tabs Style #1 -----*/
.tabs--s1 .tab__link {
    padding: 10px 25px 9px;
    margin: 0;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    margin-right: 2px;
    border: 1px solid #d9d9d9;
    background-color: #d9d9d9;
    border-radius: 5px 5px 0 0;
    text-transform: uppercase;
}

.tabs--s1 .tab__link a {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none !important;
}

@media screen and (min-width: 992px) {
    .tabs--s1 .tab__link:not(.active):hover {
        color: #ff2300;
        background-color: #fff;
        border-bottom-color: #fff;
    }
}

.tabs--s1 .tab__link.active {
    background-color: #fff;
    color: #ff2300;
    border-bottom-color: #fff;
}

.tabs--s1 .tab__link:after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: -1px;
    display: block;
    width: calc(100% + 2px);
    height: 1px;
    background-color: #dbdbdb;
    -webkit-transition: all .2s;
            transition: all .2s;
}

.tabs--s1 .tab__link.active:after {
    opacity: 0;
}

.tabs--s1 .tabs__content {
    position: relative;
    top: -1px;
    border-top: 1px solid #dbdbdb;
    padding-top: 26px;
}
/*  ======================================================================
        BUTTON "TO-TOP"
========================================================================== */
.to-top {
    position: fixed;
    z-index: 99999;
    /*right: 246px;*/
    right: 115px;
    bottom: 43px;
    padding-top: 14px;
    width: 90px;
    height: 60px;
    border-radius: 5px;
    background-clip: padding-box;
    background: #6886ff ; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: box-shadow .3s, opacity .4s, all .3s;
            transition: box-shadow .3s, opacity .4s, all .3s;
}

.to-top.pos {
    position: absolute;
    /*top: -30px;*/
    top: -10px;
    bottom: auto;
}

@media (max-width: 1775px) {
    .to-top.pos {
        top: auto;
        bottom: 230px;
    }
}
@media (max-width: 1217px) and (min-width: 768px){
    .to-top {bottom: 143px;}
}
.to-top.active {
    opacity: 1;
    visibility: visible;
}

.to-top:hover {
    -webkit-box-shadow: 0 10px 20px rgba(248,86,71,.3);
    box-shadow: 0 10px 20px rgba(248,86,71,.3);
}

.to-top span {
    display: block;
    text-align: center;
}

.to-top svg {
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-top: -12px;
    fill: #fff;
}

@media screen and (max-width: 1199px) {
    .to-top {
        right: 15px;
    }
}
.widget-search {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.widget-search input {
    width: 100%;
    padding-left: 16px;
    padding-right: 44px;
    border: none;
    height: 40px;
    border-radius: 5px;
    background-color: #fff;
    color: #fff;
    color: #333;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    -webkit-transition: box-shadow .3s;
            -webkit-transition: -webkit-box-shadow .3s;
            transition: -webkit-box-shadow .3s;
            transition: box-shadow .3s;
            transition: box-shadow .3s, -webkit-box-shadow .3s;
}

.widget-search input:focus {
    -webkit-box-shadow: 0 0 15px rgba(255,255,255,.6);
    box-shadow: 0 0 15px rgba(255,255,255,.6);
}

.widget-search input::-webkit-input-placeholder { color: #adabab; }
.widget-search input::-moz-placeholder          { color: #adabab; }/* Firefox 19+ */
.widget-search input:-moz-placeholder           { color: #adabab; }/* Firefox 18- */
.widget-search input:-ms-input-placeholder      { color: #adabab; }

.widget-search button {
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
    height: 100%;
    padding: 0;
    z-index: 1;
    border: none;
    text-align: center;
    background-color: transparent;
}

.widget-search button:before {
    content: '';
    display: inline-block;
    vertical-align: top;
    margin-top: 2px;
    width: 16px;
    height: 16px;
    opacity: 0.4;
    background: url(../img/icons-svg/icon-search.svg);
    -webkit-transition: all .3s;
            transition: all .3s;
}

.widget-search button:hover:before {
    opacity: 1;
}