#symptom-search, #extract-search {
    background-image: url('../img/searchicon.png'); /* Add a search icon to input */
    background-position: 10px 12px; /* Position the search icon */
    background-repeat: no-repeat; /* Do not repeat the icon image */
    background-size: 25px;
    width: 100%; /* Full-width */
    font-size: 16px; /* Increase font-size */
    padding: 12px 20px 12px 40px; /* Add some padding */
    border: 1px solid #ddd; /* Add a grey border */
    margin: 12px 0; /* Add some space below the input */
    border-radius: 10px;
}

#symptom-list {
    /* Remove default list styling */
    list-style-type: none;
    padding: 0;
    margin: 0;
    height: 500px;
    overflow: auto;
}

#symptom-list li a {
    border: 1px solid #ddd; /* Add a border to all links */
    margin-top: -1px; /* Prevent double borders */
    background-color: #f6f6f6; /* Grey background color */
    padding: 10px; /* Add some padding */
    text-decoration: none; /* Remove default text underline */
    font-size: 16px; /* Increase the font-size */
    color: black; /* Add a black text color */
    display: block; /* Make it into a block element to fill the whole list */
}

#symptom-list li a:hover:not(.header) {
    background-color: #eee; /* Add a hover effect to all links, except for headers */
}

#organswrapper {
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 0;
    background-color: transparent;
    min-width: 220px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}
#organswrapper svg {
    max-height: 100%;
    width: 100%;
    margin: 0;
}
.go_int, .go_ext{
    fill: #72B8FC;
    -webkit-transition: fill 0.1s ease;
    -moz-transition: fill 0.1s ease;
    -o-transition: fill 0.1s ease;
    transition: fill 0.1s ease;
    cursor: pointer;
}
.go_int:hover, .go_ext:hover{
    fill: #0081FF;
}
.inactive-side{
    fill: #B2B2B2;
}
#search-main .help-block-error{
	font-weight: bold;
	color: red;
	font-size: 12px;
}
.reg_link{
	font-weight: bold;
	text-decoration: underline;
}
#organs-tip {
    font: 14px/16px Trebuchet MS, Helvetica, Arial, sans-serif;
    display: none;
    padding: 5px;
    border: 1px solid #404040;
    color: #404040;
    z-index: 1000;
    float: left;
    position: absolute;
    background: rgba(265, 265, 265, 0.9);
    word-break: keep-all;
    box-shadow:1px 2px 4px rgba(0, 0, 0, 0.5);
    -moz-box-shadow:1px 2px 4px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow:1px 2px 4px rgba(0, 0, 0, 0.5);
}
#organs-tip p {
    margin: 0!important;
    color: #404040!important;
}
#organs-tip img {
    float: left;
    padding: 3px;
}
@media screen and (max-width: 320px){
    #organswrapper svg {
        height:440px;
    }
    #organs-tip {
        max-width: 40%;
    }
    #organs-tip img {
        max-width: 95%;
    }
}
@media screen and (max-width: 400px) and (min-width: 321px) {
    #organswrapper svg {
        height:510px;
    }
}
@media screen and (max-width: 480px) and (min-width: 401px) {
    #organswrapper svg {
        height:660px;
    }
}
@media screen and (max-width: 568px) and (min-width: 481px) {
    #organswrapper svg {
        height:660px;
    }
}
@media screen and (max-width: 685px) and (min-width: 569px) {
    #organswrapper svg {
        height:680px;
    }
}
@media screen and (max-width: 767px) and (min-width: 686px) {
    #organswrapper svg {
        height:690px;
    }
}
@media screen and (min-width: 768px) {
    #organswrapper svg {
        height:600px;
    }
}

.extract-container, .helper-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    height: auto;
    margin-bottom: 25px;
}
.search-list .extract-container{
    height: 100px;
}
.search-list .extract-container h4{
    border: none !important;
}

.extract-container>div, .helper-container>div {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    position: relative;
}

.extract-container>div:first-child input {
    /*display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    padding: 0 10px 0 0;*/
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 0px;
}

.extract-container>div:last-child, .helper-container>div:last-child {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0 10px;
}
.extract-container>div:last-child h4{
    margin-bottom: 10px;
    padding-bottom: 3px;
    border-bottom: 1px solid gray;
    display: inline-block;
    width: 100%;
    font-weight: bold;
    padding-top: 0px;
    margin-top: 0px;
}

.extract-container>div{
    margin-top: 20px;
}
.helper-container>div:first-child img{
    width:80px
}

.helper-container>div:last-child {
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
}

#search-main .read-more{
    font-size: 12px;
    color: #77a106;
    font-weight: bold;
}

.symptom-products-list .action-container{
    margin-top: 15px;
}
.symptom-products-list>div{
    padding: 50px 0;
}
.symptom-products-list>div:nth-child(2n+1){
    background: #f5f9f9;
}
.additional-header{
    padding: 0 0 70px;
    line-height: 20px;
    font-size: 20px;
}

.search-info-panel{
    padding: 20px 10px;
    margin-bottom: 20px;
}



.info-params{
    margin-top: 10px;
}

.info-params li{
    font-size: 18px;
    line-height: 32px;

}

.version-radio{
    display: inline-block;
    border: 1px solid black;
    border-radius: 10px;
    max-width: 200px;
    height: 120px;
    width: 100%;
    text-align: center;
}
[data-readmore]{
    overflow: hidden;
}
.readmore-button{
    margin-top: 15px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    width: 100%;
    font-size: 30px;
}


#search-main label{
    font-size: 19px;
}
#search-main h2 {
    margin-top: 0px;

}

#search-main legend, #search-main h2{
    font-weight: 100;
    font-size: 45px;
    border-bottom: none;
}

#search-main .additional-header{
    font-weight: 100;
    font-size: 45px;
    margin: 60px 0;
    padding: 0px;
    line-height: 42px;
}

#search-main * {
    color: #001a46;
}
#search-main .header-section{
    /*width: 390px;*/
    /*padding-left: 35px;*/
}
#search-main .header-section .info {
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
}

#search-main .header-section .name{
    border: 1px solid #dee1e7;
    padding: 30px 0 40px 30px;
    font-weight: bold;
    font-size: 55px;
    line-height: 55px;
}


#search-main .logotype {
    margin-bottom: 50px;
    padding-left: 28px;
}
.sh1{
    font-weight: bold;
    font-size: 55px;
}
#search-main h1{
    display: inline-block;
    margin-bottom: 0px;
}

.plus-line{
    display: inline-block;
    height: 5px;
    background: #ffde00;
    width: 100%;
    position: relative;

}
.plus-line:before{
    content: "+";
    font-weight: bold;
    font-size: 40px;
    color: #77a106;
    position: absolute;
    left: -25px;
    line-height: 40px;
    top:-20px;

}

#search-main .symptom-info-panel{
    padding: 20px 10px;
}
#search-main .symptom-info-panel h4{
    margin: 0px;
    padding-bottom: 15px;
}

.search-option-btn label{

    cursor: pointer;
}

.search-btn [type="radio"]{
    display: none;
}

.search-option-btn [type="radio"]:checked + label{
    border: 1px solid #c2db8f;
    -webkit-box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.22);
    box-shadow: 0px 0px 7px 1px rgba(0,0,0,.22);
}

.search-option-btn img{
    max-width: 100%;
}
.search-txt-btn{
    text-align: center;
}
.search-txt-btn label{
    font-size: 19px;
    font-weight: bold;
    padding: 10px 0;
    width: 140px;
    text-align: center;
    border: 1px solid #dee1e7;
}

.search-action-btn{
    font-size: 18px;
    border: 1px solid #c9c9c9;
    border-radius: 15px;
}

#search-main .search-action-btn.success{
    color: white;
    background: #77a106;
    padding: 10px 80px;
}

.search-setup input[type="text"],
.search-setup input[type="number"],
.search-setup input[type="email"]{
    border: 1px solid #c9c9c9;
    border-radius: 10px;
}

#search-main .checkbox label{
    font-size: 14px;
    font-weight: 300;
}
/*#search-main .form-group{
    margin-left: 18px;
}*/

#search-main  .required .checkbox:before{
    display: inline-block;
    content: "\f069";
    font: normal normal normal 12px/1 "Font Awesome 5 Pro";
    color: red;
    position: absolute;
    left: -18px;
    top: 4px;
}

.sh3{
    font-size: 18px;
    font-weight: 300;
}
.option-group-header{
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 25px;
    text-align: center;
}

.extract-preview{
    height: auto;
}

.main-extracts, .main-products{
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,f6f6f6+100 */
    background: rgb(255,255,255); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0 ); /* IE6-9 */
    padding-bottom: 50px;
}

#search-main .product.item .product-title{
    text-align: left;
}

#search-main #products-list .list-group-item-text{
    border: none;
    padding: 0px;
}
#search-main .product .action-container{
    text-align: left;
}
#search-main .product .thumbnail .caption{
    padding: 0px;
}
#search-main .product .action-container a{
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 300;
    line-height: 30px;
    width: 120px;
    margin-bottom: 0px;
    border-radius: 0px;
    border: 1px solid #dee1e7 !important;
}

#search-main .product .action-container .add-cart{
    background: #77a106 !important;
    color: white !important;
}

#search-main .product .action-container .read-more{
    background: white !important;
    color: #001a46 !important;
}

#search-main .extract-name{
    font-weight: 300;
    border: 1px solid #dee1e7;
    padding: 20px 0 ;
    line-height: 38px;
}

.extract-search{
    margin-top: 25px;
}


/*====================================================================================*/
/*                        Search                                                      */
/*====================================================================================*/

section#search-header{
    background-image: url(../img/top.jpg);
    background-position: center top;
    height: 500px;
    background-size: cover;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

section#search-header .main-content, section#search-bottom .main-content{
    padding-top: 20px;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 50%;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    text-align: left;
}
section#search-header .header-section h1{
    margin-bottom: 10px;
}

section#search-header .header-section .info{
    margin: 10px 0 0 10px;
}

section#search-bottom{
    background-image: url(../img/bottom.jpg);
    background-position: center top;
    height: 500px;
    background-size: cover;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
section.search-info .content {
    font-size: 13px;

    line-height: 21px;
}
section#search-bottom b{
    color: #73a220;
}

section#search-bottom .content-small{
    font-size:16px;
    line-height: 24px;
    margin-top: 80px;
}

section#search-main{
    padding: 70px 0;
    position: relative;
}

.ebook-info{
    padding-bottom: 30px;
}

section#search-bottom .info{
    font-size: 18px;
    line-height: 24px;
}

.search-normal .search-option-btn{
    display: inline-block;
}

.search-check{
    padding-left: 36px;
}

.ebook-fields{
    padding-left:36px;
}

.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}
#search-main .back-section{
    margin-bottom: 25px;
}
#search-main .back-section a{
    color: white;
    background: #77a106;
    padding: 5px 30px;
    font-size: 18px;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
}
.search-product .product .thumbnail {
    border: none;
    overflow: hidden;
    position: relative;
    padding: 0px;
    background: transparent;
}

#search-main .product.item .list-group-item-text {
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
    padding: 15px 0;
    margin-top: 20px;
    min-height: 150px;
}

#search-main .product.item .list-group-item-heading {
    font-size: 21px;
    line-height: 31px;
    font-weight: bold;
}

.dashed-ln{
    border-bottom: 1px dashed #001a46;
    color: #fff;
    background-color: #fff;
    height: 1px;
    margin: 40px 0;
}

.search-loader{
    background-color: rgba(0, 26, 70, 0.8);
    width:100%;
    height:100%;
    top: 0px;
    left: 0px;
    position: fixed;
    background: rgba(0, 26, 70, 0.8) url(../img/loader.svg) no-repeat;
    background-position-x: 0%;
    background-position-y: 0%;
    background-position: center;
    z-index: 99;
}

@media (max-width: 990px) {
	section#search-bottom{
		background: none;
	}
    .search-txt-group > div {
        display: inline-block;
    }

    .search-txt-group {
        text-align: center;
        margin-bottom: 15px;
    }
    .search-txt-group>div:first-child{
        margin-right: 10px;
    }
}
@media (max-width: 990px) {
    .search-body-btn.woman{
        text-align: right;
    }
    .search-body-btn.man{
        text-align: left;
    }


}

@media (max-width: 798px) {
	section#search-bottom .main-content{
		padding: 0 30px;
		width: 100%;
		flex: 0 1 100%;
	}
	
	#search-main .sh1{
		font-size:20px;
		line-height:25px;
	}
	#search-main .header-section .name{
		font-size:20px;
		line-height:25px;
	}

    .search-info-panel{
        padding-left: 35px;
    }
    .info-params li{
        display: inline-block;
        margin-right: 10px;
    }
    .extract-container {
        text-align: left;
    }
    .extract-container{
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .extract-container>div:first-child{
        text-align: center;
    }
    #search-main .product-title a{
        font-size: 24px;
        margin: 5px 0 25px 0;
        display: inline-block;
    }
    #search-main #products-list .list-group-item-text{
        min-height: 0px;
        margin-bottom: 25px;
    }
    .extract-post-image img{
        display: inline-block;
    }
    .extract-post-image{
        text-align: center;
        margin-bottom: 30px;
    }
    .search-list .extract-container{
        height: auto;
    }
    .sh1 {
        font-weight: bold;
        font-size: 32px;
    }
    #search-main h2{
        font-size: 28px;
    }
    #search-main .additional-header{
        font-size: 25px;
    }
}

@media (max-width: 320px) {
    .search-txt-group>div{
        display: block;
    }
    .search-txt-group>div:first-child{
        margin-right: 0px;
    }
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    select,
    textarea,
    input {
        font-size: 16px;
    }
}