
@font-face {
    font-family: 'helveticaneue_bold';
    src: url('https://static.fibre2fashion.com/staticresources/fonts/helveticaneuebold-webfont.woff2') format('woff2'),
        url('https://static.fibre2fashion.com/staticresources/fonts/helveticaneuebold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'helveticaneue_medium';
    src: url('https://static.fibre2fashion.com/staticresources/fonts/helveticaneuemedium-webfont.woff2') format('woff2'),
        url('https://static.fibre2fashion.com/staticresources/fonts/helveticaneuemedium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'helveticaneue_regular';
    src: url('https://static.fibre2fashion.com/staticresources/fonts/helveticaneue-roman-webfont.woff2') format('woff2'),
        url('https://static.fibre2fashion.com/staticresources/fonts/helveticaneue-roman-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'helveticaneue_light';
    src: url('https://static.fibre2fashion.com/staticresources/fonts/helveticaneue-light-webfont.woff2') format('woff2'),
        url('https://static.fibre2fashion.com/staticresources/fonts/helveticaneue-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
:root {
    --sectiontitle-color: #012B65;
    --highlightedcolor: #105BEF;
    --blackcolor: #000000;
    --whitecolor: #ffffff;
    --title-34: 34px;
    --title-24: 24px;
    --title-20: 20px;
    --bodytext: 16px;
    --text-15: 15px;
    --text-14: 14px;
    --text-13: 13px;    
    --text-light: 'helveticaneue_light';
    --text-ragular: 'helveticaneue_regular';    
    --text-medium: 'helveticaneue_medium';
    --text-bold: 'helveticaneue_bold';

}
body {
    padding: 0px;
    font-size: var(--text-15);
    margin: 0px;
    font-family: var(--text-ragular);
    height: auto !important;
}
.padding80 {
    padding: 40px 0;
}

.top-header {
     /* margin: 5px 0; */
    /* line-height: 1.5; */
    padding: 5px 0;
    line-height: 1.5;
    background-color: var(--whitecolor);
}
 
.top-header-left {
    display: flex;
    align-items: center;
   
}

.top-header-btn .sponsored-btn {
    text-decoration: none;
    font-size: 14px;
    padding: 3px 10px;
    background: var(--whitecolor);
    border: 1px solid rgba(114, 114, 114, .2);
    box-sizing: border-box;
    border-radius: 5px;
    text-align: center;
    color: var(--background-color);
    display: inline-block;
    font-weight: 500;
	margin-left:0px;
}
.top-header-left span {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 400;
}

#slideshow1 .swiper-slide {
    height: auto !important;
}


.main-header {
    background-color: var(--sectiontitle-color);
    padding: 12px 0px;
    position: relative;
    z-index: 999;
}
.top-header-section {
    background: #00338D;
	position:sticky;
	top:0px;
	z-index:9999;
    /* dark blue */
}
.top-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-header-wrapper .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0px;
	top:0px;
    /*left: -3px;*/
    width: 1px;
    height: 12px;
    background-color: var(--whitecolor);
	margin:auto auto;
    
}
.top-header-wrapper .nav-link:first-of-type:before {
    display: none;
}
.top-header-wrapper .nav-links>ul {
    display: flex;

    margin: 0px;
    padding: 0px;
    list-style-type: none;
}
.top-header-wrapper .nav-link {
    position: relative;
}
.top-header-wrapper .nav-link>a {
    line-height: 3em;
    color: var(--whitecolor);
    padding: 0 .8em;
    letter-spacing: 1px;
    font-size: var(--text-15);
    font-family: var(--text-ragular);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    letter-spacing: 0;
    transition: .5s;
}
.top-header-wrapper .nav-link:first-child a {
    padding-left: 0px;
}
.top-header-wrapper .nav-link>a img {
    margin-left: 5px;
}
.top-header-wrapper .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
    z-index: 99;
}
.top-header-wrapper .dropdown ul {
    position: relative;
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}
.top-header-wrapper .dropdown-link>a {
    display: flex;
    background-color: #012454;
    color: var(--whitecolor);
    padding: 11px 18px;
    font-size: var(--text-15);
    text-decoration: none;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}
.top-header-wrapper .dropdown-link:hover>a {
    background-color: #00338d;
    color: var(--whitecolor);
}
.top-header-wrapper .arrow {
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: var(--sectiontitle-color);
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}
.top-header-wrapper .dropdown-link:first-child:hover~.arrow {
    background-color: var(--sectiontitle-color);
}
.top-header-wrapper .dropdown-link {
    position: relative;
}
.top-header-wrapper .dropdown.second .arrow {
    top: 10px;
    left: -5.5px;
}
.top-header-wrapper .nav-link:hover>.dropdown,
.top-header-wrapper .dropdown-link:hover>.dropdown {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}
.heder-right-links {
    display: flex;
    align-items: center;
    column-gap: 16px;
}
.corporate a {
    color: var(--whitecolor) !important;
    text-decoration: none;
    font-size: var(--text-15);
    font-family: var(--text-ragular);
    border-right: solid 1px var(--whitecolor);
    padding-right: 13px;
}
.globe-icon {
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: var(--whitecolor);
    font-family: var(--text-medium);
}
.main-header-wrapper {
    display: flex;
    justify-content: space-between;
	align-items:center;
}



.signin-btn a {
   background-color: #0843AA;
    color: var(--whitecolor);
    font-size: var(--text-13);
    font-family: var(--text-ragular);
    border-radius: 5px;
    padding: 5px 15px;
    border: solid 1px #0843AA;
    text-decoration: none;
    display: inline-block;
}

.signin-btn a:hover {
    background-color: transparent;
    color: var(--whitecolor);
}

.search-wrapper {
    display: flex;
    column-gap: 18px;
	align-items:center;
}
a.search-icon.user-icontxt {
    border-radius: 50%;
    height: 30px;
    width: 30px;
    padding: 0;
    text-align: center;
    /* line-height: 30px; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.signin-btn.open {
    position: relative;
}
.signin-btn {
    position: relative;
}

        .search-icon .fa-angle-down {
            position: absolute;
    color: var(--whitecolor);
    top: 6px;
    right: -10px;
    font-size: 18px;
        }
		
		
		#advsearchhide a, #advsearchhide1 a, .selectric .label {
        text-transform: uppercase;
        font-family: var(--text-bold)
    }
	ul.dropdown-menu.user-dropdown {
    background: #0843aa;
    right: 0;
    left: auto;
	padding: 0;
}
ul.dropdown-menu.user-dropdown li a {
    color: var(--whitecolor);
    font-weight: normal;
    font-size: var(--smallfontsize);
    border-bottom: 1px solid #1a5fd8;
    padding: 5px 10px;
    border-radius: 0;
}
ul.dropdown-menu.user-dropdown li a:hover {
    background: #1a5fd8;
}
@media screen and (max-width:990px) {
.top-header-wrapper .nav-link>a, .corporate a{font-size: var(--text-13);}
}


    .weglotdiv.multilanguage {
        top: 0px;
        margin-left: 0px;
        position: relative;
        height: 15px;
        list-style: none;
    }

    .multilanguage .wg-drop.country-selector .wgcurrent {
        background-color: transparent !important;
        border-radius: 0px;
		
       /* padding-right: 18px;
        width: 140px;*/
    }
    .weglotdiv.multilanguage .wgcurrent a {
        margin-left:0px;
    }

    .multilanguage .wg-drop.country-selector .wgcurrent a {
        padding: 0px 7px 5px 0px;
        height: inherit;
        color: var(--whitecolor);
        font-size: 13px;
        gap: 5px;
		
    }

    .multilanguage .wg-drop.country-selector .wgcurrent {
        border: 0px;
		padding-right: 5px;
    }

    .country-selector {
        display: inline-block;
        font-size: 13px;
        position: relative;
        text-align: left;
        width: auto;
    }

    .multilanguage .wg-drop.weg-openleft ul {
        right: 0;
        padding-top: 0px;
        border-radius: 0px;
    }

    .wg-flags a img.wg-flag {
        height: 18px !important;
        margin-right: 2px !important;
        border: solid 2px var(--whitecolor);
        border-radius: 100%;
    }

    .wg-drop.country-selector .wgcurrent:after {
        filter: invert(1);
        right: -5px !important;
        bottom: -5px !important;
    }


    .wg-drop.country-selector:hover .wgcurrent.wg-li.wg-flags:after {
        transform: rotate(-180deg);
    }

    .wg-drop.country-selector .wgcurrent.wg-li.wg-flags:after {
        transform: rotate(0deg);
    }

    .wg-drop ul {
        right: 0;
        padding-top: 0px;
        border-radius: 0px;
    }

    .multilanguage .weglot-container ul li a:first-child {
        font-size: 13px;
    }
/*adversitement text above banner advertisements*/
    .advertisement-text {
    font-size: var(--text-13);
    text-align: center;
    color: #ccc;
    padding: 0 0 5px 0;
}
hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eeeeee !important;
}
.mb-0 {
    margin-bottom: 0px;
}
