@import url("fonts/stylesheet.css");

/*-- Common Style --*/

html, body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
   }

body {
  background-color: #ffffff;
  line-height: 1;
  font-size: 14px;
  font-weight: 300;
  /*  font-family: "HelveticaNeue", sans-serif;*/
  font-family: "Helvetica", "Arial", sans-serif;
  color: #000; 
  overflow-x: hidden;
}

a,
button {
  cursor: pointer;
}
*:focus {
  outline: none !important;
  box-shadow: none !important;
}
a, a:hover, a img, a:visited, a:active, a:focus{
    text-decoration: none;
    outline: 0;
}
ul, ol{
    /* list-style: none; */
}

button,
input[type="submit"] {
  cursor: pointer; }

img {
    height: auto;
    max-width: 100%;
}
section{
    margin: 30px 0px 70px;
}
#content h2, #content .contentsect .content-sect h2{
    font-weight: 500;
    font-size: 23px;
    color: #10384F;
    flex-wrap: wrap;
}
#content p,.content-sect .minimize{
    font-weight: 300;
    font-size: 18px;
    line-height: 26px; /* 9 july */
}
/* btn */
.btn{
    background:  #de0043;
    color: #ffffff;
    border-radius: 0px;
    position: relative;
    min-height: 48px;
    overflow: hidden;
    border: 0px;
    line-height: 1; /* 24 mar */
    padding: 12px .75rem 12px; /* 24 mar */
    box-sizing: border-box;
}

#content .btn,
#header .navbar-nav .searchbar .btn{
    margin-top: 20px;
    font-style: italic;
    font-weight: bold;
    padding:14px 80px 12px 25px; /* 24 mar */
    text-transform: uppercase;
    font-size: 18px;
}
#content .forms-box .btn,
#content .advfilter .btn,
#content .advfilterbox .btn
{
    padding-top:12px; /* 24 mar */
}

.btn-white{
    background: #ffffff !important;
    color: #DE0043 !important;
    min-width: 206px;
    line-height: 1 !important;
    border-top-width: 1px !important;
    border-right-width: 0.5px !important;
    border-bottom-width: 0.5px !important;
    border-left-width: 1px !important;
    border-top-style: solid !important;
    border-right-style: solid !important;
    border-bottom-style: solid !important;
    border-left-style: solid !important;
    border-top-color: #DE0043 !important;
    border-right-color: #DE0043 !important;
    border-bottom-color: #DE0043 !important;
    border-left-color: #DE0043 !important;
}
#content .btn.btn-white::before{
    background-color: #DE0043 !important;
    width: 65px;
    height: 100%;
    content: '';
    transition: all 0.4s ease-in-out;
}
#content .btn::before, .togglesearch .btn::before,
#header .navbar-nav .searchbar .btn::before
{
    background-color: #99002E;
    position: absolute;
    right:-10px;
    transform: skewX(-12deg) scale(1);
    top:0;
    width: 65px;
    height: 100%;
    content: '';
    transition: all 0.4s ease-in-out;
}
#content .btn::after,
#header .navbar-nav .searchbar .btn::after
{
    position: absolute;
    right: 0px;
    top: 0;
    width: 50px;
    height: 100%;
    content: '\f054';
    color: #ffffff;
    font-family: 'Font Awesome\ 5 Free';
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
    font-style: normal;
}
#content .btn:hover::before,  .togglesearch .btn:hover::before,
#header .navbar-nav .searchbar .btn:hover::before

{
    transform: skewX(-12deg) scale(1.3);
    transition: all 0.45s;
    background: #88022a ;
}
.btn:hover{
    color: #ffffff;
}

/* btn */

/*-- - header  -----------------------------------------*/
#header .navbar { 
    -webkit-transition:padding 0.2s ease;
    -moz-transition:padding 0.2s ease; 
    -o-transition:padding 0.2s ease;        
    transition:padding 0.2s ease;  
}
#header .affix {
    /* 8 july */
    /* padding-top: 0.2em !important;
    padding-bottom: 0.2em !important; */
    -webkit-transition:padding 0.2s linear;
    -moz-transition:padding 0.2s linear;  
    -o-transition:padding 0.2s linear;         
    transition:padding 0.2s linear;  
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}
#header .container{
    align-items: initial;
    justify-content: initial;
    padding: 30px 15px 20px;
}
@media all and (-ms-high-contrast:none)
{
    #header .container{
        align-items: inherit;
        justify-content: inherit;
    }
}
#header .menu-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#header .navbar-brand{
    padding:0;
    margin-right: 1.5rem;
}
#header .logo-heading{
    color: #10384F;
    font-size: 50px;
    font-weight: 300;
}

/* menu */
#header .navbar-nav{
    padding-top: 0px;
    align-items: center;
}
#header .navbar-nav .nav-item{
    position: relative;
}
#header .navbar-nav .nav-item:after{
    position: absolute;
    content: '';
    top:2px;
    right:0;
    width:0.5px;
    height: 18px;
    background:#10384F;
    transform: rotate(20deg);
}
#header .navbar-nav .nav-item:last-child:after{
    display: none;
}
#header .navbar-nav .nav-item:first-child .nav-link{
    padding-left: 0px;
}
#header .navbar-expand-md .navbar-nav .nav-link{
    font-size: 18px;
    color: #10384F;
    font-weight: 300;
    padding: .5rem 0.8rem;
}

#header .navbar-nav .searchbar .btn {
    margin-top: -10px;
    min-height: 38px;
    font-size: 16px;
    padding:10px 85px 10px 22px;
}
#header .navbar-nav .searchbar .btn::after{
    content: '\f002';
}

#header .navbar-nav .searchbar .fa-search{
   visibility: hidden;
   color: #DE0143;
}
#header .affix .navbar-nav .searchbar .btn{
    display: none;
}

#header .affix .navbar-nav .searchbar .fa-search
{
    visibility: visible;  
}

/* after scrolling */
#header .affix .container{
    padding: 15px 15px 10px;
}
/* 8 july */
#header .affix .navbar-brand img{
    width: 60px;
}
#header .affix .logo-heading{
    font-size: 30px;
}
#header .affix  .navbar-expand-md .navbar-nav .nav-link{
    font-size: 18px;
}
#header .affix .navbar-nav .searchbar .nav-link img{
    width: 13px;
}
#header .affix  .navbar-nav {
    padding-top: 0px;
}

/* Main search box */
#header .togglesearch {
    background: #ffffff;
    position: absolute;
    top: 153px;
    right: 0%;
    width: 100%;
    height: auto;
    display: none;
    margin: 0 auto;
}
#header .affix .togglesearch{
  top: 120px;
}
#header .togglesearch .container{
    padding: 30px 15px 38px;
}

#header .affix .togglesearch .offset-md-1{
    margin-left: 6%;
}
.togglesearch .form-control{
    height: calc(1.5em + 2.75rem + 2px);
    font-size: 16px;
    color: #10384F;
    font-style: italic;
    font-weight: 500;
    border:1px solid #DE0043;
    border-radius: 0px;
}

.togglesearch input::placeholder{
    font-weight: 500;
    font-style: italic;
    color: #999999;
}

.togglesearch .btn{
    padding: 10px 30px 10px 25px;
    position: absolute;
    background:transparent;
    width: 150px;
    z-index: 2;
    display: block;
    top: 1px;
    right: 15px;
    height: 69px; /* 26 mar */
    text-align: right;
    font-size: 20px;
}
.has-search .form-control {
    padding-right: 4rem;
    padding-left: 1.1rem;
}
.togglesearch .btn .searchicon{
    position: relative;
    z-index: 3;
    color: #ffffff;
    font-size: 25px;
}

/* autocomplete search */

/* .ui-front {
    z-index: 9999;
} */

/* .ui-autocomplete {
    max-height: 100px;
    overflow-y: auto;
    overflow-x: hidden;
}

* html .ui-autocomplete {
    height: 100px;
}
  */
/* 26 mar */
.togglesearch #container {
    display: block; 
    position:relative
} 
.ui-autocomplete {
    position: absolute;
}
/* 26 mar */

.ui-widget{
    font-family: 'HelveticaNeue';
}

.ui-widget.ui-widget-content{
    border:0px !important;
}

.ui-menu .ui-menu-item{
    border:1px solid #DE0043 !important;
    list-style-image:none !important;
}
.ui-menu .ui-menu-item + .ui-menu-item {
    border-top-width: 0 !important;
    
}
/*.ui-menu .ui-menu-item-wrapper{
    font-style: italic;
    color: #000000;
    font-weight: 500;
    padding:.75rem 1.1rem;
}*/

.ui-menu .ui-menu-item-wrapper{
    font-style: italic;
    color: #000000;
    font-weight: 500;
    padding:.75rem 1.1rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ui-widget.ui-widget-content{
width:100%!important;
}

.ui-state-active,
.ui-widget-content .ui-state-active{
    background: #f8f8f8 !important;
    border:1px solid #DE0043 !important;
}

.activesearch .fa-times{
    display: inline-flex !important;    /* 8 july */
    font-size: 20px;
    color: #ffffff; /* 8 july */
}
.activesearch .searchimage{
    display: none !important;
}
.togglesearch .btn::before{
    background: #de0043;
    width: 95px;
}
.togglesearch .btn:hover::before{
    background: #de0043;
}
.togglesearch .btn:hover{
    color: #ffffff;
}

/* header top right */
#header .header-right-menu{
    position: absolute;
    right:15%; /* 8 july */
    top:0;
    width: auto;
    height: auto;
    z-index: 99;
    max-width: 300px; /* 8 july */
}
/* 8 july */
#header .header-right-menu .navbar-nav{
    padding: 0.3rem 1rem 0.3rem 1.5rem !important;
    transform: skewX(0deg);
    background: #009bd2;
}
/* 8 july */
#header .header-right-menu .navbar-nav:before{
    position: absolute;
    left:-10px;
    top:0;
    width: 10px;
    height: 100%;
    background: #ffffff;
    transform: skewX(-10deg);
    transform-origin: bottom left;
    content: '';
}
#header .navbar-expand-md .header-right-menu .navbar-nav .nav-link{
    color: #ffffff;
}
#header .header-right-menu .navbar-nav .nav-item:after{
    background: #ffffff;
}
#header .header-right-menu .dropdown-menu{
    margin: 5px 0 0;
    border-radius: 4px;
    min-width: 100px;
    border: 1px solid #CCCCCC;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    padding:0;
    right:0;
    left: inherit;
    max-height: 340px;
    overflow-y: auto;
}
#header .header-right-menu li:first-child .dropdown-menu{
    border-radius: 0px;
}
#header .header-right-menu .dropdown-menu.profile-details{
    min-width: 398px;
    overflow-y: hidden;
}
#header .header-right-menu .navbar-nav .nav-item .dropdown-toggle::after{
    content: "\f078";
    font-family: 'Font Awesome\ 5 Free';
    pointer-events: none;
    font-weight: 900;
    border:0px;
    font-size: 9px;
    margin-left: 0.8rem;
}
#header .header-right-menu .navbar-nav .nav-item:last-child .dropdown-toggle::after{
    display: none;
}

#header .header-right-menu .dropdown-menu .dropdown-item{
    font-weight: 500;
    border-bottom: 1px solid #cccccc;
    padding:0.8rem 1rem;
}
#header .header-right-menu .dropdown-menu .dropdown-item.active{
    background: #E2F6FF;
    color: #000000;
}
#header .header-right-menu .dropdown-menu .dropdown-item:last-child{
    border-bottom: 0px;
}
#header .header-right-menu li:first-child .dropdown-menu .dropdown-item{
    border-bottom: 0px;
    padding:0.5rem 1rem;
}

#header .header-right-menu .dropdown-menu .dropdown-item:hover
{
    color: #0075A6;
}
.dropdown-item:focus, .dropdown-item:hover{
    background-color: transparent;
}
.profileinfo, .profileaddinfo{
    display: flex;
    background:#E2F6FF;
    max-width: 100%;
    align-items: flex-start;
    justify-content: space-around;
    padding: 0.8rem 1rem 0.25rem;
    border-bottom: 1px solid #cccccc;
}
.profileinfo h4{
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0.8rem;
    color: rgba(0, 0, 0, 0.87);

}
.profileinfo p a{
    color: rgba(0, 0, 0, 0.87);
}
/* 18 ma */
.profileinfo .col-9{
    padding-left: 5px;
}
/* 18 ma */
.profileaddinfo{
    background: #ffffff;
    justify-content: normal;
    align-items: normal;
    margin-top: 0;
}
.profileimgsm{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}
.profileimg{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}
#previewimg,#previewimgarticlesmallimage,#previewimgarticlelargeimage{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}
.profile-details .fa-key{
    color: #0075A6;
    font-size: 20px; /* 9 jul */
}
.profileaddinfo span{
    position: relative;
}
.profileaddinfo a{
    color: #000000;
    font-weight: 500;
    padding:.5rem 1.2rem;
    cursor:unset;
}
.profileaddinfo span:first-child a{
    padding-left: 0;
}
.profileaddinfo span:last-child::after{
    display: none;
}
.profileaddinfo span:after{
    position: absolute;
    content: '';
    top: -5px;
    right: 0;
    width: 1px;
    height: 25px;
    background: #cccccc;
}
.editprofile{
    background: #ffffff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right:-10px ;
}
.editprofile i{
    color:#0075A6;
    font-size: 10px;
}
/* header end */

/* breadcrumb */
.breadcrumbsection {

    border-top:0.5px solid #cccccc;
    border-bottom: 0.5px solid #cccccc;
    margin: 0px 0px 60px;
    position: sticky;
    top: 120px;
    z-index:11;
    background: #ffffff;
}
.breadcrumbsection .breadcrumb{
    margin-bottom: 0px;
    padding:0.9rem 1rem 0.9rem 0rem;
}
.breadcrumb-item a{
    color: #000000;
    font-weight: 300;
}
.breadcrumb-item a:hover{
    color:#0075A6;
    text-decoration: underline;
}
.breadcrumb-item.active{
    /* font-weight: bold; */
    font-weight: 300;
    color: #000000;
}
.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: #000000;
    content: "\f054";
    font-weight: bold;
    font-family: 'Font Awesome\ 5 Free';
}
.breadcrumbsection .breadcrumb.bg-white{
    background: transparent !important;
}

/* slider and main div */
.beforeloginpage #content{
    padding-top: 116px;
}
#content{ padding-top: 157px; margin-bottom: -56px; min-height: 100%; padding-bottom: 56px;}
/* .home-full-item{min-height: 500px;} */
.hero-section{margin: 0px;}
/*.home-full-item:before,
.home-full-item .bg-cover:before
{
    position: absolute;
    content:'';
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background:rgba(0, 0, 0, 0.15)
}*/
.home-full-item .carousel-caption{
    width: 100%;
    height: auto;
    left:0;
    right:0;
    padding:0;
    text-align: left;
    bottom: 0px; /* 9 july */
    overflow: hidden;
}
.home-full-item .carousel-caption h1,
.home-full-item h1
{
    color: #FFFFFF;
    padding-right: 20px;
    font-weight: 500;
    font-size: 45px;
    line-height: 1.1;
}
.home-full-item .carousel-caption h1::before,
.home-full-item h1::before
{
    content: "";
    position: absolute;
    top: 9px;
    left: -9999px;
    width: 9999px;
    height: 38px;
    background-image: url(../images/white_line.png);
    background-position: 100%;
    background-repeat: repeat-x;
    background-size: contain;
}
/* singin/forgot/register  */
.signin-about h2{
    color: #000000 !important;
}
.signin-about h2 span{
    font-weight: 900;
    color: #0075A6;
}
/* form style */
.forms-style {
    margin-bottom: 110px; 
}
.form-cover{
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 0px;
    min-height: auto;
}
.forms-style .bar-code{
    position: relative;
}
.forms-style .bar-code::before{
    content: "";
    position: absolute;
    bottom: -38px;
    left: 0%;
    width: 38%;
    height: 38px;
    background-image: url(../images/blue-line.png);
    background-position: 100%;
    background-repeat: repeat-x;
    background-size: contain;
    z-index: 1;
}
.forms-style .register-bar .bar-code::before{
    width: 46.10%;
}
.form-cover .bgimage{
    position: absolute;
    left: 0;
    right: calc(50vw - 334px);
}
.form-cover .bgimage .form-image{
    max-height: 100%;
    object-fit: contain;
    object-position: top center;
    height: 75vh;
    min-height: 575px;
}
.form-cover .px-5{
    padding-left: 2.65rem !important;
    padding-right: 2.65rem !important;
}
.forms-box{
    background: #ffffff;
    /* position: absolute;
    right:52%; */
    max-width: 100%;
    padding:1.8rem 3.8rem 4.5rem;
    border: 1px solid #999999;
    box-shadow: 0 0px 10px rgba(0,0,0,.29);
    border-radius: 4px;
    margin-top: 10px; /* 9 july */
    display: block;
}
.forms-box .mb-4{
    margin-bottom: 2rem !important;
}
.forms-box .form-control{
    border:1px solid #CCCCCC;
    box-shadow: 0 0px 10px rgba(125,125,125,.16);
    border-radius: 0;
    font-weight: 300;
    height: calc(1.5em + .75rem + 6px);
    color: #10384F;
}
select:required:invalid {
    color: #999999;
}
.forms-box .form-control option{
    font-weight: 300;
}

.forms-box .form-control::placeholder{
    color: #999999;
    font-weight: 300;
}
.forms-box .form-select,
.form-select
{
    position: relative;
    display: block;
}
/* 26 mar */
.product-details-head-sect .form-select
{
    display: inline-block;
}
/* 26 mar */

.forms-box .form-select::after,
.form-select::after
{
    color: #b4b4b4;
    content: "\f078";
    font-family: 'Font Awesome\ 5 Free';
    font-size: 10px;
    height: 5px;
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 15px;
    width: 10px;
    font-weight: 900;
}
.forms-box select.form-control, select.statessel, .editform select.form-control, .adv-search-select-box select.form-control
{
    appearance: none !important;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 25px;
}
select::-ms-expand {
    display: none;
}  
.editform textarea.form-control{
    height: inherit !important;
}
.forms-box .form-check{
    position: relative;
}
.custom-checkbox .custom-control-label::before{
    border-radius: 0px;
}
.custom-control-input:checked~.custom-control-label::before {
    color: #000000;
    border-color: #000000;
    background-color: transparent;
}
.custom-control-label::before{
    border:1px solid #000000
}
.custom-control-label::before,
.custom-control-label::after{
    top: 0.1rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
    background-size: 70%;
}
.forms-box .custom-control-label, .forms-box .link-info, .forms-box p{
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
}
.forms-box .link-info{
    color: #DE0043;
    text-decoration: underline;
}
.forms-box h4{
    font-weight: 900;
    font-size: 20px;
}
.act-link {
    float:left;
    margin-top:5px;
}
.res-link {
    margin-left:38px;
}
.social-media-link{
    text-align: center;
}
.social-media-link .social-link{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border:1px solid #cccccc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.social-media-link img{
    max-height: unset;
    height: 25px;
    transition: all .2s ease-in-out;
}
.social-media-link .social-link:hover img{
    transform: scale(1.3);
}
/* signin/register/forgot section end */

/* footer section  */
#footer{
    background: #624963;
    text-align: center;
    padding: 20px 0px;
    position: relative;
    height: 56px;
}
#footer .row{
    align-items: center;
    justify-content: space-between;
}
#footer p{
    font-size: 11px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.07px;
    margin-bottom: 0px;
}
#footer .navbar-nav{
    flex-direction: row;
}
#footer .navbar-nav li{
    position: relative;
}
#footer .navbar-nav li:after{
    position: absolute;
    content: '';
    top:0px;
    right:0;
    width:0.5px;
    height: 16px;
    background: #ffffff;;
    transform: rotate(20deg);
}
#footer .navbar-nav li:last-child:after{
    display: none;
    
}
#footer .navbar-nav li:first-child a{
    padding-left: 0px;
}
#footer .navbar-nav a{
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
    padding: .5rem 0.8rem;
}
/* bottom content request box */
#footer .bottom-fixed-request{
    position: absolute;
    right:40px;
    bottom:80px;
    display: inline-block;
    height: 94px;
    width: 94px;
    overflow: hidden;
    transition: all 0.3s ease-out;
    white-space: nowrap;
    cursor: pointer;

}
#footer .bottom-fixed-request:hover{
    width: 457px;
}    
#footer .bottom-fixed-request .cont-fix-text{
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    text-align: left;
    display: block;
    z-index: 0;
    height: 94px;
    line-height: 24px;
    padding: 24px 0px 24px 15px;
    position: relative;
    z-index: -1;
    right:50px
}
#footer .bottom-fixed-request:hover .cont-fix-text{
    right: 50px;
    background: #0075A6;
    margin-left: 50px;
    z-index: 1;
}
#footer .bottom-fixed-request .cont-fix-text a{
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
}
#footer .bottom-fixed-request .bayerlogo{
    height: 94px;
    background: #ffffff;
    border-radius: 50%;
    width: 94px;
    display: flex;
    justify-content: center;
    align-items: center;
    float:right;
    z-index: 9;
    box-sizing: border-box;
    padding:7px;
    position: relative;
}
#footer .bottom-fixed-request .bayerlogo:hover .bottom-fixed-request{
    width: 430px;
}

#footer .bottom-fixed-request .bayerlogo img{
    height: 79px;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,.29);
}

/* landing page start */
.load-more-images .col-md-4{
    display: none; 
}
.crop-types .img-fluid{
    width: 100%;
}
 /* 18 m */
.crop-types .col-md-4 .img-fluid{
    height: 200px;
    object-fit: cover; 
}
.crop-types .col-md-3 .img-fluid, .favourites-images .col-md-3 .w-100{
    height: 200px;
    object-fit: cover;
}
 /* 18 m */
.crop-link{
    margin: 0rem 0px 2.5rem;
    display: block;
}
.crop-text{
    color: #0075A6;
    font-weight: 500;
    font-size: 19px;
    margin: 1rem 0px 0rem;
    display: block;
}
.crop-link .imghoverborder {
    position: relative;
    overflow: hidden;
    transition: color 0.25s;
}
.crop-link .imghoverborder:before, .crop-link .imghoverborder:after
   {
    border: 3px solid transparent;
    width: 0;
    height: 0;
    content: '';
    position: absolute;
    box-sizing: inherit;
    z-index: 1;
}
.crop-link .imghoverborder:after {
    top: 0;
    left: 0;
}
.crop-link:hover .imghoverborder:before {
    border-top-color: #DE0043;
    border-right-color: #DE0043;
    transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
    width: 100%;
    height: 100%;
}
.crop-link:hover .imghoverborder:after {
    border-bottom-color: #DE0043;
    border-left-color: #DE0043;
    transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
    width: 100%;
    height: 100%;
}
.crop-link:hover .imghoverborder img{
    transition: all .2s ease-in-out;
}
.crop-link:hover .imghoverborder img{
    transform: scale(1.05);
}
.saved-search .fa-search{
    font-size: 26px;
    transform: rotate(90deg);
    color: #10384F;
}
.sav-search{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.my-favourites .tab-content.pt-5{
    padding-top: 9px !important;
}
.my-favourites .media{
    border-bottom: 1px solid #cccccc;
    padding: 1.9rem 0px;
    height: 250px;
}
.my-favourites.seed-prod-list .media{

    height: auto !important;
}
.my-favourites.seed-prod-list .media:first-child{
    border-top: 1px solid #cccccc;
}
.my-favourites .media h3{
    font-weight: bold;
    letter-spacing: 0.2px;
    color: #0075A6;
    font-size: 20px;
}
.my-favourites .media ol, .my-favourites .media ul{
    padding-left:1.2rem;
    font-size: 16px;
}
.my-favourites p{
    color: #0D2A40;
}
.favourites-label{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.favourites-label .favourites-types span{
    background: #FFE0E7;
    padding:.75rem 1.25rem;
    font-size: 14px;
    font-weight: 300;
    color: #10384F;
    display: inline-flex;
    margin: 0px 10px 6px 0px;
}
.favourites-label .favourites-types span strong{
    font-weight: bold;
    color: #000000;
    padding: 0 4px 0 0;
}
#favourite-slider .owl-carousel .owl-stage-outer{
    border: 1px solid #eee;
    height: 200px;
    margin-top: 20px;
    padding:10px;
}
#favourite-slider .owl-carousel .owl-item img{
        max-height: 180px;
    width: auto !important;
    margin:auto !important;
}
.recent-btn-mob{ text-align:center;}
.date-format{
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.15px;
    margin-bottom: 0.9rem;
}
.view-link{
    color: #DE0043;
    font-weight: bold;
    text-transform: uppercase;
    border:0px;
    background: transparent;
}
.view-link span{
    font-style: italic;
    padding-left: 2px;
}
.view-link:hover{
    color: #DE0043;
}
.view-link span:hover{
    border-bottom:1px solid #DE0043;
}
.alert-dismissible .close{
    padding:.4rem 1.25rem;
    color: #DE0043;
    opacity: 1;
}
.alert-dismissible {
    padding-right: 3rem;
}
.saved-search .alert{
    background: #FFE0E7;
    font-weight: bold;
    font-size: 16px;
    border-radius: 0;
    margin-right: 15px;
}
.saved-search .alert:hover{
    background: #faccd6;
}
.date-format, .my-favourites .media h3, #content .my-favourites p, .favourites-label{
    padding-left: 0px;
    padding-right: 0px;
} 
#content .my-favourites p, #content .crop-link .description p{
    margin-bottom: 2px;
}



/* rice page */
#content  .adv-search-btn .btn.btn-white::after{
    content: '\f002';
    transform: rotate(90deg);
}
/* 18 ma */
.rice-img{
    width: 237px;
    height: 180px;
}
/* 18 ma */


.rice-sect h3{
    font-weight: 500;
    font-size: 25px;
}
.rice-sect .media-body p{
    margin-bottom: 1.5rem;
}
/* pre sowing page */
.seed-products-recomm h3{
    font-weight: bold;
    color: #0075A6;
    font-size: 18px;
    margin: 0.5rem 0rem;
}
.seed-products-recomm p{
    font-size: 18px;
    color: #000000;
}
.seed-products-recomm p span{
    display: block;
}
.seed-products-recomm .crop-link .imghoverborder:after,
.seed-products-recomm .crop-link .imghoverborder:before
{
    display: none;
}
.seed-products-recomm  .crop-link:hover .imghoverborder img {
    transform: scale(1.1);
}
.crop-prod-rec .crop-link:hover .imghoverborder img {
    transform: scale(1.1);
}
.seed-products-recomm .crop-link .imghoverborder{
    border:1px solid #cccccc;
    height: 214px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)
}

/* seeds products page */
#content  .app-filter-btn .btn.btn-white::after{
    content: '\f1de';
}
/* tabs menu */
.tabs-menus-info-details .nav-tabs {
    border-bottom: 0px solid #dee2e6;
}
.tabs-menus-info-details .nav-tabs .nav-link{
    background:#ECF7E7;
    color: #000000;
    font-weight: 500;
    font-size: 14px;
    border:0px;
    border-radius: 0;
    margin-right: 2px;
    position: relative;
    padding: 0.7rem 1rem;
}
.tabs-menus-info-details .nav-tabs .nav-link:last-child{
    margin-right: 0px;
}
.tabs-menus-info-details .nav-tabs .nav-item.show .nav-link,
.tabs-menus-info-details .nav-tabs .nav-link.active,
.tabs-menus-info-details .nav-tabs .nav-link:hover
{
    background: #0075A6;
    color: #ffffff;
}
.tabs-menus-info-details .nav-tabs .nav-link.active:after
 {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  border: 15px solid transparent;
  border-top-color: #0075A6 ;
  transform: translateX(-50%);
  z-index: -1;
}
/* table */
.table{
    color: #0D2A40; 
    overflow: inherit; /* 9 jul */
    display: table; /* 9 jul */
}
table{  /* 9 jul */
    display: block; 
    overflow-x: hidden;
}
.table td:first-child{
    color: #1F789D;
    font-weight: bold;
}
.table td, #content .table td:last-child p{
    padding: .75rem .75rem .75rem 0rem;
    font-size: 17px;
    font-weight: 500;
    line-height: normal;
}
.table td:last-child p{
    color: #0D2A40;
    margin: 0;
    padding:0 !important;
    font-weight: 300;
}
.basic-info .table td:last-child{
    color:  #0D2A40;
    width: 70%;
    font-weight: 300;

}
.table tr:last-child td{
    border-bottom: 1px solid #dee2e6;
}
/* 18 ma */
.basic-list, .basic-list ul, .basic-list ol{
    padding: 0 !important;
    margin: 0 !important; /* 24 mar */
    list-style-type: none; /* 25 mar */
}
/* 26 mar */
.basic-list ul , .basic-list ol{
    padding-top: 20px !important;
}
.table ul, .table ol{
    padding:0 0 0 1.2rem;
    margin:0;
}
/* 26 mar */

.basic-list li{
    padding-bottom: 10px;
    padding-left: 1.5rem;
}
.basic-info .table td:last-child table td, .basic-info .table td:last-child table th{
    width: auto;
    border-top: 1px solid #dee2e6 !important;
    border-left: 1px solid #dee2e6 !important;
    padding: .75rem !important;
}
.basic-info .table table{
    width: auto;
    border:1px solid #dee2e6;
    margin: 5px 0px;
    overflow-x: auto; /* 9 ju */
    display: table;  /* 9 ju */
}

/* 18 ma */


.basic-list li:before{
    display: inline-block;
    content:'\f0a9';
    font-weight: bold;
    font-family: 'Font Awesome\ 5 Free';
    color: #0075A6;
    font-size: 12px;
    width: 1.5em;
    margin-left: -2em;
    vertical-align: middle;
    margin-top: -2px;
}
/* media section */
/*.media-section{
    margin: 30px 0 70px;
}*/
.media-section{
    margin: 30px 0 0px;
}
.media-section .media-cover{
    position: relative;
}
.media-section .media-cover .owl-theme .owl-nav{ padding-right: 0}
.media-section .media-cover::before{
    position: absolute;
    content: '';
    border-top: 1px solid #dee2e6;
    top:0;
    width: 100%;
    height: auto;
}
.media-section .media-cover:last-child:after{
    position: absolute;
    content: '';
    border-bottom: 1px solid #dee2e6;
    bottom:0;
    width: 100%;
    height: auto;
}
.media-section .col-md-4 .media-box{
   padding: 5px;
    border: 1px solid #dfdfdf;
    margin: 0px;
    width: 100%;
}
.media-section .col-md-4:nth-child(3n+3) .media-box{
    padding-right: 0px;
}
.media-section.infolisting .media-box{
    align-items: flex-start; /* 25 mar */
}
.media-section .media-box{
    display: flex;
    align-items: center; /* 25 mar */
    padding: 15px 0px;
}
.media-section .media-text{
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
     padding-right: 0px;
}
.media-section .media-name{
    display: block !important;
    color: #624963;
    padding-bottom: 5px;
    font-size:14px;
}
.media-section .media-name b{ margin-right:10px;}
.media-section .download-media{
    flex: 1;
    text-align: right;
    margin-top:20px;
}

.media-cover .col-md-4{ padding: 10px 5px;}

.media-section  .download-media .popuplink{
    background: #DE0043;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
    font-size: 10px;
    color: #ffffff;
}
.media-section  .download-media img{
    transition: 0.25s ease;
}
.media-section  .download-media img:hover{
    transform: translateY(-6px);
}
.media-section .media-icon{
    max-width: 100%;
    height: 34px;
    
    
}
/* listingicon */
.media-section .media-box .imagebg{
    background: #624963;
    display: flex;
    align-items: center;
    margin-right: 1rem;
    width: 34px;
    height: 34px;
    justify-content: center;
    min-width: 34px;
    max-height: 34px;
}
.media-section.infolisting  .media-name{
    color: #1F789D;
}
/* product details section heading section */
.product-details-head-sect a{
    color: #DE0043;
    font-size: 20px;
}
/* 23mar */
#content .product-details-head-sect .btn{
    font-size: 16px; /* 24 mar */
}
.product-details-head-sect .arizeimg{
    width:235px;
    height:auto;
    object-fit: cover;
}
.product-details-head-sect .cpimg{
    width: auto;
    height: 211px;
}
/* 23mar */
.product-details-head-sect h2 span{
    color: #0075A6;
    font-size: 18px;
    font-weight: 500;
    padding-left: 1rem;    
    white-space: nowrap;

}
.product-details-head-sect label{
    font-weight: 500;
    font-size: 16px;
}
.product-details-head-sect .statessel{
    border:0px;
    padding: 0.5rem 0.8rem 0.5rem 0.2rem;
    color: #DE0043;
    line-height: normal; /* 23 mar */
}
.product-details-head-sect .form-select::after{
    color: #DE0043;
    top:12px;
    right:0px;
}
.statessel option{
    color: #000000;
}
/* star rating */
/* new star rating */
.star-rating .br-theme-fontawesome-stars .br-widget a{
    font: normal normal normal 21px/1.5 FontAwesome;
    transition: all .2s;
    margin: 0 0 0 5px !important;
    float:left;
}
.star-rating form{
    padding-right: 10px;
}
.star-rating .br-theme-fontawesome-stars .br-widget a::after,
.star-rating .br-theme-fontawesome-stars .br-widget a.br-active::after
 {
    content: '\f006';
    color: #108000 !important;
}
.star-rating .br-theme-fontawesome-stars .br-widget a.br-selected::after {
    color: #108000;
    transition: all .25s;
    content: '\f005';
}
.star-rating .br-theme-fontawesome-stars .br-widget a:hover{
    transform: rotate(-15deg) scale(1.3);
}
/* old star rating */
.star-rating {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
}
.mt-200 {
    margin-top: 200px
}
input.star {
    display: none
}
label.star {
    float: right;
    font-size: 21px;
    color: #108000;
    transition: all .2s;
    margin: 0 0 0 5px;
}
input.star:checked~label.star:before {
    content: '\f005';
    color: #108000;
    transition: all .25s;
    font-weight: 900;
}
label.star:hover {
    transform: rotate(-15deg) scale(1.3)
}
label.star:before {
    content: '\f005';
    font-family: 'Font Awesome\ 5 Free';
    font-weight: normal;  
}
/* end old star rating */
.activefavri .favricon{
    display: none;
}
.activefavri .favriconlight{
    display: block !important;
}
/* baisc info content section */
.content-sect p strong, .content-sect h3{
    font-weight: bold !important;
    color: #1F789D;
    font-size: 18px;
    margin-bottom: 15px;
}
/*.content-sect{
    margin: 50px 0px 30px;
    position: relative;
    overflow: hidden;
}*/
.content-sect{
    margin: 0px 0px 30px;
    position: relative;
    overflow: hidden;
    /*overflow-x: auto;*/
}
/*.content-sect h2, .content-sect p{
    margin-bottom: 40px;
}*/
.content-sect h2, .content-sect p{
    margin-bottom: 25px;
}
#content .content-sect p
{
    font-size: 16px;
}
.content-sect h4{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 1rem;
}
.content-sect .col-md-6 img{
    margin-bottom: 30px;
}
/* h2 heading with bar code */
#content .content-sect  h2
{
    position: relative;
    color: #DE0043;
}
.content-sect  h2:before, .contentsect .content-sect h2:nth-child(4n+1)::before
{
    content: "";
    position: absolute;
    top: 5px;
    left: -190px;
    width: 100%;
    height: 36px;
    background-image: url(../images/bluebar.png);
    background-repeat: no-repeat;
    z-index: 1;
}
.contentsect .content-sect h2:nth-of-type(2n+2)::before,
.contentsect .content-sect h2:nth-of-type(4n+3)::before
{
   display: none;
}
.contentsect .content-sect h2:nth-of-type(4n+3)::after
{
    content: "";
    position: absolute;
    top: 0px;
    right: calc(-100% - 10px);
    width: 100%;
    height: 36px;
    background-image: url(../images/bluebar.png);
    background-repeat: no-repeat;
    z-index: 1;
}
.content-sect ul, .content-sect ol{
    padding:0 0 0 1.2rem;
}

.content-sect li{
    font-size: 16px;
    padding-bottom: 1rem;
    font-weight: 300;
    line-height: 25px;
}
/* accordion */
#accordion{
    margin-top: 30px;
}
#accordion .mb-0 > a {
    display: block;
    position: relative;
  }
#accordion .mb-0 > a:after {
    content: "\f054"; /* fa-chevron-down */
    font-family: 'Font Awesome\ 5 Free';
    position: absolute;
    right: 0;
    font-weight: 900;
  }
#accordion .mb-0 > a[aria-expanded="true"]:after {
    content: "\f078"; /* fa-chevron-up */
}
#accordion h3 a{
    color: #000000;
    font-weight: bold;
    font-size: 18px;
}
#accordion .card{
    border:0px;
}
#accordion .card-header{
    background:#FFE0E7;
    border:1px solid #CCCCCC;
    border-radius: 0px;
}
#accordion .card .card-body{
    padding:1.5rem 0;
}
#accordion .card .card-body .media-section.infolisting{
    margin-top: 0px;
}
/* edit profile form */
.editform .form-group{
    margin-bottom: 2.5rem;
}
.editform .form-control,
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single,
.adv-search-box .form-control,
.adv-search-select-box .form-control
{
    border:1px solid #10384F !important;
    font-weight: 500;
    color: #10384F;
    font-size: 16px;
    border-radius: 0px !important;
    /*height: calc(1.5em + 1.4rem + 2px) !important;*/
}
.select2-container .select2-selection--single {
    height: auto !important;
}
.editform .form-control::placeholder,
.advfilterbox .form-control::placeholder

{
    color: #10384F;
    font-weight: 300;
}
.editform label,
#content .tabs-menus-info-details .advfilterbox p
{
    color: #10384F;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0.7rem;
}
.editform .form-select::after{
    top:0;
    color: #10384F;
    font-size: 20px;
    height:20px;
    width: auto;
    bottom:0;
    margin:auto;
}
.editform select.form-control{  
    padding-right: 30px;
}

#clickme, #clickme2,
#clickcrop, #clickcrop2,#clicktopictag,#clicktopictag2{
    position: absolute;
    top: -20px;
    /* z-index: 100; */
    right: 0;
}
#clickme,
#clickcrop,#clicktopictag{
    right: 90px;
}
/* 25 mar */
.editform .multiple-select select.form-control,
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-search--inline .select2-search__field
{
    height: auto !important;
    min-height: calc(1.5em + 1.4rem + 2px) !important;
    margin-top: 0px !important;
}
/* 25 mar */
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    margin-right: 0;
    color: #DE0043 !important;
    float: right;
    margin-left: .3rem;
    font-size: 16px !important;
    margin-top: -5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice{
    background: #FFE0E7 !important;
    font-weight: bold;
    border-radius: 0px !important;
    border:0px !important;
    font-size: 12px !important;
    padding:7px !important;
    margin:10px 5px !important;
    text-transform: uppercase;
}
/* advance filter btn */
.advfilter .container{
    position: relative;
    overflow: hidden;
}
.advfilter .advfilterbox{
    position: relative;
    top:0px;
    right:0;
    width: 0px;
    height: 0px;
    opacity: 0;
    -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.2s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, height 0.3s ease 0.25s;
  transition: all 0.2s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, height 0.3s ease 0.25s;
}
.advfilter .advfilterbox.active{
    width: 100%;
    height: auto;
    margin-top: 0;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.05s, opacity 0s;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.05s, opacity 0s;
}
.advfilter .advfilterbox .card{
    border:0px;
    border-radius: 0px;
}
.advfilter .advfilterbox .card-body{
    padding:0 0px 1.25rem;
}
.advfilter .advfilterbox .close{
    color: #DE0043;
    opacity: 1;
}
/* advance /filter form style */
.adv-search-box{
    align-items: center;
    display: flex;
    justify-content: space-between;
    border-top:1px solid #cccccc;
    padding: 1rem 0;    
}
.adv-search-box .form-control{
    width: 277px;
}
.adv-search-box .custom-control-label,
.tabs-menus-info-details .advfilterbox .custom-control-label
{
    font-size: 18px;
    color: #000000;
    font-weight: 300;
}
.advfilterbox .custom-control-label::before{
    top:0rem;
    border:1px solid #000000;
}
.custom-control-input:focus~.custom-control-label::before{
    box-shadow: none;
}
.advfilterbox  .custom-control-label::after{
    top:0rem;
}
.advfilterbox .custom-control-input:not(:disabled):active~.custom-control-label::before,
.advfilterbox .custom-control-input:checked~.custom-control-label::before
{
    color: #fff;
    background-color: #ffffff;
    border-color: #000000;
}
.advfilterbox .custom-checkbox .custom-control-input:checked~.custom-control-label::before
{
    color: #fff;
    background-color: #000000;
    border-color: #000000;
}
.advfilterbox .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
    background-size: 70%;
}
.advfilterbox .custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='4' fill='%23000'/%3e%3c/svg%3e");
}
#content .advfilterbox .btn::after{
    right: 18px;
    top: 12px;
    width: 20px;
    height: 20px;
    content: '';
    background: url(../images/checkicon.svg) no-repeat;
}
.adv-search-box .fa-pen{
    font-size: 12px;
}
.adv-search-select-box{
    padding: 1.4rem 0;  
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}
.adv-search-select-box .form-group{
    margin-bottom: 1.7rem;
}
.adv-search-select-box label{
    font-size: 16px;
    color: #10384F;
    font-weight: 300;
    margin-bottom: 1rem;
}
.adv-search-select-box select.form-control,
.select2-container--default .select2-selection--single
{
    background: #624963 !important;
    color: #ffffff;
    padding-right: 65px;
    border:0px !important;
    font-weight: 300;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #ffffff !important;
    font-weight: 300;
    padding-left: .75rem !important;
    padding-right:0px !important;
    line-height: 48px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    display: none;
}
.adv-search-select-box .form-select{
    position: relative;
    overflow: hidden;
}
.adv-search-select-box .form-select::before{
    background-color: #4E344F;
    position: absolute;
    right:-10px;
    transform: skewX(-12deg) scale(1);
    top:0;
    width: 65px;
    height: 100%;
    content: '';
    transition: all 0.4s ease-in-out;
    z-index: 1;
    pointer-events: none;
}
.adv-search-select-box .form-select::after{
    top:15px;
    color: #ffffff;
    font-size: 20px;
    height:auto;
    width: auto;
    z-index: 2;
    right:15px;
}
.adv-search-select-box .custom-control-label{
    color: #000000;
}
.adv-search-select-box .row{
    align-items: flex-end;
}
/* about / faq / terms and conditions / page */
.hero-banner-innerpage{
    margin-top: -60px;
}
.hero-banner-innerpage .home-full-item{
    position: relative;
    margin: 0px 0 0 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    max-height: 500px;
}
.contentsect #accordion .card {
    margin-bottom: 20px;
}
.contentsect #accordion .card .card-body{
    padding: 0.5rem 1.25rem 0;
    border:1px solid #cccccc;
    border-top:0px;
}
.contentsect #accordion h3 a{
    font-size: 16px;
}
.fancybox-slide--iframe .fancybox-content {
    width  : 100%;
    height : 100%;
    max-width  : 80%;
    max-height : 80%;
    margin: 0;
    background: black !important;
}
div.profileinfo img.img-fluid.mr-2 {
    border-radius: 50%;
}
/* preference page */
label#country_statepreference-error,label#croppreference-error {
    color: red;
}

.seed-images .media img{
    width: 120px;
    height: 160px;
    object-fit: cover;
}
audio::-internal-media-controls-download-button {
    display:none;
}
audio::-webkit-media-controls-enclosure {
    overflow:hidden;
}
audio::-webkit-media-controls-panel {
    width: calc(100% + 33px);
}  
audio {
        min-width: 100%;
}
.not-found{
    margin-top: 40px;
    text-align: center;
    font-size: 24px;
    color: #FF0000;
}
.seedimage{
    width: 120px;
    height: 162px;
    object-fit: cover;
}
/* 26 mar */
.my-favourites .description, .crop-link .description{
    display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 3;
   overflow: hidden;
   text-overflow: ellipsis;
   max-height: 80px;
   line-height: 25px;
   margin-bottom: 15px;
}
/* .my-favourites .description p:nth-child(2){
 visibility: hidden;
} */
/* 26 mar */

#favourite-slider .owl-theme .owl-dots{
    text-align: left;
}
 
#favourite-slider .owl-theme .owl-nav{
    padding-right: 0px;
}
#favourite-slider .owl-carousel .owl-item img{
    width: 200px;
    margin: 20px auto;
}
/*.owl-carousel .owl-item img {
    max-height: 800px;
}*/
.text-more{
    width:100%;
    height:46px;
    display:block;
    padding:10px;
    overflow:hidden;
    margin-bottom: 0;
}
.read-more-link, .read-less-link{
    font-size: 16px;
    display: block;
    color:#DE0043;
}
/*.login_page .owl-carousel .owl-item img,.owl-carousel .owl-item img {
    max-height: 480px;
}*/
.home-full-item .bg-image
{
    /* max-height: 480px; */
    height: auto;  /* 15 jul */
    /* object-fit: cover; */
}
.register-signincapt{
    padding: 15px 140px !important;
}
.captmaindiv{
    padding: 20px 0px;
}
.orsigin{
    font-size: 15px;
    color: #000;
    font-weight: 600;
}

/***** For load more *********/
/*.croptypelist .repeat {
    display:none;
}*/
div.cpstagelist.media {
    display:none;
}
div.myrecent {
    display:none;
}
div.product-list {
    display:none;
}
.totop {
    position: fixed;
    bottom: 10px;
    right: 20px;
}
.totop a {
    display: none;
}
/***** cookie banner landing *********/
#close_cookie{display:none;}
    #close_cookie:checked + #cookie_consent_popup{display:none;}    
#cookie_consent_popup{
    position:fixed;
    bottom:56px;
    left:30px;
    width:400px;
    height:210px;
    background-color:#624963;
    padding:20px;
     z-index:2;
     color: #ffffff;
    font-size: 15px;
}
    #cookie_consent_popup h1{
        font-size:1.2em;
    }
    #cookie_consent_popup h1:before{
        content:"";
        padding:0;
    }
    #cookie_consent_popup p{
        font-size:0.7em;
    }
    #cookie_consent_popup #close_cookie_box{
        position:absolute;
        top:20px;right:20px;
        cursor:pointer;
        font-size:1.3em;
    }
    #cookie_consent_popup #ok_cookie_box{
        position:absolute;
        bottom:-4px;
        right:0px;
        cursor:pointer;
        font-size:1.6em;
        padding:10px 20px;
        font-weight:700;
        color:#ffffff !important;
    }
    .cookiedescbanner{
        line-height:23px;
    }
    .cookieprivacy{
        color: #fff;
        font-weight: bold;
    }
    .cookieprivacy:hover,.cookieok:hover{
        color: #fff;
    }
    .cookieok{
        color: #fff;
        border: solid 1px #fff;
        border-radius: 20px;
        padding: 5px 20px;
        font-size: 18px;
        font-weight: normal;
    }

/***** Added by Abhishek on 25 May 2021 *********/
.mr-4.seedimage.adjust-image{
    height: 165px;
}

/********* New Agronomy Advisory design *****************/

.sub-tab-section .nav-tabs {
    border-bottom: 1px solid #ddd;
}
.sub-tab-section .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}
.sub-tab-section .nav-link {
    display: block;
    padding: .5rem 1rem;
}
.sub-tab-section .nav-tabs .custom-tab
{
    background-color: transparent;
}
.sub-tab-section .nav-tabs .custom-tab:hover{
    border-color: #e9ecef #e9ecef #ddd;
    background-color: transparent;
    color: #000;
}
.sub-tab-section .nav-tabs .custom-tab.active {
    color: #495057;
    background-color: #fff;
    border-color: #ddd #ddd #fff;
}
.sub-tab-section .custom-tab.active:after{

   content: none !important;

}
.agrotab.active{
    background-color: #0075A6 !important;
    color: #fff !important;
}
.share_icon{
    padding: 5px;
}
/*new header 22*/
.navbar{
    flex-direction: column;
}
.sub-menu-list {
    width: 100%;
}

.sub-navbar li a{
 display: block;
    padding: 0.67rem  calc(40px + (94 - 40) * ((100vw - 1024px) / (1920 - 1024))); /* 8 july */
    color: #fff;
    font-size:18px;
    letter-spacing: 1px;
    background-color: #287031;
    line-height: 1.1; /* 8 july */
}
.sub-navbar .active a, .sub-navbar  li:hover a{ /* 8 july */
    background-color: #ef4655 !important;
}

.sub-navbar{
    background-color: #287031;
    margin: 0;
    display: flex;
    padding: 0;
}
.sub-navbar li{
    display: inline-block;
    border-right:solid 2px #FFF;

}
/* 8 july */
/* .search{
    background-color: #7f4e6b !important;
} */
/* 8 july */
/* #header .header-right-menu {
    right: 260px;
} */
/* 8 july */
/* #header .header-right-menu:before {    background-color: #009bd2;} */

#header .navbar-expand-md .navbar-nav .nav-link {
    padding: .2rem 0.8rem;

}
.main-header{
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
}


.search{
    background-color: #7f4e6b;
}
.sub-menu-list .sub-navbar li:first-child a i, .sub-menu-list .sub-navbar li a.search i{
    display: inline-flex; /* 8 july */
}
.sub-menu-list .sub-navbar li a i{
font-size: 16px;
display: none; /* 8 july */
}
.logo_section{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 13.1px 20px;
}
#header .affix .navbar-brand .first_logo{
    width: 250px;
}
.top_right-bar{
position: absolute;
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
 
 
}
.science-text {
    position: absolute;
    left: -160px;
    top: 12px;
}
.science-text:before {
    content: url(../images/blue-strip-header.png);
    position: absolute;
    left: -58px;
    top: -1px;
}
.science-text p{
font-weight:500;
font-style: italic; /* 8 july */
}
/*new header 22*/

.register-bar{
    margin-bottom: 30px;
}
.editform .select2-container--default .select2-selection--single{
    background: #ffffff !important;
    border:1px solid #10384F !important;
}
.editform .select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #10384F !important;
}
#content .description-details p, .content-sect .description-details ul, #content .description-details li, #content .description-details table, 
#content .description-details h1, #content .description-details h2, .content-sect .description-details p strong, #content .description-details h2:before, #content .description-details h3{
    all: revert;
}
#content .description-details table{
    border-collapse:collapse;
}
b, strong {
    font-weight: bold;
}

.col-width {
    max-width: 500px;
    margin-top: 20px;
}
.basic-info-view{ display: flex; align-items:center; font-size:14px; margin-bottom:15px !important;}
.basic-info-dynamicattrdetail{ margin-right:15px;}
.basic-info .table {overflow: hidden;}

select#globallanguage{
    padding:5px;
}

#dynamic-media-carousel .owl-carousel .owl-stage{display: flex;}
#dynamic-media-carousel .owl-carousel.owl-drag .owl-item{
 border: 1px solid #eee;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 0;
    box-shadow: inset 0px 0px 5px 0px #eee;

}
.iframeSet iframe{ width: 100px !important; height: 100px !important;}
.imghoverborder img{
    object-fit: cover;
    width: 100%;
}
.science-text {
position: absolute;
left: -200px;
top: 12px;
}
.select2-container--default.select2-container--disabled .select2-selection--single
{
opacity: 1;
background-color: #e9ecef !important;
}
.support{
border: 1px solid #ddd;
padding: 5px;
}
.support .fal{
font-family: 'Font Awesome\ 5 Free';
font-size: 24px;
color: #222;
position:relative;
}
.support .fal span{
display: block;
font-size: 12px;
padding-top: 2px;

}
.support .fal.active.like{
color: #00FF00;
}
.support .fal.active.dislike{
color: #DE0043;
}

.fullwidth{ width:100%}
.noBorder{ border:0 !important;}

.noBorder .card-image{
    border:1px solid rgba(0,0,0,0.12);
        max-height: 205px !important;
    padding: 5px;
}
.noBorder .card-image video{
    max-height: 193px !important; 
}

.noBorder .card-body{
    padding: 0 !important;
}

.noBorder .card-title{
        font-size: 16px !important;
    /*color: var(--primary);*/
    margin: 5px 0 10px 0 !important;
    /*font-weight: bold;*/
}

.noBorder .star-rating{
    position: relative;
    top: 0px;
}
.tabs-menus-info-details.tabs-sub .nav-tabs .nav-link{
 
    padding: 0.4rem 1rem;
}

.tabs-menus-info-details.tabs-sub .sub{
    margin:12px 5px 0 5px;
}
.sub-navbar li a{
    white-space:nowrap;
}
.seedProduct{
    padding-top:0 !important;
}

.seedProduct h3{
    padding: 5px;
    color: #000 !important;
background: #eee !important;
font-size: 14px !important;
}

.seedProduct p{
    font-size: 14px !important;
margin-bottom: 0;
padding: 5px;
line-height: 1 !important;
}
.seedProduct p b{
    color: grey;
}
.seedProduct a:hover{
    text-decoration: none !important;
}
.seedProduct  .img-seed{
    max-width:100%; width:auto !important; height: 150px !important; margin:auto;
}
.seedProduct .view-link{
    margin-top: 10px;;
}

.seedProduct h2{
    color: #DE0043 !important; 
    padding: 20px 0 0 0 !important;
}
.sub-navbar li a:hover{
    text-decoration: none !important;
}
#loading-loader1 {
        position: fixed;
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        text-align: center;
        opacity: 0.7;
        background-color: #ccc;
        z-index: 99;
    }

    .loading-image1 {
        position: absolute;
        top: 44%;
        left: 40%;
        z-index: 100;
        color:#000;
        font-size:30px;
    }
    .highlight-me {
        color: #DE0043 !important;
        background-color: transparent !important;
    }

