@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/gothic.eot');
    src: url('../fonts/gothic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/gothic.woff') format('woff'),
    url('../fonts/gothic.ttf') format('truetype'),
    url('../fonts/gothic.svg#gothic') format('svg');
    font-weight: normal;
    font-style: normal;

}
html,body{
    margin:0;
    padding:0;
    font-family: Century Gothic, sans-serif;
}
*{
    outline: none;
}

a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}
/*----------Header-------*/

.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
#preloader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;

    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */

    z-index: 1001;
}

    #preloader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #e74c3c;

        -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    #preloader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #f9c922;

        -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
          animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    @-webkit-keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
    @keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }

    #loader-wrapper .loader-section {
        position: fixed;
        top: 0;
        width: 51%;
        height: 100%;
        background: #222222;
        z-index: 1000;
        -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(0);  /* IE 9 */
        transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
    }

    #loader-wrapper .loader-section.section-left {
        left: 0;
    }

    #loader-wrapper .loader-section.section-right {
        right: 0;
    }

    /* Loaded */
    .loaded #loader-wrapper .loader-section.section-left {
        -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(-100%);  /* IE 9 */
                transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
                transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }

    .loaded #loader-wrapper .loader-section.section-right {
        -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(100%);  /* IE 9 */
                transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
        transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }
    
    .loaded #preloader {
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;  
                transition: all 0.3s ease-out;
    }
    .loaded #loader-wrapper {
        visibility: hidden;

        -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateY(-100%);  /* IE 9 */
                transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.3s 1s ease-out;  
                transition: all 0.3s 1s ease-out;
    }

.header-main{
    background: rgba(0,0,0,1);
}
.Home .header-main {
    background: rgba(0,0,0,0.8);
}
.header-main.retail-app-header{
    background: #FAFAFA;
    box-shadow:0px 1px 2px 1px #ccc;    padding-bottom: 0;
}

.create-an-account .header-top{
    text-align: right;
    color: #fff;
    padding-right: 0;
    float: right;
}
.retail-app-header .create-an-account .header-top {
    color: #231f20;
}
.create-an-account .header-bottom{
    float: right;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-right: 0;
}
.header-main .create-an-account .header-top .client-login{
    float: right;
    display: inline-block;
}
.header-main .create-an-account .header-top .space{
    display: inline-block;
}

.header-main .container{
    padding-top: 2.5%;
    position: relative;
}
.header-main.retail-app-header .container
{
    padding-top: 0;
}
.header-main.retail-app-header .container .col-md-3
{
    height: 100%; 
}
.header-main.retail-app-header .container .col-md-3 .logo
{
    height:auto;
}
.header-main.retail-app-header .container .col-md-3 .logo img
{
    width: auto;
    height: 100%;
    max-height: 130px;
    max-width: 100%;
}
.header-main.retail-app-header .container .col-md-9
{
    padding-top: 2.6%; 
}
.header-main a.phone{
    color:#fff;
    font-size: 18px;
    font-weight: bold;
}
.header-main.retail-app-header a.phone {
    color: #231f20;
    font-size: 18px;
    font-weight: bold;
}

.client-login a.button{
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 10px;
    font-size: 14px;
    font-size: 14px;
}
.header-main.retail-app-header .client-login a.button {
    color: #231f20;
    border: 1px solid #231f20;
    padding: 5px 20px;
    margin-left: 0px;
}
.header-main .nav>li>a:focus, .header-main .nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
}
.header-main .nav>li>a {
    color: #fff;
    font-size: 16px;
    padding: 10px 40px;
    text-transform: uppercase;
}
.header-main.retail-app-header .nav>li>a{
    color:#231f20;
}
.header-main .nav>li>a:last-child{
    padding-right:0;
}

section#home #slider
{
    height:837px;
    background-color: #68736f;
}
.print-logo{
    display:none !important;
}

.Home header {
    position: fixed;
    z-index: 2;
    width: 100%;
    display: block;
}

#about .banner-wrapper{
    
    height: 550px;
    position: absolute; 
    top: 0;
    width: 100%;
    left: 0;
}

header .menuToggle{

    display:none;

}

section#home #slider .caption-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: block;
}

section#home #slider .caption-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: block;
}

section#home #slider .caption-wrapper .prev,section#home #slider .caption-wrapper .next{
    position: absolute;
    top: 50%;
    background-color: transparent;
    color: #9a9899;
    border: 1px solid #7c7d7f;
    padding: 0px 23px;
    left: 0;
    font-size: 45px;
    border-radius: 44px;
    display: inline-block;
 }
section#home #slider .caption-wrapper .prev:hover,section#home #slider .caption-wrapper .next:hover{
    color: #fff;
    border: 1px solid #fff;
}
section#home #slider .caption-wrapper .next{
    right:0;left: auto;
}

section#home #slider .caption-wrapper .caption{
    position: absolute;
    top:30%;
    text-align: center;
    max-width:73%;
    left:0;
    right:0;
    margin:0px auto;
}
section#home #slider .caption-wrapper .caption h1{
    color: #fff;
    font-size: 84.41px;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 1px 0px 30px #000;
    line-height: 60px;
    line-height: 90px;
}
section#home #slider .caption-wrapper .caption h3{
    color: #fff;
    font-size: 38.44px;
    text-transform: uppercase;
    font-weight: normal;
    text-shadow: 1px 0px 30px #000;
}

section#home #slider .caption-wrapper .caption p{
    color: #fff;
    font-size: 18px;
    text-transform: none;
    font-weight: lighter;
    text-shadow: 1px 0px 30px #000;
    margin-top: 30px;
    line-height: 27px;
    margin-bottom: 30px;
}

section#home #slider .caption-wrapper .caption a.button{
    color:#fff;
    border:1px solid #fff;
    text-transform: uppercase;
    font-size:20.83px;
}
.header-top .client-login a.account-creation {
    color:#fff;
    text-decoration: none;
}
.header-top .client-login a.shopping-cart-header{
    color: #fff;
    text-decoration: none;
    display: inline-block;
    z-index: 2;
    position: relative;
}

.field-two .container p{
    font-family: Century Gothic, sans-serif;
    font-size: 15px;
    color: #696a6d;
}
.field-two .container .col-md-6{
    padding-left: 30px;
    float: right;
    padding-top: 2%;
    padding-bottom: 2%;
    z-index: 1;
}
.field-two .container h3{
    font-family: Century Gothic, sans-serif;
    font-size: 35px;
    color: #414042;
    text-transform: uppercase;
}
 

.header-cart-items {
    position: absolute;
    width: 290px;
    z-index: 2;
    right: 0;
    border: 1px solid #ccc;
    border-top: 0;
    top: 65%;
    box-shadow: 1px 4px 7px 1px #999;
    display: none;
    background-color: #f1f1f2;
}
.header-cart-items:before {
    content: "\f0d8";
    font-family: FontAwesome;
    position: absolute;
    top: -44px;
    font-size: 50px;
    left: 42%;
    color: #f1f1f2;
}

header .main-nav .mobile
{
    display:none;
} 

.mobile-sidebar-search
{
    display:none;
}
/*----------Header-------*/





/*------ Guide -------*/

.guide{
    background: #231f20;
    min-height: 200px;
}
.guide .image{
    padding-top: 40px;
    padding-left: 0;
    width: 10%;
}
.guide .buying{
    padding-top: 35px;
}
.guide .buying h2{
    font-family: Century Gothic, sans-serif;
    font-size: 25px;
}
.guide .buying p{
    font-family: Century Gothic, sans-serif;
    font-size: 15px;
}
.guide .download{
    padding-top: 3%;
    text-align: right;
}
.guide .download a{
    font-size: 18px;
    color: #bfbfbf;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 10px;
}
/*------ Guide -------*/

/*--------field-1 ---------*/

.col-md-12.field-one .col-md-6.right, .col-md-12.field-one{
    padding-right: 0;
    padding-left: 0;
}
.col-md-12.field-one .col-md-6.right img{
    width: 100%;
}
.field{
    clear: both;
}
.field-one .about {
    padding-left: 9%;
    padding-top: 3%;
    padding-right: 30px;
}
.field-one h3{
    font-family: Century Gothic, sans-serif;
    font-size: 35px;
    color: #414042;
}
.field-one p{
    font-family: Century Gothic, sans-serif;
    font-size: 15px;
    color: #696a6d;
}
section#about .field.steps{
    padding-top:20px;
}
section#about .field.steps .step1 .col-md-12,section#about .field.steps .step2 .col-md-12,section#about .field.steps .step3 .col-md-12
{
    padding: 10px 0;
}
/*----------field-1-------*/

/*----------field-2-------*/

.field-two .brand{
    padding-right: 10%;
    padding-top: 2%;
    padding-left: 30px;
}
.field-two{
    padding-left: 0;
    padding-right: 0;
}
.field-two .col-md-6.left{
    padding-left: 0;
    padding-right: 0;
}
.field-two .col-md-6.left img{
    width:100%;
}
.field-two .col-md-6.right h3{
    font-family: Century Gothic, sans-serif;
    font-size: 35px;
    color: #414042;
}
.field-two .col-md-6.right p{
    font-family: Century Gothic, sans-serif;
    font-size: 15px;
    color: #696a6d;
}
 
.field-one .container .col-md-6{
    padding-right: 30px;
    padding-top: 2%;
    
    padding-bottom: 2%;
}
#about .field-two .mobileOnly {
    display:none;
    }
/*----------field-2-------*/


/*----------field-3---------*/

.field-three{
    background: #f0f6f8;
}
.field-three h2{
    font-family: Century Gothic, sans-serif;
    font-size: 45px;
    color: #414042;
    text-align: center;
}
.field-three p{
    font-family: Century Gothic, sans-serif;
    font-size: 20px;
    color: #696a6d;
    text-align: center;
}
.field-three .container{
    padding: 35px 10%;
}
.seprator{ 
    overflow: hidden;
    clear: both;
    background-image: url(../images/border-line.png);
    background-repeat: repeat-x;
    padding-top: 100px;
    margin-bottom: 0;
    background-position: center center;
}

/*----------field-3-------*/

/*----------steps-------*/

.field.steps .field p{
    color: #696a6d;
    font-size: 15px;
}
.field.steps .field img{
    width: 100%;
}
.steps h3{
    color: #414042;
    padding-bottom: 10px;
    font-size: 35px;
    margin-top: 0;
}

section#about .field.steps.shapes
{
    background-color:#dde8ed;
    padding: 40px 0;
}
section#about .field.steps.shapes h3{
    text-transform: uppercase;
}
#about .shapes .col-md-12{
    margin-bottom:20px;
}

section#about .browse-diamonds
{
    margin: 20px 0;
}
section#about .browse-diamonds a{
    text-decoration: none;
}
section#faq a{
    text-decoration: none;
}

/*----------steps-------*/


/*----------Faq-------*/
.faq{
    background: #f0f6f8;
    overflow: hidden;
    padding-bottom: 45px;
}
.faq h1{
    text-align: center;
    color: #737578;
    padding: 45px;
}
.faq .question{
    font-size: 15px;
    background: #dde8ed;
    padding: 10px 15px;
    color: #696a6d;
    margin-bottom: 15px;
}
.question:after {
    content: "\f107";
    font-family: FontAwesome;
    color: #696a6d;
    padding: 0;
    margin-right: 10px;
    float: right;
    font-size: 20px;
}
.question.active:after {
    content: "\f106";
    font-family: FontAwesome;
    color: #696a6d;
    padding: 0;
    margin-right: 10px;
    float: right;
    font-size: 20px;
}
 .faq .question:hover{
    text-decoration: none;
 }
.faq .answer{
    margin-bottom: 15px;
    color: #696a6d;
}
.faq .answer *{
    white-space: pre-wrap;
}
.faq .faq-section a.q:hover{
    text-decoration: none;
}
.answer{
    display: none;

}
+
/*----------Faq-------*/


/*------------universal--------*/
html,body{
    padding:0;
    margin:0;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}
p{
    font-size:15px;
}
.container{
    max-width:1200px ;
    margin:0 auto;
}

.text-center{
    text-align: center;
}
.white{
    color: #fff;
}

/*------------universal--------*/


/*------ footer -------*/
.footer-center{
    background-image: url("../images/footer-top.jpg");
    background-position: center;
    background-size: cover;
}
.footer-center  .container{
    padding: 45px 0;
}
.footer-heading{
    text-align: center;
    font-size: 35px;
    margin-bottom: 30px;
    padding-top: 20px;
    color: #fff;
}
.footer-center h3{
    font-family: 'Century Gothic', sans-serif;
    font-size:25px;
    color:#fff;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-center p,.footer-center a{
    color:#fff;
}
.footer-center{
    color:#fff;
}

footer .footer-top {color:#fff;}
.footer-top .footer-contact .col-md-6{
    padding-left:0;
}
#bookingPersonal .field input, #bookingPersonal .field textarea{
    width: 95%;
    padding: 5px 10px;
    margin-bottom: 15px;
    margin-bottom: 15px;
    border: 0;
    padding: 10px 15px;
    border: 1px solid #e6e7e8;
    box-shadow: 0 0 2px 0px #fff;
    color: #939598;
}
#bookingPersonal form input[type="submit"]{
    background: transparent;
    padding: 10px 20px;
    font-size: 15px;
    border: 1px solid #fff;
    width: auto;
}
#bookingPersonal{
    padding-left: 15px;
}
.footer-bottom{
    background-color: #000;
    padding: 25px 0;
    color: #fff;
}
.footer-bottom p{
    margin-bottom:0;.
}
.footer-bottom .textright p{
    text-align: right;

}
.footer-bottom .col-md-6{
    padding-left: 0;
    padding-right:0;
}
.contact-lower .col-md-6 ul{
    list-style: none;
    padding-left: 0;
}
.contact-lower .col-md-6 ul li{
    display: inline-block;
    float: left;
    margin-right: 15px;
}
.contact-lower .col-md-6 ul li i{
    color: #000;
    background: #fff;

    border-radius: 25px;
    font-size: 20px;
    font-weight: bold;
}
.contact-lower .col-md-6 ul li i.fa-facebook{
    padding: 7px 12px;
}
.contact-lower .col-md-6 ul li i.fa-twitter{
    padding: 7px 8px;
}
.contact-lower .col-md-6 ul li i.fa-linkedin{
    padding: 7px 9px;
}
.contact-lower .col-md-6 ul li i.fa-google-plus{
    padding: 7px 4px;
}
.footer-top .footer-contact .col-md-12.contact-upper, .footer-top .footer-contact .col-md-12.contact-lower{
    padding-left: 0;
    padding: 0;
}
.footer-top .footer-contact .col-md-12.contact-upper .col-md-6 p, .footer-top .footer-contact .col-md-12.contact-lower .col-md-6 p{
    font-weight: bold;
    margin-bottom:10px;
}
.footer-top .footer-contact .col-md-12.contact-lower{
    margin-top: 30px;
}
.footer-top .footer-contact p{
    margin-bottom:20px;
}
footer .footer-top h3{
    margin-bottom:30px;
}

/*------ footer -------*/

.button{
    padding-top: 20px;
    clear: both;
    text-align: center;
    padding-bottom: 20px;

    color: #58595b;
    text-decoration: none;
    border: 2px solid #58595b;
    padding: 10px 25px;
    font-size: 26.5px;
    cursor: pointer;
    display: inline-block;
}
.button.black{
    margin: 35px auto;
}
.download .button {
    margin: 35px auto;
}
.button:hover{
    text-decoration: none;

}
.button.black:hover{
    background: #f0f6f8;
    color:#58595b;
}



.carousel,
.item,
.active {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

/* Background images are set within the HTML using inline CSS, not here */

.fill {
    width: 100%;
    height: 100%;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}


section#slider{height: 837px; }

/**Info and resources page css**/
#info_resources{
    overflow:hidden;
}
#info_resources .info-resources-blog .blog-posts .col-md-4 img{
    width:100%;
}
#info_resources .info-resources-blog a.button{
    font-size:15px;
    text-align:center;
    margin: 0px auto 35px;
}
#info_resources .info-resources-blog a.button:hover{
    color: #fff;
}
#info_resources .info-resources-blog .load-more{
    text-align: center;
}
#info_resources .info-resources-blog .blogList .col-md-4 span{
    color:#414042;
    font-weight:bold;
    font-size:15px;
}
#info_resources .info-resources-blog .blogList .col-md-4 h4{
    font-weight: lighter;
    color: #414042;
}
#info_resources .info-resources-blog .blogList .col-md-4 p{
    color: #696a6d;
}
#info_resources .info-resources-blog .blogList .col-md-4{
    margin-bottom:40px;
}
#info_resources .page-title{
    text-align: center;
}
 #info_resources .page-title h2{
     margin: 50px auto;
     font-size: 35px;
     font-family: Century Gothic, sans-serif;
     color: #414042;
 }
#info_resources .sidebar ul{
    padding-left: 0;
    list-style: none;
    margin-bottom:35px;
}
#info_resources .sidebar ul li{
    font-size: 15px;
    color: #696a6d;
}
#info_resources .sidebar{
    color: #414042;
}
#info_resources .sidebar h4:first-child{
    margin-top: 0;
}
#info_resources .sidebar h4{
    margin-bottom: 20px;
}
#info_resources .sidebar .sidebar-articles .sidebar-img{
    padding-left: 0;
    padding-right: 0;
}
#info_resources .sidebar .sidebar-articles .sidebar-img img{
 width:100%;
}
#info_resources .sidebar .sidebar-articles .blogSidebar-title p{
    font-size: 14px;
    color: #696a6d;
}

/**End Info and resources page css**/

/* Welcome page css**/
#my_account .icon-boxes .col-sm-2{
    background: #000000;
    text-align: center;
    min-height: 140px;
    margin-right: 15px;
}
#my_account{
    background-image: url('../images/my-account-bg.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}
#my_account .icon-boxes{
    padding-top: 7%;
    padding-bottom: 3%;
    overflow: hidden;
}
#my_account .icon-boxes img{
    padding-top: 25px;
}
#my_account .icon-boxes h5{
    font-size: 16px;
    color:#fff;
}

#my_account .icon-boxes .col-sm-2 i{
    font-size: 60px;
    padding-top: 25px;
    color: #fff;
}
#my_account .col-sm-offset-1 {
    margin-left: 5.333333%;
}
#my_account .text-content h2{
    font-size: 38.44px;
    color:#fff;
    margin-bottom: 25px;
}
#my_account .text-content{
    text-align:center;
}
#my_account .text-content a{
    font-size: 20.83px;
    color:#fff;
    border: 1px solid #fff;
    margin-bottom: 10%;
}
#my_account .text-content h4{
    padding: 0 20% 2%;
    line-height: 30px;
    color:#fff;

}
/* End Welcome page css**/


/*------------login page----------*/

.login-details{
    overflow: hidden;
}
.page-title h2, .title h1{
    margin: 20px auto;
    font-size: 35px;
    font-family: Century Gothic, sans-serif;
    color: #414042;
}
.login-details .page-title{
    text-align: center;
}
/*.login-heading h3{
    border-bottom: 3px solid;
    display: inline-block;
    text-align: center;
}*/
.heading h4{
    font-size: 20px;
    font-family: Century Gothic, sans-serif;
    color: #414042;
}

#login-form-page form {
    color:#a9a9a9;
}

#login-form-page form input[type=text],#login-form-page form input[type=email],#login-form-page form input[type=password]{
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid #e6e7e8;    color: #939598;
}

#login-form-page form input[type=text]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #939598;
}
#login-form-page form input[type=text]::-moz-placeholder { /* Firefox 19+ */
    color: #939598;
}
#login-form-page form input[type=text]:-ms-input-placeholder { /* IE 10+ */
    color: #939598;
}
#login-form-page form input[type=text]:-moz-placeholder { /* Firefox 18- */
    color: #939598;
}

#login-form-page form input[type="checkbox"]{
    margin-left: 0;
    margin-top: 3px;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding-right: 10px;
    display: inline-block;
}



#login-form-page input[type=submit]{
    background-color: #231F20;
    width: 43%;
    border: none;
    font-size: 15px;
    float: left;
    color:#fff;
    padding: 13px;
}
#login-form-page input[type=submit]:hover{
    background-color: #2B2B2B;
}

.login-details .col-md-6{
    margin-top: 40px;
    margin-bottom: 40px;
}
#login-form-page .heading{
    padding-bottom: 20px;
}
#login-form-page{
    width: 80%;
    float: left;
    font-size: 15px;
    font-family: Century Gothic, sans-serif;
}
#registration .heading{
    padding-bottom: 20px;
}
#registration{
    width: 80%;
    float: right;
    font-size: 15px;
    font-family: Century Gothic, sans-serif;
}
#registration .notice p{
    color:#696A6D;
}
#registration input{
    width: 100%;
    padding: 10px 15px;    color: #939598;
    margin-bottom: 15px;
    border: 1px solid #e6e7e8;
}

#registration input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #939598;
}
#registration input::-moz-placeholder { /* Firefox 19+ */
    color: #939598;
}
#registration input:-ms-input-placeholder { /* IE 10+ */
    color: #939598;
}
#registration input:-moz-placeholder { /* Firefox 18- */
    color: #939598;
}
.login-details .col-md-6.right {
    border-left: 1px solid #e6e7e8;
}
#MemberLoginForm_LoginForm_Remember_Holder{
    display:none;
}
#registration input[type=submit]{
    width: 40%;
    background-color: #231f20;
    border: none;
    color: #fff;
    font-size: 15px;
    padding: 13px;
}
#registration input[type=submit]:hover {
    background-color: #2B2B2B;
}
#registration .notice p:first-child{
    display:none;
}
.submit .submit-button{
    padding:0;
}
.submit .forget-password{
    padding-top: 10px;
}
.page-seprater{
    border-bottom: 3px solid;
    width: 10%;
    margin: 0 auto;
    color: #414042;
}

#MemberLoginForm_LostPasswordForm_Email_Holder label{
    font-weight: normal;
    margin-bottom: 10px;
    color: #696A6D;
    display:block !important;
}
#login-form-page .back-to-login {

    padding: 10px 0;
    clear: both;
    position: relative;
    display: block;

}

/*------------login page----------*/

/*------------favourite----------*/
.fav-table{
    margin-bottom: 30px;
    margin-top: 30px;
}
.favourites th a{
    color: #fff;
}
.favourites h1{
    color: #414042;
}
.favourites h1 span.exchange-rate{
    position: relative;
    float: right;
    padding-top: 10px;
    color: #696a6d;
    font-size: 15px;
}
.favourites h1 span.exchange-rate span.subtext{
    display: block;
    position: absolute;
    top: -5px;
    font-size: 11px;
    font-weight: normal;
    color: #696a6d;
}
.favourites .customer {
    padding: 15px 0 20px;
    text-align: right;
}
.favourites .customer{
    padding-right: 0;
}
.favourites .customer a{
     font-size: 15px;
}  
.heading-fav{
    padding-left: 0;
    padding-bottom: 0px;
    padding-right: 0;
}
 .customer label{
    color: #696a6d;
    font-size: 14px;
}
table.favourites tr:nth-child(even) {
    border: 1px solid #dcddde;
}
table.favourites tr:hover {
    color:#F0F6F8;
    background-color: #F0F6F8;}
table.favourites tr.diamond-details{
    overflow: hidden;
}
table.favourites tr.diamond-details:hover {
    color:#F0F6F8;
    background-color: #FFFFFF;}
table.favourites{
    border: 1px solid #dcddde;
}
table.favourites{
    width: 100%;
}
table.favourites th{
    text-align: center;
    padding: 10px 5px;
    background: rgba(0,0,0,1);
    color: #ffffff;
    font-size: 12px;
    font-weight: normal;
}
table.favourites tr td{
    text-align: center;
    color: #858789;
    padding: 10px 5px;
    font-size: 12px;
    max-width: 105px;
}
table.favourites.parcel-search tr td{
    text-align: center;
    color: #858789;
    padding: 10px 5px;
    font-size: 12px;
    max-width: 80px;
}
.add-cart{
    width: 20%;
    background: #fff;
    border: 1px solid #414142;
    padding: 10px;
    color: #231f20;
    float: right;
}
.submit{
    margin-top: 20px;
}
table.favourites th a{
    position: relative;
    display: inline-block;
    text-decoration: none;
}
table.favourites th a span{
    float:left;
    padding-left:5px;
}
table.favourites th a span:first-child{
    padding-left:0px;
}
table.favourites th a span i{
    display: block;
    clear: both;
    padding: 0;
    margin: 0;
    height: 7px;
    position:relative;
    top:3px;
}
table.favourites td a,#SuggestedMatchDetail a.button{
    color:  #414142;
    text-decoration:none;
}
table.favourites td a i.fa.fa-lock{
    color:   #858789;
}
table.favourites td a:hover i.fa.fa-lock{
    color:   #414142;
}
table.favourites td a i.fa.fa-shopping-cart,table.favourites td a i.fa.fa-envelope{
    color:   #858789;
    font-size:14px;
}
table.favourites td a i.fa.fa-envelope{ 
    font-size:12px;
}
table.favourites td a:hover i.fa.fa-shopping-cart,table.favourites td a.active i.fa.fa-shopping-cart,table.favourites td a:hover i.fa.fa-envelope,table.favourites td a.active i.fa.fa-envelope{
    color:   #414142;
}

table.favourites td a i.fa.fa-heart,table.favourites td a:hover i.fa.fa-heart-o,table.favourites td a.active i.fa.fa-heart-o{
    display:none;
}
table.favourites td a:hover i.fa.fa-heart,table.favourites td a.active i.fa.fa-heart {
    display: block;
}
table.favourites td .details i.fa-angle-up,table.favourites td .details.active i.fa-angle-down{
    display: none;
}
table.favourites td .details.active i.fa-angle-up{
    display:block;
}

/*-----------favourite------------*/

/*------------Cart---------------*/

.shoping-cart .container{
    margin-bottom: 20px;
}
.shoping-cart p{
    color: #696a6d;
}
.name{
    padding-left: 0;
}
.name select{
    padding: 6px;
    width: 100%;

}
.shoping-cart .form{
    padding-top: 20px;

}
.purchase{
    padding-right: 0;
}
.purchase input{
    padding: 5px;
    width: 100%;
}
.send-copy{
    padding-top: 20px;
}
.message{
    padding-top: 20px;
}
.message textarea{
    width: 100%;
}
.send-copy input{
    width: 100%;
    padding: 10px;
}
.submit-clear{
    padding-top: 20px;
    text-align: right;
}
.submit-clear [type=submit]{
    width: 20%;
    background: #FFF;
    border: 1px solid #414042;
    padding: 10px;
    color: #414042;
}
/* Trade search css**/

#trade_search{
    padding: 40px 0 50px;
}
#trade_search .favourites .customer{
    margin-top: 5px;
    padding-left: 0;
    padding-right: 0;

}
#trade_search .favourites .customer .search-results{
    text-align: left;
    padding-left: 0;
    margin-top:10px;
}
#trade_search .favourites .customer .print-download{
    text-align: right;
    padding-right:0;
}
#trade_search .favourites .customer .col-md-6 p{
    display: inline-block;
    color:#696a6d;
}
#trade_search .favourites .customer .col-md-6 span{
    color:#414042;
    font-size:16px;
    font-weight:normal;
}
#trade_search .favourites .customer .btn-icon-print i{
    font-size: 30px;
    color: #696a6d;
}
#trade_search .favourites .customer .btn-icon-print img{
    margin-top: -10px;
}
.input-group .btn{
    background: transparent;
    color: #a7a9ac;
}
.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
    float: right;
    right: 30px;
    top: -37px;
}
.input-group .search{
    border-radius: 0;
}
.trade-sidebar .input-group{
    margin-top: 25px;
    width: 100%;
}
.trade-sidebar .search-type{
    background: #f1f1f2;
    margin-top: -10px;
}
.trade-sidebar .search-type select{
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
}
.trade-sidebar .search-type select option{
    color:#939598;
}
.trade-sidebar .search-type h4{
    margin-top:20px;
    color:#414042;
    margin-bottom: 20px;
}
.trade-sidebar .search-type label{
    color: #696a6d;
    font-size: 14px;
    font-weight: normal;
    margin-left: 10px;
    position: absolute;
}
.trade-sidebar .shapes .diamond-shapes{
    padding-left: 0;
    padding-right:0;


}
.trade-sidebar .shapes .col-sm-offset-1{
    margin-left: 0;
}
.trade-sidebar .shapes .col-sm-2{
    background: #fff;
    text-align: center;
    margin-left: 8px;
    margin-bottom: 10px;
    padding:0;
}
.trade-sidebar .shapes .col-sm-2 a{
    display: block;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
    background-image:url('../images/shape-icons.png');
    background-repeat: no-repeat;
    height:31px;
    width: 37px;
    background-color: transparent;
}

.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(1) a{
    background-position: -0px 0px;
}
.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(2) a{
    background-position: -38px 0px;
}
.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(3) a{
     background-position: -77px 0px;
}
.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(4) a{
    background-position: -114px 0px;
}
.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(5) a{
    background-position: -152px 0px;
}


.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(6) a{
    background-position: -0px -31px;
}
.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(7) a{
    background-position: -38px -31px;
}
.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(8) a{
    background-position: -77px -31px;
}
.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(9) a{
    background-position: -114px -31px;
}
.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(10) a{
    background-position: -152px -31px;
}


.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(11) a{
    background-position: -0px -62px;
}
.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(12) a{
    background-position: -38px -62px;
}
.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(13) a{
    background-position: -77px -62px;
}
.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(14) a{
    background-position: -114px -62px;
}
.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(15) a{
    background-position: -152px -62px;
}


.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(16) a{
    background-position: -0px -93px;
}
.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(17) a{
    background-position: -38px -93px;
}
.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(18) a{
    background-position: -77px -93px;
}
.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(19) a{
    background-position: -114px -93px;
}
.trade-sidebar .shapes .diamond-shapes .col-sm-2:nth-child(20) a{
    background-position: -152px -93px;
} 

@media (min-width:992px){
    
    .trade-sidebar .shapes a:hover{

        background-color: #A2C6D3;
    }
    
    .trade-sidebar .diamond-colors .choose-color  a:hover{
        background-color: #A2C6D3;text-decoration: none;
        display: block;
        color: #fff;
    }
    
    .diamond-cut a:hover{
        color: #fff;
        background-color: #A2C6D3;
        display: block;
        text-decoration: none;
    }
    
}

.trade-sidebar .shapes a.active{

    background-color: #A2C6D3;
}

.trade-sidebar .shapes .col-sm-2.col-sm-offset-1{
    margin-left: 0;
}
.trade-sidebar .shapes{
    padding-top: 15px;
}

.trade-sidebar .slider, .trade-sidebar .slider .col-md-12{
    padding-right: 0;
    padding-left: 0;
}
.trade-sidebar .slider, .trade-sidebar .slider{
    padding-top: 20px;
}
.trade-sidebar .slider, .trade-sidebar .slider .col-sm-12{
    padding-right: 0;
    padding-left: 0;
}
.trade-sidebar .slider .col-sm-12 #carat_show{
    display: none;
}
.trade-sidebar .slider .col-md-12.counter{
    margin-top: 15px;
}
.trade-sidebar .slider .col-md-12.counter input{
    width: 30%;
    padding: 3px 20px;
    color:#414042;
}
.trade-sidebar .slider .col-md-12.counter input#carat-end{
    margin-left: 35%;
}
.trade-sidebar .diamond-colors{
    clear: both;
    padding-top: 20px;
}
.trade-sidebar .diamond-colors .choose-color{
    padding-right: 0;
    padding-left: 0;
}
.trade-sidebar .diamond-colors .choose-color .col-sm-offset-1{
    margin-left: 0;


}

.trade-sidebar .diamond-colors .choose-color .col-sm-2{
    background: #fff;
    text-align: center;
    margin-left: 8px;
    margin-bottom: 10px;
    padding:0;
}


.trade-sidebar .diamond-colors .choose-color .col-sm-2:first-child{
    margin-left:0;
}
.diamond-colors a {
    color: #000000;
    display: block;
    padding: 5px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;text-decoration: none;
}
.trade-sidebar .diamond-colors .choose-color  a.active{
    background-color: #A2C6D3;text-decoration: none;
    display: block;
    color: #fff;
}

.trade-sidebar .diamond-cut{
    clear: both;
    padding-top: 20px;
}
.trade-sidebar .diamond-cut .col-md-12{
    padding-right: 0;
    padding-left: 0;
}
.trade-sidebar .diamond-cut .col-sm-offset-1{
    margin-left: 0;
}
.trade-sidebar .diamond-cut .col-sm-6{
    background: #fff;
    padding: 0;
    text-align: center;
    margin-left: 8px;
    margin-bottom: 10px;
    width: 45%;
}
.diamond-cut a {
    color:  #000000;
    padding-top: 7px;
    padding-bottom: 7px;
    display: block;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;text-decoration: none;
}
.diamond-cut a.active{
    color: #fff;
    background-color: #A2C6D3;
    display: block;
    text-decoration: none;
}

.dimond-last {
    padding-bottom: 15px}
.trade-sidebar .diamond-cut .col-sm-6:first-child{
    margin-left:0;
}
.trade-sidebar .diamond-cut .col-sm-6 span{
    color:#000;
}

.trade-sidebar .trade-slider, .trade-sidebar .trade-slider .col-md-12{
    padding-right: 0;
    padding-left: 0;
}
.trade-sidebar .trade-slider{
    padding-top: 20px;
}
.trade-sidebar .trade-slider, .trade-sidebar .trade-slider .col-sm-12{
    padding-right: 0;
    padding-left: 0;
}
.trade-sidebar .trade-slider .col-sm-12 #carat_show{
    display: none;
}
.trade-sidebar .trade-slider .col-md-12.counter{
    margin-top: 15px;
}
.trade-sidebar .trade-slider .col-md-12.counter input{
    width: 30%;
    padding: 3px 15px;
}
.trade-sidebar .button{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 30px;
    border-color: #989a9d !important;
    clear: both;
    text-align: center;
    padding-bottom: 20px;
    color: #58595b;
    border: 2px solid #58595b;
    padding: 10px 25px;
    font-size: 26.5px;
    background-color: #F1F1F2;
}

.trade-sidebar .recent-items{
    background: #f1f1f2;
    margin-top: 35px;
    padding-bottom: 20px;
}
.header-cart-items .recent-items
{
    margin-top: 10px;
    padding-bottom: 20px;
}
.trade-sidebar .recent-items h4, .header-cart-items .recent-items h4{
    margin-top: 20px;
    color: #414042;
    margin-bottom: 20px;
}
.trade-sidebar .recent-items .col-md-3, .header-cart-items .recent-items .col-md-3{
    padding-right: 0;
    padding-left: 0;
    background: #fff;
    padding: 10px;
    text-align: center;
}
.trade-sidebar .recent-items .col-md-9, .header-cart-items .recent-items .col-md-9{
    padding-right:0;
}
.trade-sidebar .recent-items .sidebar-articles,.header-cart-items .recent-items .sidebar-articles{
    border-bottom: 1px solid #e1e2e3;
    overflow: hidden;
    margin-bottom: 15px;

}
.trade-sidebar .recent-items .col-md-9 p,.header-cart-items .recent-items .col-md-9 p{
    font-size:12px;
    color:#696a6d;
}
.trade-sidebar .recent-items .checkout, .header-cart-items .recent-items .checkout{
    padding-right: 0;
    padding-left: 0;
}
.trade-sidebar .recent-items .checkout .col-md-6, .header-cart-items .recent-items .checkout .col-md-6{
    padding-left: 0;
    padding-right: 0;

}
.trade-sidebar .recent-items .button, .header-cart-items .recent-items .button{
    font-size: 16px;
    width: 100%;
    margin-top:0px;
    margin-bottom: 0px;
    padding: 5px;
    color: #414042;
    border-color: #989a9d;
}
.trade-sidebar .recent-items .col-md-6:last-child, .header-cart-items .recent-items .col-md-6:last-child{
    padding-left:15px;
}
.trade-sidebar .recent-items .blogSidebar-title .col-md-6, .header-cart-items .recent-items .blogSidebar-title .col-md-6{
    padding-right: 0;
    padding-left: 0;
}
.trade-sidebar .recent-items .blogSidebar-title .col-md-6.delete i,.header-cart-items .recent-items .blogSidebar-title .col-md-6.delete i{
    float: right;
    font-size: 20px;
}
.trade-sidebar .recent-items  .blogSidebar-title .col-md-6.delete a,.header-cart-items .recent-items .blogSidebar-title .col-md-6.delete a{
    margin-left: 15px;
}
table.favourites .diamond-details .diamond-image, #SuggestedMatchDetail .diamond-details .diamond-image{
    text-align: center;
}
table.favourites .diamond-details .diamond-image .image-container, #SuggestedMatchDetail .diamond-image .image-container{
    position: relative;
}
table.favourites .diamond-details .diamond-image .image-container .no-hover, #SuggestedMatchDetail .diamond-image .image-container .no-hover{
    position: absolute;
    width: 100%;
    height: 100%; 
    display: none;
}
table.favourites .diamond-details .diamond-image .image-container .no-hover.active, #SuggestedMatchDetail .diamond-details .diamond-image .image-container .no-hover.active{
    display: block;
}
table.favourites .diamond-details .diamond-image img, #SuggestedMatchDetail .diamond-details .diamond-image img{
    border: 1px solid #dcddde;
    margin-bottom: 10px;
    max-width: 100%;
}
table.favourites td img{
    max-width:100%;
}
table.favourites .diamond-details .diamond-image span, #SuggestedMatchDetail .diamond-details .diamond-image span{
    font-size: 14px;
    color:#696a6d;
    clear: both;
    display: block;
}
table.favourites .diamond-details .diamond-image .col-md-12, #SuggestedMatchDetail .diamond-details .diamond-image .col-md-12{
    padding-left: 0;
    padding-right: 0;
}
table.favourites .diamond-details .diamond-image .col-md-12.diamond-varieties, #SuggestedMatchDetail .diamond-details .diamond-image .col-md-12.diamond-varieties{
    margin-top: 20px;
    margin-bottom: 20px;
}
table.favourites .diamond-details .diamond-image .col-md-12.diamond-varieties .col-md-3, #SuggestedMatchDetail .diamond-details .diamond-image .col-md-12.diamond-varieties .col-md-3{
    border: 1px solid #dddedf;
    padding: 5px;
    margin-right: 10px;
    width: 21%;
}
table.favourites .diamond-details .diamond-image .col-md-12.diamond-varieties .col-md-3:last-child,#SuggestedMatchDetail .diamond-details .diamond-image .col-md-12.diamond-varieties .col-md-3:last-child{
    margin-right:0;
}
table.favourites .diamond-details .diamond-image a,#SuggestedMatchDetail .diamond-details .diamond-image a{
    font-size: 16px;
    margin-bottom: 10px;
    width: 100%;
    color: #414042;
}
table.favourites tbody tr{ cursor:pointer;}
 
table.favourites .diamond-details, #SuggestedMatchDetail .diamond-details{
    margin-top: 20px;
    padding-bottom: 10px;
    cursor:default;
}
table.favourites .diamond-summary, #SuggestedMatchDetail .diamond-summary{
    padding-right:0;
}
table.favourites .diamond-details .col-md-12, table.favourites .diamond-details .col-md-12 .col-md-10, table.favourites .diamond-details .col-md-12 .col-md-2,
#SuggestedMatchDetail .diamond-details .col-md-12, #SuggestedMatchDetail .diamond-details .col-md-12 .col-md-10, #SuggestedMatchDetail .diamond-details .col-md-12 .col-md-2{
    padding-left: 0;
    padding-right: 0;
}
table.favourites .diamond-details .col-md-12 .col-md-2, #SuggestedMatchDetail .diamond-details .col-md-12 .col-md-2{
    text-align: right;
    top: 5px;
    
}
table.favourites .diamond-details .col-md-12 i, #SuggestedMatchDetail .diamond-details .col-md-12 i{
    font-size: 18px;
    color: #696a6d;
}
table.favourites .diamond-details .col-md-12 i.fa-print, #SuggestedMatchDetail .diamond-details .col-md-12 i.fa-print{
    position: relative;
    left: 10px;
}
table.favourites .diamond-details .diamond-summary h3, #SuggestedMatchDetail .diamond-details .diamond-summary h3{
    color: #414042;
    text-transform: uppercase;
    font-size: 25px;
    margin-top: 0;
    line-height: 34px;
    text-align:left;
}
table.favourites .diamond-details .diamond-summary h4,#SuggestedMatchDetail .diamond-details .diamond-summary h4{
    text-transform: uppercase;
    color: #414042; 
    text-align: left;
}
table.favourites .diamond-details .diamond-summary p,#SuggestedMatchDetail .diamond-details .diamond-summary p{
    font-size: 14px;
    color: #696a6d;
    clear: both;
    text-align: left;
}
table.favourites .diamond-details .diamond-summary .summary-table,#SuggestedMatchDetail .diamond-details .diamond-summary .summary-table{
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
}
table.favourites .diamond-details .diamond-summary .various-diamonds h4,#SuggestedMatchDetail .diamond-details .diamond-summary .various-diamonds h4{
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: left;
    
}
table.favourites .diamond-details .diamond-summary .various-diamonds .col-md-2,#SuggestedMatchDetail .diamond-details .diamond-summary .various-diamonds .col-md-2{
    text-align: center;
    padding-left: 0;
    border: 1px solid;
    padding: 0;
    margin-right: 10px;
    width: 14%;
    margin-bottom: 10px;
}
table.favourites .diamond-details .diamond-summary .various-diamonds .col-md-2 a:first-child, #SuggestedMatchDetail .diamond-details .diamond-summary .various-diamonds .col-md-2 a:first-child{
    padding:15px 5px;
    display:block;
}
table.favourites .diamond-details .diamond-summary .summary-table .padding-right,#SuggestedMatchDetail .diamond-details .diamond-summary .summary-table .padding-right{
    padding-left: 0;
}
table.favourites .diamond-details .diamond-summary .summary-table .padding-left,#SuggestedMatchDetail .diamond-details .diamond-summary .summary-table .padding-left{
    padding-right: 0;
        text-align: left;
}
table.favourites .diamond-details .diamond-summary .summary-table p, table.favourites .diamond-details .diamond-summary .summary-table label,
#SuggestedMatchDetail .diamond-details .diamond-summary .summary-table p,#SuggestedMatchDetail .diamond-details .diamond-summary .summary-table label{
    font-size:14px;
    color:#696a6d;
}
table.favourites .diamond-details .diamond-summary .summary-table label,#SuggestedMatchDetail .diamond-details .diamond-summary .summary-table label{
    padding-left: 0;
    text-align: left;
    font-weight: normal;
}
.field-two .brand-hidden{
    display:block;
}
.filter-heading{
    font-size: 14.51px;
    color: #414042;
    padding-bottom: 10px;
}
.header-cart-items .view-button{
    padding-bottom: 10px;
    padding-left: 0;
    padding-right:0;
}.checkout .view-button
{
    padding-left:0;
    padding-right:0;
}
.header-cart-items .view-button a{
    font-size: 15px;
    padding: 6px;
}
.header-cart-items .checkout a{
    font-size: 15px;
    padding: 6px;
}
.header-cart-items .checkout{
    padding-bottom: 10px;
}
/* End Trade search css**/

.custombox-modal-wrapper .content
{
    background: #fff;
    padding-bottom: 20px;
}
.custombox-modal-wrapper .content #existingCustomer h3
{
    float: left;
    font-size: 25px;
    color: #414042;
}


.custombox-modal-wrapper .content #existingCustomer .col-md-12 .col-md-11 input{
    width: 100%;
    padding: 5px 10px;
}
.custombox-modal-wrapper .content #existingCustomer .col-md-12 .col-md-11{
    padding-left: 0;
    margin-top: 5px;
    margin-bottom: 10px;
    padding-right: 0;
}
.custombox-modal-wrapper .content #existingCustomer .col-md-12 .col-md-1 i{
    top: 5px;
    color: #58595b;
    font-size: 20px;
    padding: 5px 10px;
    border: 2px solid #58595b;
}
.custombox-modal-wrapper .content #existingCustomer .col-md-12 .col-md-1{
    left: 20px;
}
.custombox-modal-wrapper .content #existingCustomer .col-md-12 a.popup-retail{
    font-size: 19.84px;
    color: #58595b;
    padding: 5px 25px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    padding: 2px 0 10px;
    font-weight: bold;
    display: block;
    text-decoration: none;
}
.custombox-modal-wrapper .content #existingCustomer .create-button{
    padding-left: 0;
    padding-right: 0;
}
.custombox-modal-wrapper .content #existingCustomer .create-button span{
    font-size: 30px;
    position: relative;
    top: 5px;
}

.custombox-modal-wrapper .content #existingCustomer .customer-search-results{
    position: absolute;
    background-color: #fff;
    z-index: 1;
    text-align: left;
    padding:0px;
    border: 1px solid #e6e7e8;
    min-width: 100%;
    top: 45px;
    height: auto;
    display: none;
    font-size: 14px;
    text-align: center;
    color: #696A6D;
}

.custombox-modal-wrapper .content #existingCustomer .customer-search-results ul{
    padding:0;
    list-style:none;
    margin:0;
}

.custombox-modal-wrapper .content #existingCustomer .customer-search-results a{
    display:block;
    font-size: 14px;
    text-align: left;
    color: #696A6D;
    padding:7px 15px;
    text-decoration: none;
}
.custombox-modal-wrapper .content #existingCustomer .customer-search-results a:hover{
    display:block;
    background-color: #f1f1f2;
    font-weight: bold;
}

/* Trade Popup css**/




/* End Trade Popup css**/

/*-----------Account-setting--------*/

.Account-details{
    margin-bottom: 40px;
}
.Account-details .account-details-section{
    margin-top:40px;
}
.Account-details .account-details-section h1{
    margin-top:0;
    text-transform: uppercase;
}
.Account-details .account-details-section .col-md-6.right{padding-right: 0;}
.Account-details .account-details-section input[type="text"], .Account-details .account-details-section input[type="email"],.Account-details .account-details-section input[type="password"]{
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid #e6e7e8;
    color: #939598;
}
.Account-details .account-details-section input[type="submit"]{
    font-weight: bold;
}
.logo img{
  /*  width:100%;***/

}
#registration .field1{
    padding-top: 15px;
}


.logo{
    padding-left:0;
}
header .logo{
    overflow: hidden;
    display: block;
    height: 75px;
}
header .logo img{
    max-height: 100%;
    width: auto;
}
.upload{
    padding-right: 0;
}
.upload h4{
    font-size: 15px;
}
.upload p{
    font-size: 8px;
}
.submit-update [type=submit]{
    width: 40%;
    background: #fff;
    border: 2px solid #58595b;
    padding: 10px;
    color: #58595b;
}
.Account-details #registration {
    width: 100%;
    float: right;
    font-size: 15px;
    font-family: Century Gothic, sans-serif;
}
#login-form-page .field-business{
    padding-top: 54px;
}
.login-details .container{
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 1000px;
}
.login-details .left #login-form-page .Actions #ForgotPassword {
    margin-top: 10px;
    float: right;
    color: #528EA1;
}
.Account-details .left .field-business{
    padding-top: 54px;
    margin-bottom: -3px;
}
.login-details .left #login-form-page .Actions #ForgotPassword a{
    color: #528EA1;
}
.login-details .right #registration .notice a{
    color: #528EA1;
}
.login-details .left #login-form-page .Actions #ForgotPassword a:hover, .login-details .right #registration .notice a:hover{
    text-decoration: underline;

}
#login-form-page input#MemberLoginForm_LostPasswordForm_action_forgotPassword{
    width: 100%;
    padding: 13px;
}

.Account-details .side-tab{
    margin-top: 40px;
}
.Account-details .side-tab ul{
    list-style: none;
    padding:0;
}


 .upload-logo [type=FILE]{
     width: 60% !important;
        background: #fff;
        border: 2px solid #58595b;
        padding: 3px;
        color: #58595b;
}

.Account-details #login-form-page{
    width: 100%;
    float: left;
    font-size: 15px;
    font-family: Century Gothic, sans-serif;
}
.Account-details h4{
    color: #696a6d;
    font-size: 15px;
    font-family: Century Gothic, sans-serif;
    padding:0;
}
.Account-details .col-md-7.upload{
    padding-left:0;
}
.Account-details .col-md-7.upload p {
   color: #939598;
   font-size: 12px;
   font-family: Century Gothic, sans-serif;


}
.Account-details h1{
    color: #414142;
}

/*-----------retail---------*/

.Retail-page table td input{
    width: 30%;
    text-align: center;
    padding: 4px;
}
.Retail-page .set-margin [type=submit] {
    width:auto;
    background: #fff;
    border: 2px solid #414142;
    padding: 10px;
    color: #414042;
    font-size: 16px;
}
.Retail-page h1{
    padding-bottom: 10px;
}
.Retail-page h4{
    font-size: 15px;
    padding-bottom: 10px;
}
.Retail-page td input{
    border: 2px solid #e7e8e9;
}
.Retail-page td{
    font-size: 12px;
    color: #696a6d;
}
.Retail-page .set-margin{
    text-align: right;
    margin-top: 20px;}
table.parcel td.a{
    color: #fff;
}
.set-parcel h3{
    color: #414042;
    padding-bottom: 10px;
}
.set-parcel p{
    color: #414042;
    padding-bottom: 10px;
}
.set-parcel .set-parcel-margin{
    text-align: right;
    margin-top: 20px;}
.set-parcel-margin [type=submit] {
    width: 23%;
    background: #fff;
    border: 2px solid #414142;
    padding: 10px;
    color: #414042;
    font-size: 16px;
}

.Retail-page table{
    width:100%;
}
.Retail-page table thead tr{
    background-color: #231F20;
}
.Retail-page table thead tr th{
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-weight: normal;
}
.Retail-page table tbody tr{
    border-bottom: 1px solid #e6e7e8;
}
.Retail-page table tbody tr td{
    text-align: center;
    color:#696A6D;
    padding:10px 0;
}
.Retail-page table tbody tr td input{
    margin-bottom: 0 !important;
    width: 65px !important;
    padding: 5px !important;
    border: 1px solid #e6e7e8 !important;
}

.Retail-page table tbody tr td input::-moz-placeholder{

    color:#c9cdd4;
}

.Retail-page table tbody tr td input::-webkit-input-placeholder{
    color:#c9cdd4;
}

.Retail-page table tbody tr td input:-ms-input-placeholder{
    color:#c9cdd4;
}


/*-----------retail-----------*/

/*------------Dealers-----------*/

.Dealers{
    margin-bottom: 30px;
    margin-top: 20px;
}
.Dealers .side-tab{
    margin-top: 27px;
}
.Dealers .side-tab ul{
    list-style: none;
}
.side-tab ul li a {
    background-color: #f1f1f2;
    padding: 10px;
    border: 1px solid #e3e4e5;
    color: #696a6d;
    font-size: 15px;
    display: block;
    text-decoration: none;

}
.side-tab ul li a:hover,.side-tab ul li a.active{
    background-color: #e7e8e9;
}
.Dealers table td input{
    width: 100%;
    padding: 4px;
}
.Dealers table td input[type=password] {
    margin-bottom: 0;
}

.Dealers td input{
border: 2px solid #e7e8e9;
}
.Dealers td{
font-size: 12px;
color: #696a6d;
}
.Retail-page .set-margin{
text-align: right;
margin-top: 20px;}
table.parcel td.a{
color: #fff;
}
.set-parcel h3{
color: #414042;
padding-bottom: 10px;
}
.set-parcel p{
color: #414042;
padding-bottom: 10px;
}
.set-parcel .set-parcel-margin{
text-align: right;
margin-top: 20px;
}

.set-parcel-margin [type=submit] {
width: auto;
background: #fff;
border: 2px solid #414142;
padding: 10px 20px;
color: #414042;
font-size: 16px;
}
i.over{
    right:-10px;
}
i.view{
    right:-10px;
}
i.log{
    right:-10px;
}
input#search-del{
    padding: 6px;
    width: 67%;
}
.Dealers [type=submit]{
    width: 30%;
    background: #fff;
    border: 2px solid #58595b;
    padding: 6px;
    color: #58595b;
}
.side-tab ul li{
    color: #696a6d;
    font-size: 15px;
}
.Dealers .customer span{
    position: relative;
}
.Dealers .customer span:after{
    content: "\f002";
    font-family: FontAwesome;
    position: absolute;
    right: 5px;
    padding: 4px;
    color: #727476;
    font-size: 20px;

}

/*------------End Dealers page----------------*/

.loader{
    background-color: #c3c4c6;
    color: #333;
    padding: 30% 0;
}
#load-more-tr .loader{
    background-color: transparent;
    color: #333;
    padding: 3% 0;
}
#diamond-details{
    display:none;
}

table.favourites div.diamond-details{
    width:98%;
}
#SuggestedMatchDetail{
    width:800px !important;
}
table.favourites div.diamond-details .various-diamonds,#SuggestedMatchDetail div.diamond-details .various-diamonds{
    min-height: 120px;
}

*{
    outline: none !important;
 }

#searchDiamonds .ui-state-default, .ui-widget-content .ui-state-default{
    border-radius: 100%;
    padding: 10px;
    margin-top: -3px;
}
#searchDiamonds input[type=number]::-webkit-inner-spin-button, 
#searchDiamonds input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
#LotResults tr.diamond-details i, #SuggestedMatchDetail .diamond-details i{
    display: inline-block;
}


.Account-details .side-tab ul li a{
    background-color: #f1f1f2;
    padding: 15px 15px 15px 32px;
    border: 1px solid #e3e4e5;
    color: #696a6d;
    font-size: 15px;
    display: block;
    text-decoration: none;
}
.Account-details .side-tab ul li a:hover,.side-tab ul li a.active{
    background-color: #e7e8e9;
}
#registration .content .upload-logo{
    position: relative;
}
#registration .content .wrapper{
    position: absolute;
    z-index: 1;
    background: #fff;
    top: 3px;
    width: 61%;
    cursor: pointer;
    padding: 10px;
    text-transform: uppercase;
    font-weight: bold;
    color: #58595B;
    text-align: center;
    border: 2px solid #58595B;
}
#registration .content input{

    z-index: 2;

    position: relative;

    border: 1px solid #e6e7e8;
}

#registration .content input[type="file"]{
    opacity: 0;
    cursor: pointer;
}
.custombox-modal-wrapper{
    position:absolute !important;
}
.custombox-modal-wrapper .custombox-modal-container{    margin-top: 16% !important;}

#RetailApp, #createNewCustomer {
    width: 400px !important;
    margin: 0 auto;
    position: relative;
}
#RetailApp .retail-text .col-md-10{
    padding-left:0;padding-right: 0;
}
#RetailApp .retail-text .col-md-10 input, #createNewCustomer input[type="text"]{
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid #e6e7e8;
    color: #939598;

}
#RetailApp .retail-text .col-md-2 button{
    display: inline-block;
    border: 2px solid #58595B;
    padding: 8px 13px;
    font-size: 15px;
    background-color: #fff;
    color: #58595B;
}
#RetailApp .close, #createNewCustomer .close{    margin-top: 17px;
    color: #000;}
#RetailApp .or {
    display: block;
    font-size: 14px;
    color: #696a6d;
    padding: 5px 0 20px;
}
#createNewCustomer label{
    font-weight:normal;
    text-align: left;
    color: #696a6d;    display: block;
}
#createNewCustomer button{
    border: 2px solid #58595b;
    padding: 10px 20px;
    color: #58595b;
    text-align: left;
    font-weight: bold;
    float: left;
    background-color: #fff;
}
.content p, #MemberLoginForm_LoginForm_error{
    font-family: Century Gothic, sans-serif;
    font-size: 15px;
    color: #696a6d;
}
.userPlaceholderLogo{
    width: 157px;
    height: 117px;
    background-color: #F1F2F2;
    text-align: center;
    padding: 10px;
    border: 0;
    color: #696a6d;
    font-size: 15px;
}
.userPlaceholderLogo img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

#RetailApp .retail-text .col-md-10 input.invalid{
    border: 1px solid #c52b2b;
}
.order-form{
    padding-top:20px;
}
.order-form input, .order-form textarea{
    width: 100%;
    padding: 10px 15px;
    color: #939598;
    margin-bottom: 15px;
    border: 1px solid #e6e7e8;
    display: block;
}
.order-form label.business-name{
    width: 100%;
    padding: 10px 15px;
    color: #939598;
    margin-bottom: 15px;
    border: 1px solid #e6e7e8;
    display: block;
    font-weight: normal;
}

.order-form input[type="submit"],.order-form input[type="reset"]{
    width: auto;
    background-color: #231f20;
    border: none;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    padding: 13px 55px;
    margin-left:10px;
}
.order-form input[type="submit"]:hover,.order-form input[type="reset"]:hover{
    background-color: #2B2B2B;

}



a:hover,a:visited,a:active{
    text-decoration: none;
}
.no-padding{
    padding:0px !important;
}
td .add-to-cart, td .add-to-favourite{
    display: block;
    padding: 15px 5px;
}

.chosen-container-single .chosen-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 5px 10px;
    height: auto;
    border: 1px solid #dcddde;
    border-radius: 0;
    background-color: #fff;
    background: -webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#fff),color-stop(50%,#f6f6f6),color-stop(52%,#eee),color-stop(100%,#f4f4f4));
    background: -webkit-linear-gradient(#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);
    background: -moz-linear-gradient(#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);
    background: -o-linear-gradient(#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);
    background: linear-gradient(#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);
    background-clip: padding-box;
    box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0,0,0,.1);
    color: #444;
    text-decoration: none;
    white-space: nowrap; 
    line-height: 24px;
}
.chosen-container-single .chosen-single div b {
   
    margin-top: 5px;
}

.parcel-search{
    display:none;
}
.parcel-search.active{
    display:block;
}
.parcel-types{
    border: 0;
    padding: 0;
    margin-bottom: 20px;
}
.parcel-types .row{ 
    margin: 0;
}
.parcel-types label{
    color:#333;
    font-size:18px;
    padding:3px 0;
    font-weight:600;
}
.parcel-types .chosen-container{
    
    min-width:100%;
}
.parcel-search-pagination{ 
    position:relative;
    padding-top:0px;
}
.favourites.parcel-search{
    clear:both;
}
#UserCartParcel input[type="text"]
{
    max-width:50px;
}

.lb-nav { 
    display: none !important; 
}

.account-details-row{
    padding:20px 0;   
}
.account-details-row .field{
    border-bottom: 1.5px solid #f1f2f2;
    display: block;
    overflow: hidden;
    margin: 0 15px;
    padding: 5px 0;
}
.account-details-row .field:first-child{
    border-top: 1.5px solid #f1f2f2;
}
.account-details-row .field label{
    color: #939598;
    font-size: 15px;
    font-family: Century Gothic, sans-serif;
    padding: 0;
        margin-top: 10px;
    margin-bottom: 10px;
    font-weight:normal;
}
.contact-button-row a{
    font-size:15px;
    font-weight:bold;
}
.contact-button-row a:hover{
        color: #58595b;
        text-decoration: none;
}
.enquire{
    position:relative;
}
.enquiry-sent{
    position: absolute;
    left: -27px;
    top: 16px;
    width: 70px;
    font-size: 10px;
    color: #009a22;
    display: none;
} 
 
#searchDiamondsParcel input[type=number]::-webkit-inner-spin-button, 
#searchDiamondsParcel input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
 
.sidebar-overlay,.trade-sidebar form .close-btn,.trade-sidebar .search-btn
{
    display:none;
}

.trade-sidebar .diamond-colors .choose-color .col-sm-2.col-sm-offset-1
{
    margin-left:0;
    clear: both;
}

#trade_search .sidebar-overlay
{
    display:none;
}

.disclaimer{
    margin-top:10px;
}
.disclaimer p{
    color: #858789;
    font-size: 12px;
}

.csv-table{
    display:none;
}

.load-existing-customer-wrapper
{
    clear:both;
}

.load-existing-customer-wrapper p
{
    font-size: 14px;
    text-align: left;
    color: #696A6D;
}

.submit-clear.top
{
    margin-top: -50px; float:right;
}
.Account-details .side-tab .Toggle,.Retail .side-tab .Toggle
{
    display:none;
}

.lightboxOverlay { 
    z-index: 999999 !important;
}
.lightbox { 
    z-index: 9999999 !important;
}

.remove-from-fav-details,.remove-from-cart-details
{
    display:none;
}