/* --------------------- Colours Used ---------------------
 * Main text colour:       Hex: #FFFFFF | RGB: 255 255 255
 * Main hover text colour: Hex: #EC008C | RGB: 236 0 140
 * Mouse selection colour: Hex: #EB3B9B | RGB: 235 59 156
*/

/******************* Main ********************/
html {
    font-size: 100%;
    height: 100%;
    overflow: -moz-scrollbars-vertical;
    overflow-y: scroll;
}
body{
    background: url("../img/bg-1.jpg") no-repeat fixed center top #000000;
    color: #3E3E3E;
    font: 80%/1.4 "Helvetica Neue",Helvetica,Arial,sans-serif;
    height: 100%;
    margin: 0;
    padding-top: 70px; /* top clearence for navbar */
    width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
}

/******************* Global ********************/
.map { height: 100% }
a {
    color: #FFFFFF;
}

.panel-body > .row {
	margin-left: -10px;
	margin-right: -10px;
}

a:hover, a:focus{
    color: #EC008C;
    text-decoration: none;
    outline: none;
    -webkit-transition: color 500ms ease;
    -moz-transition: color 500ms ease;
    -o-transition: color 500ms ease;
    transition: color 500ms ease;
}
a:active{
    color: #FFFFFF;
    text-decoration: none;
    outline: none;
}
main{
    margin-top: -20px;
}
::selection {
	background: #EB3B9B; /* Safari */
    color: #FFFFFF;
    text-shadow: none;
}
::-moz-selection {
	background: #EB3B9B; /* Firefox */
    color: #FFFFFF;
    text-shadow: none;
}
.font-14{font-size:10pt;}
.font-12{font-size:12pt;}
.font-10{font-size:10pt;}
.no-padding{padding:0;}
.padding-5{padding:5px;}
.padding-left-5{padding-left:5px;}
.padding-10{padding:10px;}
.padding-15{padding:15px;}
.fa-25x {font-size: 2.5em;}
.white-text{color:#FFFFFF;}
.black-text{color:#3E3E3E;}
.underline{text-decoration:underline;}
.alba-pink-text{color:#EC008C;}
.margin-center{margin:0 auto;}
.hr{
    border-top: 1px solid #ccc;
}
legend{
    margin-top: 30px;
    margin-bottom:5px;
    border-bottom: none;
}
.no-margin{
    margin-top:0;
    margin-bottom:0;
    margin-left:0;
    margin-right:0;
}
h4 {
    margin: 0;
}
h1, h2, h3, h4 {
    color: #EB3B9B;
}
h1, h2, h3, h4, h5 {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    /*text-shadow: 1px 1px 0 #FFFFFF, 2px 2px 2px #CCCCCC;*/
}

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

.margin-top-20{
	margin-top: 20px;
}

.margin-bottom-10{
	margin-bottom: 10px;
}

.margin-bottom-20{
	margin-bottom: 20px;
}

.margin-bottom-40{
	margin-bottom: 40px;
}

/* Inputs */
.form-control {
    -webkit-transition: box-shadow border 0.40s ease-in-out;
    -moz-transition: box-shadow border 0.40s ease-in-out;
    -ms-transition: box-shadow border 0.40s ease-in-out;
    -o-transition: box-shadow border 0.40s ease-in-out;
    outline: none;
    border: 1px solid #DDDDDD;
    border-radius: 0;
}
.form-control:hover {
    -webkit-appearance: none;
    -moz-appearance:none;
    box-shadow: 0 0 5px rgba(236, 0, 140, 0.2);
    border: 1px solid rgba(236, 0, 140, 0.4);
}
.form-control:focus {
    -webkit-appearance: none;
    -moz-appearance:none;
    box-shadow: 0 0 5px rgba(236, 0, 140, 0.5);

}
textarea{
    min-height: 146px;
}

.form-error {
    font-size: 70%;
    color: #a94442;
}

td img.img-responsive {
    width:100%;
}

.margin-bottom-10 {
	margin-bottom: 10px;
}

.margin-bottom-20 {
	margin-bottom: 20px;
}

.bg-white {
    background-color: #fff;
    padding-top: 20px;
}

@media(max-width:767px){
	.xs-table-scroll {
		overflow-x: scroll;
	}	
}

/******************* Panels ********************/
.panel {
    margin: 0;
    background: none repeat scroll 0 0 #FFFFFF;
    /* Bootstrap panel overwrite */
    border: 0 solid rgba(0, 0, 0, 0);
    border-radius: 0;
}
.panel.margin-bottom {
    margin-bottom: -10px;
}
.panel-title {
    padding: 3px 8px 0 8px;
    color: #3E3E3E;
    font-size:12pt;
}

.panel-title p {
    color: #3E3E3E;
    font: 100%/1.4 "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 16px;
}
.panel-title-large {
    padding: 10px 0 0 8px;
    color: #EB3B9B;
    font-size: 24px;
}
.panel-body {
    padding: 10px 10px;
}
.panel a{color:#3E3E3E;}
.panel a:hover{color:#EB3B9B;}
@media(min-width:768px){
	.panel.first{
		margin-right:-20px;
	}
}
.panel.first{
	margin-bottom: 10px;
}
.panel.middle{
	margin-right:-10px;
}
.panel.last{
	margin-left:-10px;
}
/******************* Modals ********************/
.modalDialog {
    position: fixed;
    font: 80%/1.4 "Helvetica Neue",Helvetica,Arial,sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}
.modalDialog:target {
    opacity:1;
    pointer-events: auto;
}
.modal-content{
	border-radius:0px;
}
.modalDialog > div {
    width: 60%;
    position: relative;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 0px;
    background: #fff;
}

@media (max-width: 600px) {
	.modalDialog > div {
		width:98%;
		padding: 2px 10px 6px 10px;
	}
	.modalDialog h2 {
		font-size: 20px;
	}
}

@media (max-width: 400px) {
	.modalDialog > div {
		width:98%;
		padding: 2px 5px 6px 5px;
	}
	.modalDialog h2 {
		font-size: 18px;
	}
}

.close {
    background: #1E1E1E;
    color: #FFFFFF;
    line-height: 18px;
    position: absolute;
    right: 10px;
    text-align: center;
    top: 10px;
    width: 18px;
    text-decoration: none;
    font-weight: bold;
    font-size: 7pt;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}
.close:hover { background: #383838; color: #FFF; }

.btn-mgn-0 {
    margin-bottom: 0 !important;
}

/******************* Bootstrap Overwrites ********************/
/* Breadcrumbs */
.breadcrumb{
    background-color: #FFFFFF;
    border-radius: 0px;
    margin-bottom: 10px;
    font-size:10pt;
}
.breadcrumb a{
    color: #EB3B9B;
}

.breadcrumb a:hover, .breadcrumb a:focus {
    color: #C51474;
    text-decoration: underline;
}
.breadcrumb > .active {
    color: #3E3E3E;
}
dd {
    margin-left: 10px;
}

.btn-info {
    background-color: #fff;
    color: #474747;
    border: 1px solid #c6c6c6;
}
.btn-info:hover {
    background-color: #f7f7f7;
    border: 1px solid #c6c6c6;
    color: #474747;
}
.btn-info:active, .btn-info:visited, .btn-info:focus {
    color: #474747;
    background-color: #fff;
}

/* Buttons */
.btn-success {
    background-color: #6EBB21;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    color: #FFFFFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    font-size: 14px;
}


.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
    background-color: #6EBB21;
    border-color: #6EBB21;
}
.btn-default {
    background-color: #D22A85;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    color: #FFFFFF!important;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
	background-color: #D22A85;
    color:#FFF;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    background-image: linear-gradient(to bottom, #EC008C, #EC008C);
}
.btn-default[disabled] {
	background-color: #c6c6c6;
}
.btn-default:hover {
    background-color: #D22A85;
    color:#FFF;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    background-image: linear-gradient(to bottom, #EC008C, #EC008C);
}
.btn-danger {
    background-color: #FF1C25;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    color: #FFFFFF!important;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.btn-danger:hover {
    background-color: #D22A85;
    color:#FFF;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    background-image: linear-gradient(to bottom, #E2031A, #FF1C25);
}

.btn-yellow {
    background-color: #FDB04D;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    color: #FFFFFF!important;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.btn-yellow:hover {
    background-image: linear-gradient(to bottom, #FC8C00, #FDB04D);
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.btn-buy {
    border: 2px solid #DDDDDD;
    padding: 4px 10px;
}

.btn-alteration {
    border: 2px solid #DDDDDD;
    font-size: 12px;
    padding: 7px 10px;
}

.btn-deposit {
    border: 2px solid #DDDDDD;
    font-size: 12px;
    padding: 7px 10px;
}

/* Paginate */
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background-color: #EC008C;
    border-color: #AD0668;
    color: #FFFFFF;
}
.pagination > li > a, .pagination > li > span {
    color: #EC008C;
}
.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
    color: #AD0668;
}

/******************* Header ********************/

.header-left{
    font-size:16pt;
    margin-top:5px;
}

.navbar-collapse {
	width: 100% !important;
}

.header-center {
    padding: 0;
}

.header-center img{
    margin:0 auto;
}
.header-right{
    font-size:12pt;
    margin-top:5px;
    text-align: right;
    font-size: 10pt;
}
.header-right li{
    float:right;
    padding-left:10px;
    list-style: none;
}
#logo-header-xs{
    padding-bottom:10px;
}
#logo-header-sm{
    height:40px;
}
#logo-header-lg{
    height:66px;
}
/* Navbar */
.navbar {
    padding-top:13px;
    margin-bottom: 0;
}
.navbar ul, .navbar ul li {
    list-style: none outside none;
}
#alba-nav a{
	font-size: 12pt;
}
.navbar-toggle {
    background-image: none;
    border: none;
    color:#fff;
    border-radius: 4px;
    float: left;
    margin-bottom: 8px;
    margin-right: 15px;
    margin-top: 0;
    padding: 3px 10px;
    position: relative;
}
.navbar-toggle .icon-bar+.icon-bar {
	margin-top: 5px;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: transparent;
    color:#ec008c;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    background-color: transparent;
    color: #ec008c!important;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #FFFFFF;
}
.navbar-default .navbar-nav > li > a {
    color: #FFF;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: #EC008C;
    background-color: transparent !important;
}

.nav > LI > A:focus {
    background-color: transparent !important;
}

.nav > LI > A:hover {
    background-color: transparent !important;
}

.navbar-nav {
        margin: auto auto !important;
        display: table;
        table-layout: fixed;
        float:none !important;
}


@media (max-width: 991px){
	.header-left{
    	font-size:14px;
    }
}

@media (min-width: 768px){
    
    .navbar-default .navbar-nav > li {
        margin-right:30px;
    }

    .navbar-default {
        background-color: transparent;
        border: none;
    }
    .navbar-fixed-top
    {
        position: relative;
        margin-top:-70px; /* match the body padding-top */
        top: auto;
    }
}
@media (max-width: 767px){
	.navbar-fixed-top {
        height:70px;
        background-color: #000;
    }
    .navbar-default {
        background-color: rgba(0,0,0,0.9);
        border: none;
    }
    .navbar-nav {
        margin: 0 !important;
        display: table;
        table-layout: fixed;
        float:none;
    }
    .navbar-collapse {
    	width: auto !important;
    }

    header {
        margin-top: 30px;
    }
    header .fa-search, header .fa-shopping-cart, header .fa-lock, header .fa-user, header .fa-lock, header .fa-unlock{
    	font-size: 1.77em;
    }
    .header-right {
    	position: absolute;
    	width: auto;
    	right: 0;
	}
	.navbar-collapse {
		background-color: #000;
		opacity: 0.9;
		z-index: 9999;
	}
}

.navbar-default .nav-less-pad > li {
    margin-right: 5px;
}

.header-right .cart-table {
    margin-bottom: 15px;
    width: 100%;
}
.header-right .cart-table tr, .header-right .cart-total-table tr {
    border-bottom: 1px dashed #c6c6c6;
}
.header-right .cart-table .cart-item a {
    color: #eb3b9b !important;
}
.header-right .cart-table .image {
    width: 20%;
}
.header-right .cart-table .quantity {
    width: 10%;
}
.header-right .cart-total-table {
    margin-bottom: 15px;
    width: 100%;
}
.header-right .cart-total-table tr td {
    padding: 5px 0 5px 0;
}

.header-right .shopping-cart .sub-menu {
    visibility: hidden;
    min-width: 160px;
    position: absolute;
    right: -10px;
    z-index: 1500;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    opacity: 0;
    text-align:left;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.4);
    -moz-box-shadow: 0 6px 12px rgba(0,0,0,0.4);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.header-right .shopping-cart:hover .sub-menu {
    visibility: visible;
    -moz-opacity: 1;
    filter: alpha(opacity=1);
    opacity: 1;
}

.header-right .dropdown-cart {
    min-width: 400px;
    max-width: 400px;
    padding: 15px;
}

.header-right .animate-wr {
    animation-duration: 1s;
}

@media(max-width: 767px){
	.header-right li:nth-child(3){
		position: relative;
		top: -2px;
	}
}

@media(max-width: 540px){
	.header-right {
		margin-top: -25px;
	}
	.header-right li {
		float: none;
		padding-bottom: 2px;
	}
	.header-right li:first-child {
		position: relative;
		right:-3px;
		top:22px;
	}
	.header-right li:nth-child(2){
		position: relative;
		right:29px;
		top:0px;
	}
	.header-right li:nth-child(3){
		position: relative;
		right:-3px;
		top: 5px;
	}
	.header-right li:nth-child(4){
		position: relative;
		right:-3px;
		top: -26px;
	}
	header .fa {
		font-size: 1.8em;
	}
}

/******************* Footer ********************/
.footer .sm-title{
    margin:15px 0 5px 10px;
}
.footer{
    background: url("../img/line.png") no-repeat scroll center top rgba(0, 0, 0, 0);
    color: #FFFFFF;
    margin: 10px 0;
    padding: 10px 0;
    text-shadow: 0 0 1px #000000;
    width: 100%;
}
.footer ul{
    list-style:none;
    padding: 2px;
    margin: 2px;
    font-size:13px;
}
.footer ul li {
    margin-bottom: 4px;
}
.footer-center-2{
    margin-top:19px;
}

.footer .title {
    font-weight: bold;
}

footer li {
    color: #fff !important;
}

/******************* Home Page ********************/
.carousel {
    margin-bottom: 10px;
}

/******************* Contact Page ********************/
.contact-title {
	padding: 10px 26px;
	margin-bottom: 10px;
}

.form-group {
	margin-bottom: 20px;
}


#enquiry {  
    max-width:100%;
    min-width:100%;
}
.contact-footer {
    margin-bottom:10px;
}

.btn-file 
{
    position: relative;
    overflow: hidden;
}
.btn-file input[type=file] 
{
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 999px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}

label {
	font-size: 13px;
}

#file-list
{
    height: auto;
    width: auto;
    color: #555;
    margin-top: 10px;
}

/******************* Category View ********************/
#category-list .desc {
    font-size: 14px;
}
#category-list hr {
    margin: 8px 0 8px 0;
}

/******************* Product List ********************/
#product-list .panel {
    margin: 18px;
}
#product-list #infscr-loading {
    text-align: center;
}
#product-list .item {
    color: #000;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition:.5s;
}
#product-list .item:hover {
    color: #EB3B9B;
}
#product-list .item .img-wrapper {
    padding: 7px 7px 0 7px;
}
#product-list .item img {
    border: 1px solid #cccccc;
}

#product-list .item .price-tag {
    background: url('../img/price-tag-list.png') no-repeat;
    height: 42px;
    width: 153px;
    position: absolute;
    bottom: 50px;
    right: 7px;
}
#product-list .item .price-tag .price {
    color: #fff;
    float: right;
    font-size: 14px;
    margin: 6px 5px 0 0;
}

@media(min-width: 769px){
	.search-container {
		  width: 300px;
		  position: absolute;
		  top: 0;
		  margin-left: -17px;
	}
	
	.js-masonry-container {
		position: relative;
		  margin-left: 285px;
		  padding: 0 0 0 15px;
	}

}



@media(max-width: 768px) {
	.search-container {
		width: 100% !important;
		position: static !important;
	}
	
	.search-container > .panel {
		margin: 18px 0 !important;
	}
	
	.js-masonry-container {
		width: 100%;
	}
}

.search-container .panel {
	padding: 10px 15px;
}

#reset-search {
	font-size: 14px;
	color: #aaa;
}

#search-filter {
	padding: 15px;
	border: 2px solid #aaa;
	font-size: 14px;
	margin-bottom: 10px;
}

#search-filter strong {
	color: #454545;
}

#search-filter .fa-remove {
	color: #888;
	cursor: pointer;
}

#search-filter .tag {
	display: table;
	width: 100%;
}

#search-filter .tag > span {
	display: table-cell;
	width: 50%;
}

#search-filter .tag > a {
	display: table-cell;
	width: 50%;
}


/******************* Product View ********************/
.main-price {
    font-size: 25px;
    color: #EB3B9B;
}

.basic-details .finance-block a {
    color: #EB3B9B;
}

.basic-details hr {
    margin: 10px 0 10px 0;
}

#product-view .popover {
    width: 250px;
}
#product-view .stone-content-table tbody tr:first-child td  {
    border-top: 0;
}
#product-view .stone-content-table {
	margin-top: -10px;
}
#product-view .panel-heading {
    border-color: #EB3B9B;
    border-bottom-width: 2px;
}
#similar-products .item h5 {
    margin: 0;
}
#product-view .main-price {
    font-size: 28px;
}
#product-view .thumb-img {
	margin-bottom: 10px;
}

.delivery {
    background: none repeat scroll 0 0 #FCF8E3;
    border-bottom: 1px solid #DDDDDD;
    border-top: 1px solid #DDDDDD;
    margin-top:10px;
    margin-bottom:10px;
    padding-top: 5px;
}

.delivery.stocked {
    background: none repeat scroll 0 0 #E7F4D9;
}
.delivery-icon-box {
    color: #FFFFFF;
    text-shadow: -1px 0 #CCCCCC, 0 1px #CCCCCC, 1px 0 #CCCCCC, 0 -1px #CCCCCC;
}
.main-img {
    border: 1px solid #d3d3d3;
}
.main-img img {
    margin:0 auto;
}
.thumb-img img {
    border: 1px solid #d3d3d3;
    margin-bottom: 1px;
}

.design-img {
	border: 1px solid #d3d3d3;
}

.design-img img {
    margin:0 auto;	
}

ul.confidence-list {
    list-style: none outside none;
    margin-top: 2%;
    padding-left: 10px;
}
ul.confidence-list li {
    font-size: 95%;
    margin: 3% 0 0;
}
@media(min-width:1200px){
    .panel.main-img {
        min-height:575px;
    }
}
@media(min-width:1200px){
    .panel.min-height {
        min-height:330px;
    }
}
#product-view .help-icon {
    font-size: 20px;
    color: #EC008C;
}
.trustpilot {
    padding-top:20px;
}

#tpiframe-box0 {
	width: 100%;
}

.share-wrap{
    margin-left:0;
    margin-right:0;
}
.share-link {
    display: block;
    float: right;
    height: 44px;
    line-height: 25px;
    overflow: hidden;
    padding-top: 8px;
    text-align: center;
    width: 20%;
    cursor:pointer;
}
.share-link i{color:#fff;}
.share-link:hover, .share-link:focus{
    color:#fff;
    -moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
    -webkit-box-shadow: inset 0 0 5px  rgba(0,0,0,0.5);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}
.social-large {
    margin-bottom: 0;
}

/* pinterest email */
#pinterest-link{background-color: #C8222E;}
/* facebook email */
#facebook-link{background-color: #00549E;}
/* Social email */
#google-link{background-color: #CB4130;}
/* Social email */
#twitter-link{background-color: #28AAE1;}
/* Social email */
#email-link{background-color: #EB3B9B;}

.stone-select-table a, #selected-stone-table a {
    color: #EB3B9B;
}
.stone-select-table a:hover {
    text-decoration: underline;
}
.stone-select-table tr td {
    vertical-align: middle !important;
}

.stone-select-table .hidden-row {
    padding: 0 8px 0 8px !important;
    border: 0;
}

.stone-select-table .hidden-row .accordian-body {
    padding: 10px 0 10px 0;
}

.stone-content-table .btn-primary,  .stone-content-table .btn-primary:hover {
	color: #fff;
}

#finance-block{
    margin-top:10px;
}

#finance-block table{
    margin-top:10px;
}

.product-title {
	font-size: 24px;
	color: #EB3B9B;
}

.product-btns h5 {
	font-weight: 700;
	text-shadow: none;
	margin-bottom: 5px;
	font-size: 13px;
}

#fixed-wrapper{
	position:absolute;
	left:0;	
	width: 100%;
	z-index: 1000;
	margin-top: -10px;
}

.basic-details h3,  .basic-details h2{
	font-size: 28px;
	margin-top: 3px;
}

.price-fixed {
	position: relative;
	background-color: #fff;	
	margin-left: 15px;
	margin-right: 15px;
	z-index: 1000;
	height: 50px;
	padding: 5px 15px;
	border-bottom: 1px solid #ddd;
	box-shadow: 0 4px 2px -2px #eaeaea;
}

.price-fixed h2 {
	font-size: 32px;
}

.price-fixed .main-price {
	font-size: 32px !important;
}

.price-fixed .btn {
	font-size: 16px !important;
}

.thumb-img {
	text-align: center;
	display: inline-block;
	vertical-align: middle;
}

.thumb-wrapper .thumb-img-horizontal{
	display: block;
	border: 2px solid #cccccc;
	width: 100%;
    position: relative;
    height: 0;
    padding: 75% 0 0 0;
    overflow: hidden;
    margin: auto;	
}

.carousel-inner-horizontal img {
	border: none;	
	position: absolute;
    display: block;
    max-width: 100%;
    max-height: 120px;
    left: 0;
  	right: 0;
  	top: 0;
  	bottom: 0;
  	margin: auto;
} 

.thumb-wrapper .thumb-img-horizontal:hover {
	border: 2px solid #EB3B9B;
    -webkit-transition: border 0.2s; /* For Safari 3.1 to 6.0 */
    transition: border 0.2s;
}

.carousel-inner-horizontal {
  max-width: 90%;
  margin: auto;
}

.carousel-control-horizontal {
	opacity: 1;
	filter: alpha(opacity=50);
	font-size: 18px;
	color: #EB3B9B;
	text-align: center;
	text-shadow: 0 0px 0px rgba(0, 0, 0, 0.6);
}

.carousel-control-horizontal:hover {
	opacity: 1;
	filter: alpha(opacity=50);
	font-size: 18px;
	color: #EB3B9B;
	text-align: center;
	text-shadow: 0 0px 0px rgba(0, 0, 0, 0.6);
}

.product-item {
	padding: 0 30px 0 30px;
	margin-bottom: 0px;
	-webkit-background-size: 100%;
	-o-background-size: 100%;
	background-size: 100%;
	background-repeat: no-repeat;
	position: relative;
	z-index: 5;
	overflow: hidden;
	-webkit-box-shadow: 0 0px 0px rgba(0,0,0,0.3);
	box-shadow: 0 0px 0px rgba(0,0,0,0.3);
    vertical-align: middle;	
}

.carousel.vertical .carousel-inner > .item {
  	-moz-transition:    0.6s ease-in-out top;
  	transition:		    0.6s ease-in-out top; 
  	left:               0 !important;
}

.carousel.vertical .active, .carousel.vertical .next.left, .carousel.vertical .prev.right    { 
	top:     0; 
}
.carousel.vertical .next, .carousel.vertical .active.right  { 
	top:  100%; 
}
.carousel.vertical .prev, .carousel.vertical .active.left   { 
	top: -100%; 
}

.carousel { 
	overflow: hidden; 
}

.item { 
	overflow: hidden; 
}

.carousel-control-horizontal .icon-prev, .carousel-control-horizontal .icon-next, .carousel-control-horizontal .fa-chevron-left, .carousel-control-horizontal .fa-chevron-right {
	z-index: 5;
}

.carousel-control-horizontal.left {
	background-image: none;
	z-index: 9999;
}

.carousel-control-horizontal.right {
	background-image: none;
	z-index: 9999;
}

#thumbnail-carousel-vertical{
	text-align: center;
}

.carousel-inner-vertical {
	height: 480px;
}

.thumb-wrapper .thumb-img-vertical {
	display: block;
	border: 2px solid #cccccc;
	width: 100%;
    position: relative;
    height: 0;
    padding: 75% 0 0 0;
    overflow: hidden;
    margin: auto;	
}

.carousel-inner-vertical img {
	border: none;	
	position: absolute;
    display: block;
    max-width: 100%;
    max-height: 120px;
    left: 0;
  	right: 0;
  	top: 0;
  	bottom: 0;
  	margin: auto;
}  

.thumb-wrapper .thumb-img-vertical:hover {
	border: 2px solid #EB3B9B;
    -webkit-transition: border 0.2s; /* For Safari 3.1 to 6.0 */
    transition: border 0.2s;
}

.carousel-control-vertical {
	position: static;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	opacity: 1;
	filter: alpha(opacity=50);
	font-size: 18px;
	color: #EB3B9B;
	text-align: center;
	text-shadow: 0 0px 0px rgba(0, 0, 0, 0.6);
	background-image: none;
}

.carousel-control-vertical:hover {
	opacity: 1;
	filter: alpha(opacity=50);
	font-size: 18px;
	color: #EB3B9B;
	text-align: center;
	text-shadow: 0 0px 0px rgba(0, 0, 0, 0.6);
}

.carousel-control-vertical .icon-prev, .carousel-control-vertical .icon-next, .carousel-control-vertical .fa-chevron-up, .carousel-control-vertical .fa-chevron-down {
	z-index: 5;
	display: inline-block;
}

.carousel-control-vertical.left {
	background-image: none;
	z-index: 9999;
	display: inline-block;
}

.carousel-control-vertical.right {
	background-image: none;
	z-index: 9999;
	display: inline-block;
}

.carousel.vertical .carousel-inner {
  height: 100%;
}


#product-view .main-img {
	display: block;
	width: 100%;
    position: relative;
    height: 0;
    padding: 100% 0 0 0;
    overflow: hidden;
    margin: auto;	
	border: none;
}

#product-view .main-img img {
	border: none;	
	position: absolute;
    display: block;
    width: 100%;
    max-width: 480px;
    max-height: 480px;
    left: 0;
  	right: 0;
  	top: 0;
  	bottom: 0;
  	margin: auto;
}

.thumb-wrapper .thumb-img-responsive{
	display: block;
	border: 2px solid #cccccc;
	width: 100%;
    position: relative;
    height: 0;
    padding: 75% 0 0 0;
    overflow: hidden;
    margin: auto;	
}

.carousel-inner-responsive img {
	border: none;	
	position: absolute;
    display: block;
    max-width: 100%;
    max-height: 160px;
    left: 0;
  	right: 0;
  	top: 0;
  	bottom: 0;
  	margin: auto;
} 

.thumb-wrapper .thumb-img-responsive:hover {
	border: 2px solid #EB3B9B;
    -webkit-transition: border 0.2s; /* For Safari 3.1 to 6.0 */
    transition: border 0.2s;
}

.carousel-inner-responsive {
  max-width: 90%;
  margin: auto;
}

.carousel-control-responsive {
	opacity: 1;
	filter: alpha(opacity=50);
	font-size: 18px;
	color: #EB3B9B;
	text-align: center;
	text-shadow: 0 0px 0px rgba(0, 0, 0, 0.6);
}

.carousel-control-responsive:hover {
	opacity: 1;
	filter: alpha(opacity=50);
	font-size: 18px;
	color: #EB3B9B;
	text-align: center;
	text-shadow: 0 0px 0px rgba(0, 0, 0, 0.6);
}

.carousel-control-responsivel .icon-prev, .carousel-control-responsive .icon-next, .carousel-control-responsive .fa-chevron-left, .carousel-control-responsive .fa-chevron-right {
	z-index: 5;
}

.carousel-control-responsive.left {
	background-image: none;
	z-index: 100;
}

.carousel-control-responsive.right {
	background-image: none;
	z-index: 100;
}

.no-support .threesixty {
	height: 480px !important;
}
/*
.show-animation {
	background-color: #fff;
	color: #3E3E3E;
	border: 1px solid #ddd;
}

.show-animation:hover {
	border: 1px solid #ccc;
}
*/
#product-view .form-group {
	margin-bottom: 0;
}

#stoneModal .well {
	overflow-x: scroll;
}

.change-stone-btn {
  background-color: #D22A85;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #FFFFFF!important;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.change-stone-btn:hover, .change-stone-btn:focus{
	background-color: #D22A85;
    color:#FFF;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    background-image: linear-gradient(to bottom, #EC008C, #EC008C);
}




@media(min-width: 768px){
	.carousel-control-horizontal .fa-chevron-left, .carousel-control-horizontal .fa-chevron-right, .carousel-control-horizontal .icon-prev, .carousel-control-horizontal .icon-next {
		font-size: 30px;		
	}
	.carousel-inner-horizontal img {
		max-height: auto;
	}
	.carousel-control-responsive .fa-chevron-left, .carousel-control-responsive .fa-chevron-right, .carousel-control-responsive .icon-prev, .carousel-control-responsive .icon-next {
		font-size: 30px;		
	}
	.carousel-inner-responsive img {
		max-height: auto;
	}
	#thumbnail-carousel-responsive {
		visibility: hidden;
		display: block;
		height: 0px;
	}
	.no-support.main-img{
		display: block;
		width: 100%;
		position: relative;
		height: 480px !important;
		overflow: hidden;
		margin: auto;
		border: none;
		padding: 0 !important;
	}
}

@media(max-width: 1200px){
	#product-view .main-img{
		padding: 66% 0 0 0px;		
	}
}

@media(max-width: 991px){
	#thumbnail-carousel-horizontal {
		position: absolute;
		visibility: hidden;
		display: block;
	}
	#thumbnail-carousel-responsive {
		visibility: visible;
		display: block;
		height: auto;
	}
	.thumb-img-responsive{
		padding: 0 1px;
	}
	#product-view .main-img{
		padding: 100% 0 0 0px;	
		margin-bottom: -30px;	
	}
	#stoneModal .select-stone {
		margin-left: 0px;
		margin-top: 5px;
	}
}

@media(max-width: 767px){
	.thumb-img-horizontal{
		padding: 10px 0;
	}
	#product-view .main-img{
		margin-top: 50px;
		padding: 85% 0 0 0px;		
	}	
	.price-fixed > div {
		padding-top: 2px;
	}
	.price-fixed:nth-child(2){
		height: 55px;
	}
}

@media(max-width:600px){
	#product-view .main-img{
		padding: 100% 0 0 0px;		
	}
}

@media(max-width:423px){
	#fixed-wrapper {
		margin-top: -20px;
	}
	#product-view .main-img{
		margin-top: 40px;		
	}	
	.price-fixed > div {
		padding-top: 8px;
	}
	.price-fixed h2 {
		font-size: 20px;
	}
	.price-fixed .main-price {
		font-size: 20px !important;
	}
	.price-fixed {
		padding: 2px 6px;
	}
	
	.price-fixed .btn {
		font-size: 12px !important;
		padding: 2px 6px;
	}
	.thumb-pad {
		padding: 0 5px;;
	}
	.no-support .threesixty {
		height: 360px !important;
	}	
	.price-fixed .btn-alteration, .price-fixed .btn-deposit {
		width: 100%;
		
	}
	.price-fixed:nth-child(2){
		height: 72px;
	}
}

.question-mark-link{
	color:#eb3b9b;
}

@media(max-width: 400px){
	.thumb-img-horizontal{
		padding: 5px 0;
	}
	/*
	.price-fixed > div {
		padding-top: 6px;
	}
	.price-fixed .main-price {
		font-size: 18px !important;
	}
	.price-fixed .btn-buy {
		font-size: 11px !important;
		padding: 0px 6px;
	}
	*/
}

/* Wed view
******************************/

#product-view .wed-band-table tbody tr:first-child td  {
    border-top: 0;
}
#product-view .wed-band-table {
	margin-top: -10px;
}

/* Product Page
******************************/
.service:hover {
    box-shadow: 0 0 10px #EC008C;
}
.service a:hover{
    text-decoration:none;
}
.service img{
    width:170px;
    height:170px;
}

/* About Page
******************************/
.opening-times-table{
	padding-bottom:10px;
}
/* Contact Page
******************************/
.error{
    color:red;
}
.form-control.error {
    border: 1px solid red!important;
    box-shadow: 0 0 5px rgba(255,0,0,0.2);
}

/* Diamond Search
******************************/
#search-list{
    margin-top:20px;
}

.btn.btn-red:hover,a.selected{ background:#E74C3C;}

.btn-red {
    background: #fff;
    border-color: #dbdbdb;
    border-color: #ccc;
    color: #636870;
    margin-bottom: 3px;
    border-radius: 0 !important;
}

.btn-red label {
    color: #636870;
}
.btn.btn-red:hover, .btn.btn-red.active{
    background:#EB3B9B;
    border-color: #AD0668;
    color:#fff !important;
}
.btn.btn-red.selected{
    background:#EB3B9B;
    border-color: #AD0668;
    color:#fff !important;
}
.icon1{width:34px; height:38px; display:inline-block; background: url(../img/diamond-search/round.png) center / cover no-repeat;}
.icon2{width:35px; height:38px; display:inline-block; background: url(../img/diamond-search/princess.png) center / cover no-repeat;}
.icon3{width:49px; height:38px; display:inline-block; background: url(../img/diamond-search/emerald.png) center / cover no-repeat;}
.icon4{width:23px; height:38px; display:inline-block; background: url(../img/diamond-search/pear.png) center / cover no-repeat;}
.icon5{width:18px; height:38px; display:inline-block; background: url(../img/diamond-search/marquise.png) center / cover no-repeat;}
.icon6{width:34px; height:38px; display:inline-block; background: url(../img/diamond-search/icon6.png) center / cover no-repeat;}
.icon7{width:23px; height:38px; display:inline-block; background: url(../img/diamond-search/oval.png) center / cover no-repeat;}
.icon8{width:29px; height:38px; display:inline-block; background: url(../img/diamond-search/cushion.png) center / cover no-repeat;}
.icon9{width:33px; height:38px; display:inline-block; background: url(../img/diamond-search/heart.png) center / cover no-repeat;}
.icon10{width:27px; height:38px; display:inline-block; background: url(../img/diamond-search/radiant.png) center / cover no-repeat;}

.btn.active .icon1,.btn.btn-red:hover .icon1{width:34px; height:38px; display:inline-block; background: url(../img/diamond-search/round.png) center / cover no-repeat;}
.btn.active .icon2,.btn.btn-red:hover .icon2{width:35px; height:38px; display:inline-block; background: url(../img/diamond-search/princess.png) center / cover no-repeat;}
.btn.active .icon3,.btn.btn-red:hover .icon3{width:49px; height:38px; display:inline-block; background: url(../img/diamond-search/emerald.png) center / cover no-repeat;}
.btn.active .icon4,.btn.btn-red:hover .icon4{width:23px; height:38px; display:inline-block; background: url(../img/diamond-search/pear.png) center / cover no-repeat;}
.btn.active .icon5,.btn.btn-red:hover .icon5{width:18px; height:38px; display:inline-block; background: url(../img/diamond-search/marquise.png) center / cover no-repeat;}
.btn.active .icon6,.btn.btn-red:hover .icon6{width:34px; height:38px; display:inline-block; background: url(../img/diamond-search/icon6.png) center / cover no-repeat;}
.btn.active .icon7,.btn.btn-red:hover .icon7{width:23px; height:38px; display:inline-block; background: url(../img/diamond-search/oval.png) center / cover no-repeat;}
.btn.active .icon8,.btn.btn-red:hover .icon8{width:29px; height:38px; display:inline-block; background: url(../img/diamond-search/cushion.png) center / cover no-repeat;}
.btn.active .icon9,.btn.btn-red:hover .icon9{width:33px; height:38px; display:inline-block; background: url(../img/diamond-search/heart.png) center / cover no-repeat;}
.btn.active .icon10,.btn.btn-red:hover .icon10{width:27px; height:38px; display:inline-block; background: url(../img/diamond-search/radiant.png) center / cover no-repeat;}

@media(max-width: 1200px){
	.icon3{width:49px; height:38px; display:inline-block; background: url(../img/diamond-search/emerald.png) center / 32px no-repeat;}
	.btn.active .icon3,.btn.btn-red:hover .icon3{width:49px; height:38px; display:inline-block; background: url(../img/diamond-search/emerald.png) center / 32px no-repeat;}
}

@media(max-width: 991px){
	.icon3{width:49px; height:38px; display:inline-block; background: url(../img/diamond-search/emerald.png) center / cover no-repeat;}
	.btn.active .icon3,.btn.btn-red:hover .icon3{width:49px; height:38px; display:inline-block; background: url(../img/diamond-search/emerald.png) center / cover no-repeat;}
}

@media(max-width: 650px){
	.icon1{width:16px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon1.png) 0px 10px no-repeat;}
	.icon2{width:16px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon2.png) 0px 10px no-repeat;}
	.icon3{width:12px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon3.png) -2px 10px no-repeat;}
	.icon4{width:10px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon4.png) -3px 10px no-repeat;}
	.icon5{width:10px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon5.png) -3px 10px no-repeat;}
	.icon6{width:16px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon6.png) 0px 10px no-repeat;}
	.icon7{width:16px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon7.png) 0px 10px no-repeat;}
	.icon8{width:16px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon8.png) 0px 10px no-repeat;}
	.icon9{width:16px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon9.png) 0px 10px no-repeat;}
	.icon10{width:12px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon10.png) -2px 10px no-repeat;}
	
	.btn.active .icon1,.btn.btn-red:hover .icon1{width:16px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon1.png) 0px 10px no-repeat;}
	.btn.active .icon2,.btn.btn-red:hover .icon2{width:16px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon2.png) 0px 10px no-repeat;}
	.btn.active .icon3,.btn.btn-red:hover .icon3{width:12px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon3.png) -2px 10px no-repeat;}
	.btn.active .icon4,.btn.btn-red:hover .icon4{width:10px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon4.png) -3px 10px no-repeat;}
	.btn.active .icon5,.btn.btn-red:hover .icon5{width:10px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon5.png) -3px 10px no-repeat;}
	.btn.active .icon6,.btn.btn-red:hover .icon6{width:16px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon6.png) 0px 10px no-repeat;}
	.btn.active .icon7,.btn.btn-red:hover .icon7{width:16px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon7.png) 0px 10px no-repeat;}
	.btn.active .icon8,.btn.btn-red:hover .icon8{width:16px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon8.png) 0px 10px no-repeat;}
	.btn.active .icon9,.btn.btn-red:hover .icon9{width:16px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon9.png) 0px 10px no-repeat;}
	.btn.active .icon10,.btn.btn-red:hover .icon10{width:12px; height:38px; display:inline-block; background: url(../img/diamond-search/sm-icon10.png) -2px 10px no-repeat;}
}

.shape-labels span {
	display: inline-block;
	margin-right: -5px;
	text-align: center;
	font-size: 10px;
}

@media(max-width: 460px){
	.shape-labels span {
		display: none;
	}
}

.btn-group>.btn, .btn-group-vertical>.btn {
	position: relative;
	float: left;
	height: 35px;
}

.shape-btns .btn {
    padding: 0;
    height: 40px;
}
.colour-btns .btn, .colour-btns button {
    padding: 8px 0px 8px 0px;
}
.cut-btns .btn {
    padding: 8px 0px 8px 0px;
}
.clarity-btns .btn {
    padding: 8px 0px 8px 0px;
}
.polish-btns .btn, .symmetry-btns .btn {
    padding: 8px 0px 8px 0px;
}
.fluoro-btns .btn {
    padding: 8px 0px 8px 0px;
}
.FancyWindow {
    background-color: #FFFFFF; border: 1px solid #ADADAD;box-shadow: 0 1px 4px 1px #ADADAD; min-height: 140px;left:0;padding: 13px;position: absolute; top:0;width:275px;z-index: 8;
}
.fancy-box{ margin:0 0 10px 0;}
.fancy-box .btn{ padding:2px;}
.FancyWindow div span{ float:left; margin:0 0; padding:0; width:100%; font-size:11px; text-align:left; font-family:Georgia, "Times New Roman", Times, serif;}
.fancy-box ul{ float:left; margin:0; padding:0;}
.fancy-box ul li{ float:left; margin:0; padding:0; list-style:none; width:35px !important;}
.fancy-box ul.link1{ float:left; margin:0; padding:0; width:100%;}
.fancy-box ul.link1 li{ float:left; margin:0; padding:0; width:69px !important;}
.fancy-box ul.link1 li a{ float:left; margin:0; font-size:10px; font-family:Arial, Helvetica, sans-serif; padding:0; line-height:12px !important;}
.FancyWindow li a{ float:left; margin:0; padding:0; font-family:Georgia, "Times New Roman", Times, serif; font-size:12px;}
.diamond-1{ float:left; margin:0; padding:0; background:url(../img/diamond-search/fancy-img.png) 5px 2px no-repeat; width:30px !important; height:25px;}
.diamond-2{ float:left; margin:0; padding:0; background:url(../img/diamond-search/fancy-img.png) -31px 2px no-repeat; width:30px !important; height:25px;}
span.diamond-3{ float:left; margin:0; padding:0; background:url(../img/diamond-search/fancy-img.png) -67px 2px no-repeat; width:30px !important; height:25px;}
span.diamond-4{ float:left; margin:0; padding:0; background:url(../img/diamond-search/fancy-img.png)  -103px 2px no-repeat; width:30px !important; height:25px;}
span.diamond-5{ float:left; margin:0; padding:0; background:url(../img/diamond-search/fancy-img.png) -139px 2px no-repeat; width:30px !important; height:25px;}
span.diamond-6{ float:left; margin:0; padding:0; background:url(../img/diamond-search/fancy-img.png) -167px 2px no-repeat; width:30px !important; height:25px;}
#search-list ul li ul.FancyWindow li{ border:none;}

.ui-slider {
    margin-left: 7px;
}
.ui-slider .ui-slider-range {background: none repeat scroll 0 0 #EC008C !important;}
#box1 .col-lg-4,#box3 .col-lg-6{ margin-bottom:20px;}
#box1 .table { margin-bottom: 20px;}
.cost-value{ display: block; position:relative; width:100%; height: 50px;}
.min-amount { border: 1px solid #D9DADB !important;left: 0; position: absolute;text-align: center;top: 20px; width: 55px;}
.max-amount { border: 1px solid #D9DADB !important;right: 0; position: absolute;text-align: center;top: 20px; width: 55px;}

.cost-value input {
	color: #656565;
	font-size: 15px;
	height: 23px;
	margin-left: 0;
	margin-top: -10px;
	padding-left: 0;
	text-align: center;
	width: 45px;
	z-index: 3;
	border: none;
}

#price-min, #price-max {
	width: 100px;	
}

.top_30{ margin-top:30px;}
.top_btm{ margin:10px 0;}

#view-btn span.list1{ width:11px; height:11px; background:url(../img/diamond-search/grid1.png) left top no-repeat; float:left;}
#view-btn span.list2{ width:11px; height:11px; background:url(../img/diamond-search/grid2.png) left top no-repeat; float:left;}
#view-btn span.list3{ width:11px; height:11px; background:url(../img/diamond-search/grid3.png) left top no-repeat; float:left;}
#view-btn a.selected span.list1{ width:11px; height:11px; background:url(../img/diamond-search/grid1.png) left bottom no-repeat; float:left;}
#view-btn a.selected span.list2{ width:11px; height:11px; background:url(../img/diamond-search/grid2.png) left bottom no-repeat; float:left;}
#view-btn a.selected span.list3{ width:11px; height:11px; background:url(../img/diamond-search/grid3.png) left bottom no-repeat; float:left;}

#id-screen1{ margin:0; float:right;}
#id-screen1 ul{ margin:0; float:left;}
#id-screen1 ul li{ margin:0 5px 0 0; float:left; padding:2px 3px; border:1px solid transparent; list-style:none;}
#id-screen1 ul li a{ margin:0; float:left; font-size:11px; color:#6e7273; padding:0;}
#id-screen1 ul li a span{ margin:0 3px 0 0; float:left; font-size:11px; color:#6e7273; border-bottom:1px dashed; padding:0;}

.ArrowUpAndDown {background:url(../img/diamond-search/ArrowUpAndDown.png) 5px 5px no-repeat;float: right; height: 15px;width: 10px;}
.sort-asc .ArrowUpAndDown {background: url(../img/diamond-search/Arrowdown.png) 5px 7px no-repeat;float: right;height: 15px;width: 10px;}
.sort-desc .ArrowUpAndDown {background: url(../img/diamond-search/Arrowup.png) 5px 7px no-repeat;float: right;height: 15px;width: 10px;}
#id-screen1 span.text{ line-height:22px;float:left;font-size:11px;}
#id-screen1 span.text1 { line-height:20px; float:right;}
#id-screen1 span.text1 a{ line-height:20px; margin-right:5px; float:right;  font-size:11px; font-family:Georgia, "Times New Roman", Times, serif; color:#6e7273; text-decoration:underline;}
#id-screen1 ul li.selected{ border:1px solid #dbdddd;}
.top-nav{ width:100%; margin:10px 0; float:left;}
#Results,#Viewed { text-align:center;}
#Results small,#Viewed small{ width:100%; text-align:center; float:left;}
#Results small a,#Viewed small a{ text-align:center; color:#333; line-height:22px;}
#Results .img-responsive ,#Viewed .img-responsive { display: inline-block;height: auto;max-width: 100%;}
#Results input[type="checkbox"] ,#Viewed input[type="checkbox"] {line-height: normal;}
#Comparison p{ margin:2px 0; border-top:1px dashed #eee;}
#Comparison p span.Title{ color:#ccc; width:30%; float:left;}
#Comparison p span.Numeric1{ color:#333; text-align:center;}
.range-box{ margin:8px auto;width: 130px;}
#cost-value1 ,#cost-value2{position: relative;width: 100%;}
#cost-value1 input,#cost-value2 input { color: #656565;font-family: Tahoma;font-size: 11px; height: 18px;margin-left: 0;margin-top:10px;padding-left: 0;text-align: center; width:30px;z-index: 3;}
#amount11,#amount111{ float:left;}
#amount22,#amount222{ float:right;}

.shape-round{ background:url(../img/diamond-search/shape.png) left 2px no-repeat;width:15px; height:20px; float:left;margin-left:15px;}
.shape-emerald{ background:url(../img/diamond-search/shape.png) left 2px no-repeat;width:15px; height:20px; float:left;margin-left:15px;}
.shape-cushion{ background:url(../img/diamond-search/shape.png) left 2px no-repeat;width:15px; height:20px; float:left;margin-left:15px;}


.advanced-opt-btn {
    padding: 15px 0 15px 0;
}
table.table-diamond-results tr td{
    padding: 5px 0 5px 0 !important;
    vertical-align: middle;
    padding: 0;
}
.btn-green {
    background-image: none;
    background-color: #8CC63F;
    color: #fff;
}
.btn-pink {
    background-image: none;
    background-color: #E27594;
    color: #fff;
}
.btn-purple {
    background-image: none;
    background-color: #7E7FB4;
    color: #fff;
}
dl.dl-inline dt,dl.dl-inline dd {
    display: inline-block;
}
.loading {
    background: #fff;
    opacity: 0.2;
    cursor:auto;
    width: 100%;
    height: 100%;
    z-index: 999999;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
}
.results-details {
    position: absolute;
    right: 15px;
    top: 10px;
}
div#wrap > footer {
    padding: 14px 0 10px 0;
    background-color: #EEEEEE;
    border-top: 1px solid #dddddd;
}
.nav-tabs {
    border-bottom: 1px solid #dddddd;
}
.hk-center .table > thead > tr > th, .hk-center .table > tbody > tr > th, .hk-center .table > tfoot > tr > th, .hk-center .table > thead > tr > td, .hk-center .table > tbody > tr > td, .hk-center .table > tfoot > tr > td {
    text-align: left !important;
}
#hk-parcel-prices h5 {
    font-weight: bold;
    color: #7E7EB9;
}
#hk-parcel-prices table thead {
    border-bottom: 2px solid #c6c6c6;
}
#diamond-search a {
    padding: 5px 10px 5px 10px;
    font-size: 14px;
    color: #E50083;
    text-decoration: underline;
}
#diamond-search a:hover {
    color: #000;
}
#diamond-search .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus, #hk-parcel-prices .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
    background-color: #F0F0F0;
    background-image: none;
}
ul.pills-sm li.active a{
    background-color: #E02976;
}
ul.pills-sm li.active a:hover{
    background-color: #E02976;
}
ul.pills-sm li a{
    padding: 5px 10px;
    font-size: 11px;
}
ul.pills-sm li a:hover{
    color: #E02976;
}
blockquote p:before {
    color: #ccc;
    content: open-quote;
    font-size: 3em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}
blockquote p:after {
    color: #ccc;
    content: close-quote;
    font-size: 3em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}
blockquote p {
    font-style: italic;
}

.title {
	color: #EB3B9B;
	font-size: 24px;
}

.nav-tabs>li>a {
	border-radius: 0;
}

.nav-tabs > li > a:hover,  .nav-tabs > li > a:focus{
    background-color: #eaeaea;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #eaeaea;
    border-color: #ddd #ddd transparent;
    border-image: none;
    border-style: solid;
    border-width: 1px;
    color: #000 !important;
    cursor: default;
}

.table-diamond-results .top-row {
	background-color: #eaeaea;
}

.table-diamond-results tbody tr {
	cursor: pointer;
}

.table-diamond-results label {
	margin-bottom: 0;
}



@media(min-width: 997px){
	#advanced-opt-box {
		height: 214px;
	}
}

@media(max-width: 997px){
	#advanced-opt-box {
		height: 473px;
	}
}

@media(max-width: 767px){
	#diamond-search a {
		padding: 5px;
	}
	.no-padding-xs {
		padding: 0;
	}
}


/* Shaped Wedding Rings Page
******************************/
#shaped-pack-view .select2-container {
	margin-bottom: 0px;
}

.embed-container {
    height: auto;
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 0;
    position: relative;
}
.embed-container iframe, .embed-container object, .embed-container embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.form-group-btn 
{
    position: relative;
    font-size: 0px;
    white-space: nowrap;
    width: 1%;
    white-space: nowrap;
    vertical-align: top;
    display: table-cell;
}

.postcode-btn 
{
    border-bottom-left-radius: 0px !important;
    border-top-left-radius: 0px !important;
    margin-left:  -1px;
    height: 34px !important;
}

.form-group-btn > .btn 
{
    position: relative;
}

.postcode
{
    display: table;
}

.panel-img 
{
    text-align: center;
}

blockquote p 
{
    font-size: 16px;
}

@media(max-width: 991px){
	#shaped-wed-img {
		position: relative;
		top: -238px;
	}
}

/* Support Center
******************************/
.support-list-wrap{
    display: block;
}

.support-panel {
	padding: 0px 10px 10px 10px;
}

.circle.green{background-color: #72b288;}
.circle.blue{background-color: #6899d1;}
.circle.orange{background-color: #e08653;}
.circle.blue i{margin-right: 4px;}
.circle.orange i{margin-right: 2px;}
.circle {
    background-color: #3498db;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    height: 100px;
    margin: 0 auto 20px;
    text-align: center;
    width: 100px;
}
.circle:hover {
    opacity: 0.85;
}
.circle span {
    display: inline-block;
    height: 100px;
    vertical-align: middle;
}
.circle i {
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    font-size: 40px;
}
.support-search{
    float:none;
    padding: 5px 0px;
    margin-bottom: 35px;
}
.support-search h1{
    font-size: 41px;
    margin-bottom: 15px;
}
.support-search p{
    font-size: 14px;
}

.support-search .text-center {
	margin-bottom: 35px;
	padding: 0px 15px;
}

.support-search-form{
    padding: 20px 25px;
    text-align: center;
    background-color: #F0F2F5;
}
.support-search-form-btn{
    height:50px;
    width:100px;
    border:none;
    border-radius: 0;
    background-color: #E5429C;
    color: #fff;
}
.support-search-form-btn:hover{
    background-color: #EA59AD;
    color: #fff;
}

.support-search-form-input{
    width:50%;
    height:50px;
    border-radius: 0;
    border:1px solid #fff;
    font-size: 14pt;
    vertical-align: top;
    padding: 0px 20px 0px 55px;
	background: #fff url("../img/icon-search.png") no-repeat 20px center;
}

@media(max-width:767px){
	.support-search-form-input {
		width: 100%;
	}
	.support-search h1{
	    font-size: 32px;
	}
}

.support-search-form-input::-webkit-input-placeholder {color: #ED90C1;}
.support-search-form-input:-moz-placeholder {color: #ED90C1;}
.support-search-form-input::-moz-placeholder {color: #ED90C1;}
.support-search-form-input:-ms-input-placeholder {color: #ED90C1;}

.support-search-form-title{
    font-size: 24pt;
    color: #000;
    margin-bottom: 10px;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
    border: 1px solid #ED90C1;
    background: #FFF;
    font-weight: bold;
    color: #E5429C;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
    color: #E5429C;
    text-decoration: none;
}

.support-icon{
	height: 100px;
	width: 100px;
	margin: auto;
	text-align: center;
	font-size: 70px;
}

.support-icon a {
	color: #df4782;
}


.support-text {
	margin-top: -15px;
	font-size: 14px;
}

.support-text h3 {
	font-size: 26px;
	color: #212121;
}

.support-text h3 a {
	color: #212121;
}

.question-results {
	font-size: 14px;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	display: block;
	position:relative;
	top: -20px;
	left: 18px;
	width: 95%;
}

.article a {
	font-size: 24px;
}

.article .fa {
	position: absolute;
	display: block;
	font-size: 48px;
	color: #3e3e3e;
}

.article .span {
	display: block;
	margin-bottom: 20px;
	margin-left: 70px;
	width: 95%;
	font-size: 24px;
	padding-right: 50px;
}

.question-icon {
	margin-right: 8px;
}

#search-results td {
	border-top: none;
}

/* FAQ
******************************/

.faq h3 {
    color:#212121;
}
.category {
    color: #3e3e3e!important;
    padding-left: 25px;
    padding-right: 25px;
}
.back-to-top{
    color: #424242!important;
    margin-left: 36px;
}
.back-to-top:hover{
    color: #000!important;
}

section {
    opacity: 1;
    -moz-opacity:1;
    filter: alpha(opacity=100);
    -khtml-opacity: 1;
    webkit-transition: opacity 2s; /* For Safari 3.1 to 6.0 */
    transition: opacity 2s;
}
.deactivate{
    opacity: 0.2;
    -moz-opacity:0.2;
    filter: alpha(opacity=20);
    -khtml-opacity: 0.2;
    webkit-transition: opacity 2s; /* For Safari 3.1 to 6.0 */
    transition: opacity 2s;
}

#search-results-container{
	overflow: auto;
	background-color: #fff;
	border: 1px solid #eee;
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	z-index: 9000;
}

@media(max-width:768px){
	#search-results-container {
		width: 100%;
	}
}

#search-results{
	text-align: left;
	width: 100%;
	font-size: 14px;
	margin-bottom: 0;
}

.category-toggle {
	display: inline-block;
	height: 25px;
	width: 100%;
}


.category-toggle h3{
	display: inline;
	font-size:19px;
}

.category-toggle .fa {
	font-size: 16px;
	margin-right: 8px;
	margin-left: 8px;
	position: relative;
	bottom: 5%;
	color: #df4782;
}

.question {
	margin-left: 36px;
	margin-top: 20px;
}

.question-li {
	font-size: 24px;
}

.question-li .fa {
	margin-right: 8px;
	position: relative;
	bottom: 7%;
}

.question-li p {
	display: inline;
	color: #262626;
}

.category-wrapper{
	overflow: hidden;
}

.question-wrapper{
	overflow: hidden;
}



/* KNOWLEDGE BASE
******************************/

.kb-content h1, .kb-content h2,
.kb-content h3, .kb-content h4,
.kb-content h5{color:#212121;}
.kb-content h1{font-size: 1.9em;}
.kb-content h2{font-size: 1.8em;}
.kb-content h3{font-size: 1.6em;}
.kb-content h4{font-size: 1.4em;}
.kb-content h5{font-size: 1.2em;}

.kb-category-list:before{
    content: '\f111';
    margin-left:3px;
    padding-right:3px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
}
.kb-category-list{
    font-size: 1.3em;
}
.kb-article-list:before {
    content: '\f0f6';
    padding-right:3px;
    margin-left:3px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
}
.kb-article-list {
    font-size: 1.3em;
    display:block;
}
.category-box{
    padding-top:20px;
}
.float-container
{
    overflow: auto;
    width: 100%
}
.panel-tracking
{
    height: 191px;
}
.no-search-results{
    text-align: center;
    font-size: 12pt;
}

.faq-category:before, .kb-category:before{
    content: '\f111';
    position: relative;
    font-family: FontAwesome;
    font-size: 6pt;
    line-height: 1px;
    color:#E5429C;
    padding-right:5px;
    margin-left:5px;
    top: -3px;
}
.faq-category, .kb-category{
    font-size: 12pt;
}
.tab-content{
    min-height:400px;
}
.faq-search-count{
    margin-top:1px;
    font-size: 8pt;
    padding-top:2px;
    width:19px;
    height: 19px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    background-color: #ED90C1;
    color:#FFF;
}

.faq.results-box, .category-box {
	background-color: #fff;
	padding: 0px 30px 20px 30px;
	margin-bottom: 40px;
	border: 5px solid #F0F2F5;
}

.most-viewed:hover {
	cursor: pointer;
}

.question-results:hover {
	cursor: pointer;
}

.category-box .category-title span, .faq.results-box .category-title span{
	bottom: 6px;
}

.category-box .category-title h3, .faq.results-box .category-title h3{
	padding-bottom: 5px;
	border-bottom: 1px solid #fff;
}

.category-title h3 {
	margin-bottom: 20px;
	font-size: 22px;
	color: #262626;	
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
}

.category-title .h3-faq {
	margin-bottom: 0px;
}

.category-title a {
	position: relative;
	bottom: 4px;
}

.category-toggle .fa:hover {
	color: #eb3b9b;
}

.category-title span {
	position: relative;
	bottom: 4px;
}

.category-title h3 a {
	color: #262626;
}

.category-title i {
	position: relative;
	top: -56px;
	font-size: 17px;
	color: #df4782;
}

.category-title .category-toggle > i {
	top: -31px;
}

.article-count {
	position: relative;
	float: right;
	top: -59px;
	background-color: #df4782;
	padding: 2px 11px;
	color: #fff;
	font-size: 14px;
}

.article-count:hover {
	background-color: #eb3b9b;
	transition: 0.2s;
}



.category-list {
	font-size: 14px;
}

.category-list {
	margin-bottom: 0px;
}


.category-list li {
	margin-bottom: -5px;
}

.category-list i {
	margin-right: 8px;
	font-size: 20px;
	color: #555;
}

.category-list li a {
	display: block;
	position: relative;
	top: -20px;
	left: 18px;
	width: 95%;
	color: #333;
	font-size: 16px;
}

.article-list {
	margin-bottom: -20px !important;
}

.article-list a {
	top: -22px !important;
	left: 35px !important;
	width: 93%!important;
}

article > .article {
	min-height: 100px;
	border-bottom: 1px solid #ddd;
	margin-bottom: 20px;
}

article > .article i {
	position:absolute;
	display: block;
	font-size: 48px;
	color: #3e3e3e;	
}

article > .article > span {
	display: block;
	margin-bottom: 20px;
	margin-left: 70px;
	width: 95%;
	font-size: 24px;
	padding-right: 50px;
}

article > .article > .faq {
	font-size: inherit;
}

article > .article > span a {
	color: #212121;
}

.article-subtext {
	color: #737980;
	font-size: 14px;
	display: relative;	
}

@media(max-width: 430px){
	article > .article > span {
		display: block;
		margin-bottom: 20px;
		margin-left: -28px;
		width: 100%;
		font-size: 18px;
		padding-right: 0px;
	}
	#kb-categories-view article > .article > span {
		display: block;
		margin-bottom: 20px;
		margin-left: 0px;
		width: 100%;
		font-size: 18px;
		padding-right: 0px;
	}
	article > .article i {
		display: none;
	}
	.question-li {
		font-size: 18px;
	}
}

/* knowlege base view 
***********************/

.article.view  {
	min-height: 50px !important;
	border-bottom: 1px solid #ddd;
	margin-bottom: 30px;
	position: relative;
	top: 10px;
}

.article.view  i {
	position:absolute;
	display: block;
	font-size: 57px;
	color: #3e3e3e;	
}

.article.view span {
	display: block;
	margin-bottom: 20px;
	margin-left: 70px;
	width: 95%;
	font-size: 30px;
	padding-right: 50px;
	color: #212121;
}

.article.view .article-subtext {
	color: #737980;
	font-size: 14px;
	display: relative;	
}

.kb-content{
	margin-bottom: 40px;
}

@media(max-width: 767px){
	.article.view span {
		display: block;
		margin-bottom: 20px;
		margin-left: 0px;
		width: 100%;
		font-size: 28px;
		padding-right: 0px;
		color: #212121;
	}
}

/*Register
---------*/

.padding-header 
{
    padding: 1px 15px 15px 15px;
}

.bg-pink 
{
    background-color:#EC008C;
    color: white !important;
}

.bg-pink h4 
{
    color: #fff;
    text-shadow: none;
}

.checkbox-margin-0 
{
    margin: 0;
}

.register-list
{
    list-style: none;
    padding: 0;
}

/*account
---------*/

.text-center
{
    text-align: center;
}

.field-hidden
{
    display: none;    
}

.field-hidden-address
{
    display: none;    
}

.editable-error-block {
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25)!important;
    color: #fff !important;
    width: auto;
    min-height: 30px;
    position: absolute;
    top: -49px;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: opacity 0.15s linear 0s;
    text-align: center;
    font-size:  14px;
    line-height: 21px;
}

@media (max-width: 1200px) {
    .editable-error-block {
        left: -20%;
        top: -49px;
        min-height: 30px;
    }
}

@media (max-width: 991px) {
    .editable-error-block {
        left: 16px;
        top:  -49px;
        min-height: 30px;
    }
}

@media (max-width: 767px) {
    .editable-error-block {
        left: -72px;
        top: -63px;
        min-height: 43px;
    }
}

.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
    border: 1px solid transparent;
    background-image: linear-gradient(to bottom, #EA59AD, #EC008C);
    background-color: #D22A85;
    background-repeat: repeat-x;
    color: #fff !important;
}

.control-label{
    font-weight: normal;
    padding-bottom: 5px;

}
.view-div{
    display: block;
    width: 100%;
    height: 34px;
    padding-top:7px;
    padding-left: 13px;
}
.error-msg{
    padding: 8px 30px;
    overflow: hidden;
    font-size: small;
    color: red;
    float: left;
}
.button-wrap{
    padding-top: 7px;
}

/*Order view
------------*/

.float-container
{
    overflow: auto;
	width: 100%
}

.panel-tracking
{
    height: 191px;
}

.float-right-sm {
    float: right;
}

@media(max-width:767px) {
    .float-right-sm {
        float: none;
    }
    .btn-xs-mod {
        width: 150px;
    }
}

.center-xs {
    text-align: center;
    margin: auto;
}

.panel-top {
    height: 220px !important;
}

@media(max-width:767px) {
    .panel-top {
        height: 250px !important;
    }
    .payment-form .btn {
    	float: right;
    }
}

.float-clear-right {
    float: right !important;
    clear: right !important;
}

/*Bespoke View
-------------*/

@media (max-width:992px){
    .hide-panel {
        display: none;
    }    
}


/* Checkout
------------------------------------*/
#checkout-progress .progress .progress-bar {
    background-color: #d22a85;
    background-image: -moz-linear-gradient(top,#eb3a9a,#ad1266);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#eb3a9a),to(#ad1266));
    background-image: -webkit-linear-gradient(top,#eb3a9a,#ad1266);
    background-image: -o-linear-gradient(top,#eb3a9a,#ad1266);
    background-image: linear-gradient(to bottom,#eb3a9a,#ad1266);
    background-repeat: repeat-x;
}

#checkout-progress .progress-text > div.col-md-4 {
    background: url("../img/grey-line.gif") center bottom no-repeat;
    height: 37px;
}

#checkout-progress .muted {
    color: #999;
}

#cart-view .panel >.table-bordered, .panel >.table-responsive >.table-bordered, .panel>.table-responsive {
    border: 1px solid #ddd;
}

#cart-view .table-cart tr td {
    vertical-align: middle;
}

#cart-view .table-cart label {
    font-weight: normal;
}

#cart-view .table-cart .eta{
    color: #5BB601;
}

#cart-view .table-cart .image {
    background-color: #fff;
}

#cart-view hr {
    margin: 10px 0 15px 0;
}

#cart-view .help-block {
    font-size: 15px;
    color: #3E3E3E;
}

.table-cart th {
	font-size: 17px;
	font-weight: normal;
	color: #3E3E3E;
}

.cart-item h4 {
	margin-bottom: 6px;
	margin-top: 6px;
}

.cart-item ul li {
	margin-bottom: 3px;
	font-size: 14px;
}

.cart-item td {
	font-size: 14px;	
}

.cart-item .price {
	font-size: 16px;
	color: #444;
}

.cart-totals {
	font-size: 14px;
}


.table-cart>thead>tr>th, .table-cart>thead>tr>td {
  border-bottom-width: 0px; 
}

.select2-container {
	margin-bottom: 10px;
}

.select2-container .select2-selection--single {
	height: 34px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 34px;
	font-size: 14px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 5px;
}

.select2-container--default .select2-selection--single {
	background-color: #fff;
	border: 1px solid #DDDDDD;
	border-radius: 0px;
}

.select2-container--default .select2-selection--single:hover {
    -webkit-appearance: none;
    -moz-appearance:none;
    box-shadow: 0 0 5px rgba(236, 0, 140, 0.2);
    border: 1px solid rgba(236, 0, 140, 0.4);	
}

.select2-container--default .select2-selection--single:focus {
    -webkit-appearance: none;
    -moz-appearance:none;
    box-shadow: 0 0 5px rgba(236, 0, 140, 0.5) !important;	
}

.select2-container--default .select2-results__option[aria-selected=true] {
	background-color: #f5f5f5;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #eb3b9b;
    color: white;
}

#cart-view .panel-heading {
  	color: #333;
  	background-color: #f5f5f5;
  	border-color: #EB3B9B;
  	border-bottom-width: 2px;
}
	
@media (max-width: 767px){
	#card-expiry-month {
		margin-bottom: 15px;
	}
}

/* ------------ Messages ---------- */

/*.errormsg, .alertmsg, .successmsg, .infomsg, .infomsg2 { display: block; margin: 10px 0px; padding: 0px 8px 0px 15px; position: relative; border-radius: 0; -moz-border-radius: 0; }*/
/*.errormsg { background-color: #F6624A; border: 1px solid #E18B7C; color: #fff}*/
/*.alertmsg { background-color: #FFE9AD; border: 1px solid #EAC572; color: #836d31 } */
/*.successmsg { background-color: #EFFEB9; border: 1px solid #C1D779; color: #5d7216 }*/
/*.infomsg { background-color: #DEEEFA; border: 1px solid #AFD3F2; color: #476a88 } */
/* .infomsg2 { background-color: #FFFFFF; border: 1px solid #AFD3F2; color: #3172aa } */
.alert { line-height: 22px }
.alert:after { clear: both; display: block; content: ''; height: 0 }
.alert i { float: left; margin-right: 20px }
.alert i.icon-remove { cursor: pointer; height: 15px; overflow: hidden; position: absolute; right: 5px; top: 5px; width: 15px; margin-right: 0px }
.the-icons i { width: 30px; float: left }

.successmsg, .alertmsg, .infomsg, .infomsg2 {
	background-color: #C05D94;
	border: 1px solid #864167;
	color: #fff;
}
.errormsg { 
	background-color: #850024; 
	border: 1px solid rgba(0,0,0,.2);
	color: #eaeaea !important;
}

.errormsg, .alertmsg, .successmsg, .infomsg, .infomsg2 {
	display: block;
	margin: 10px 0px;
	padding: 20px 8px 20px 15px;
	position: fixed;
	border-radius: 0;
	top: 0px;
	-moz-border-radius: 0;
	right: 15px;
	margin-left: 15px;
	opacity: 0.90 !important;
	transition: opacity 0.1s linear;
	z-index: 9999;
}

.alert > span {
	position: relative;
	margin-right: 25px;
	float: left;
	max-width: 95%;
}

.alert .close {
	font-size: 12pt;
	opacity: 0.8;
	line-height: 43px;
}

.alert .close:hover {
	opacity: 1;
	background-color: transparent;
}

.errormsg:hover, .alertmsg:hover, .successmsg:hover, .infomsg:hover, .infomsg2:hover {
	opacity: 0.96 !important;
} 

@media(max-width: 991px){
	.errormsg, .alertmsg, .successmsg, .infomsg, .infomsg2  {
		padding: 20px 8px 20px 15px;
	}
}

@media(max-width: 767px){
	.errormsg, .alertmsg, .successmsg, .infomsg, .infomsg2  {
		top: 60px;
		right: 0px;
	}
}

/* ------------ Questionnaire Modal ---------- */
.questionnaire .table>thead>tr>th {
    vertical-align: top;
    text-align: center;
}

.form-login{
    margin-top: 30px;
    margin-bottom: 40px;
}

/* zoom-e Magnifier */
.zm-wrap{max-width:100%;margin:auto;position:relative;zoom:1;display:inline-block;*display:inline}.zm-preload{display:none !important}.zm-hover{position:absolute;z-index:9998;top:0;left:0;display:none}#zm-magnifier{position:absolute;display:none;overflow:hidden;z-index:9999;box-shadow:0 0 5px rgba(0,0,0,.6),0 0 3px rgba(0,0,0,.6) inset;border:5px solid #fff;border:3px solid rgba(255,255,255,.3);border-radius:50%;}#zm-magnifier img{max-width:100000px;position:relative;top:0;left:0;z-index:0;cursor:none;box-shadow:0 0 5px rgba(0,0,0,.3)}#zm-magnifier span{position:absolute;top:0px;right:0px;display:block;background:#fff;z-index:9999;overflow:visible;font-size:10px;line-height:1em;padding:2px 6px;border-radius:0 0 0 4px;background:rgba(255,255,255,.5);box-shadow:-1px 1px 2px rgba(0,0,0,.15);font-family:Verdana,Geneva,sans-serif;text-shadow:0 0 4px #fff}.zm-gray{filter:gray}.zm-blur{filter:blur(add=0,direction=0,strength=4)}.zm-trans{background:none;width:100%;height:100%;}

/* ----------- Diamond Stone --------------- */

.zm-wrap > .zoome.top-stone-img, .zm-wrap > .zoome.side-stone-img{
	display: none !important;
}

#diamond-cut, #diamond-size, #diamond-clarity, #diamond-colour {
	padding: 20px 30px;
}

#diamond-cut p, #diamond-cut a, #diamond-size p, #diamond-size a, #diamond-clarity p, #diamond-clarity ul, #diamond-clarity li, #diamond-clarity a, #diamond-colour p, #diamond-colour ul, #diamond-colour li, #diamond-colour a {
	font-size: 14px;
}

#diamond-cut {
	background-image: url('../img/diamond/cutbkg.jpg'); 
	background-size: cover; 
	background-repeat: no-repeat;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(
    src='../../themes/albarose/img/diamond/cutbkg.jpg',
    sizingMethod='scale');	
}

#diamond-cut h3, #diamond-cut p, #diamond-cut a {
	color: #fff;
	text-shadow: none;
}

#diamond-clarity {
	background-image: url('../img/diamond/clarity-VS1.jpg'); 
	background-size: cover; 
	background-repeat: no-repeat;
	background-position: 50% 36%;
	min-height: 400px;	
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(
    src='../../themes/albarose/img/diamond/clarity-VS1.jpg',
    sizingMethod='scale');	
}

#diamond-clarity h3, #diamond-clarity p, #diamond-clarity a, #diamond-clarity ul, #diamond-clarity li {
	color: #fff;
	text-shadow: none;
}

.diamond-size-container {
	display: table;
	position: relative;
	padding: 25px 0 45px 0;
	width: 100%;
}

#diamond-size .diamond-size-container {
	visiblity: hidden;
	padding: 25px 0 45px 0;
	width: 100%;
	margin-top: 70px;
}

#diamond-size .diamond-size-container .cell {
	border-bottom: 1px solid #777;
	display: table-cell;
	height: 100px;
	position: relative;
	width: 5%;
}

#diamond-size .diamond-size-container .cell.first:before {
	display: none;
}

#diamond-size .diamond-size-container .small.cell:before {
	height: 5px;
}

#diamond-size .diamond-size-container .cell:before, #diamond-size .diamond-size-container .last.cell:after {
	background-color: #777;
	display: block;
	content: ' ';
	width: 2px;
	height: 8px;
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
}

#diamond-size .diamond-size-container .cell:before, #diamond-size .diamond-size-container .last.cell:after {
	background-color: #777;
	display: block;
	content: ' ';
	width: 2px;
	height: 8px;
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
}

#diamond-size .diamond-size-container .cell > .item {
	position: absolute;
	bottom: 50px;
	overflow: visible;
}

#diamond-size .diamond-size-container .item[data-size="8.2"] > img {
	width: 8.2mm;
}

#diamond-size .diamond-size-container .item[data-size="10.2"] > img {
	width: 10.2mm;
}

#diamond-size .diamond-size-container .item[data-size="11.6"] > img {
	width: 11.6mm;
}

#diamond-size .diamond-size-container .item[data-size="12.8"] > img {
	width: 12.8mm;
}

#diamond-size .diamond-size-container .item[data-size="13.8"] > img {
	width: 13.8mm;
}

#diamond-size .diamond-size-container .item[data-size="14.8"] > img {
	width: 14.8mm;
}

#diamond-size .diamond-size-container .item[data-size="15.6"] > img {
	width: 15.6mm;
}

#diamond-size .diamond-size-container .item[data-size="16.2"] > img {
	width: 16.2mm;
}

#diamond-size .diamond-size-container .cell > .item > img {
	display: block;
	position: relative;
	bottom: 0;
	max-width: 36mm;
	left: -50%;
}

#diamond-size .diamond-size-container .cell > .item > .label {
	position: absolute;
	display: block;
	text-align: center;
	bottom: -35px;
	left: -30px;
	width: 60px;
	text-align: center;
	color: #777;
	font-size: 11px; 
}

#diamond-size .diamond-size-container .cell .label > span {
	display: block;
	font-size: 1em;
}

#diamond-size .diamond-size-container .cell .label > span.secondary {
	font-size: 0.89em;
}

#diamond-size .diamond-size-container .empty.cell {
	visibility: hidden;
	width: 10%;
}

#diamond-size .diamond-size-container .last.cell:after {
	left: auto;
	right: 0;
}


#diamond-size .diamond-size-container .carat-indicator {
	display: none;
}

#diamond-size .carat-indicator {
	background-color: #EA59AD;
	background-image: linear-gradient(to bottom, #EA59AD, #EC008C);
	color: #fff;
	border: 1px solid #EA59AD;
	display: block;
	padding: 5px 14px;
	position: absolute;
	text-align: center;
	right: 15px;
	top: 50%;
	margin-top: -43px;
	-webkit-box-shadow: -1px 1px 5px 0px #a1a1a1;
	-moz-box-shadow: -1px 1px 5px 0px #a1a1a1;
	box-shadow: -1px 1px 5px 0px #a1a1a1;
}

#diamond-size .carat-indicator .size .bold {
	font-weight: bold;
}
#diamond-size .carat-indicator .label {
	padding: 0;
	line-height: 1.5;
}

#diamond-size .carat-indicator .label span {
	display: block;
	font-weight: normal;
}

#diamond-colour .diamond-colour-illustration {
	display: none;
	margin-top: 50px;
}

#diamond-colour .diamond-colour-illustration .colour-row.upper {
	margin-bottom: 5px;
}

#diamond-colour .diamond-colour-illustration .colour-row {
	display: block;
	overflow: hidden;
	width: 100%;
	position: relative;
}

#diamond-colour .diamond-colour-illustration .colour-row.upper .not-carried {
	width: 22.22%;
	padding-left: 2px;
	right: 0;
}

#diamond-colour .diamond-colour-illustration .colour-row > div {
	float: left;
	font-size: 0.86em;
	text-align: center;
	text-transform: uppercase;
	width: 11.11%;
}

#diamond-colour .diamond-colour-illustration .colour-row.upper .bracket {
	border-bottom: 0;
}

#diamond-colour .diamond-colour-illustration .colour-row > div > .bracket {
	border: 1px solid #777777;
	height: 10px;
}

#diamond-colour .diamond-colour-illustration .colour-row.upper .albarose-diamonds {
	bottom: 0;
	color: #EB3B9B;
	position: relative;
	padding-right: 2px;
	width: 77.78%;
}

#diamond-colour .diamond-colour-illustration .colour-row.middle {
	background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgi…gd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
	background-size: 99%;
	background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%,#ffffff), color-stop(60%, #f0eab8));
	background-image: -webkit-linear-gradient(left,#ffffff 0%, #f0eab8 60%);
	background-image: -moz-linear-gradient(left, #ffffff 0%, #f0eab8 60%);
	background-image: -o-linear-gradient(left, #ffffff 0%, #f0eab8 60%);
	background-image: linear-gradient(left, #ffffff 0%, #f0eab8 60%);
}

#diamond-colour .diamond-colour-illustration .colour-row.middle > div {
	margin-bottom: 7px;
}

#diamond-colour .diamond-colour-illustration .colour-row.middle > div > .diamond-container .colour-label {
	border-bottom: 0;
}

#diamond-colour .diamond-colour-illustration .colour-row.middle > div > .diamond-container img, #diamond-colour .diamond-colour-illustration .colour-row.middle > div > .diamond-container .colour-label {
	border: 1px solid #fff;
}

#diamond-colour .diamond-colour-illustration .colour-row.middle > div > .diamond-container > .colour-label {
	background-color: #fff;
	font-size: 1.17em;
	padding-top: 5px;
	color: #777;
	font-weight: normal;
}

#diamond-colour .diamond-colour-illustration .colour-row.middle > div > .diamond-container img, #diamond-colour .diamond-colour-illustration .colour-row.middle > div > .diamond-container .colour-label {
	border: 1px solid #fff;
}

#diamond-colour .diamond-colour-illustration .colour-row.lower .color {
	padding-left: 2px;
	width: 22.22%;
}

#diamond-colour .diamond-colour-illustration .colour-row.lower .near-colorless {
	padding: 0 2px;
	width: 44.44%;
}

#diamond-colour .diamond-colour-illustration .colour-row.lower .colorless {
	padding-right: 2px;
	width: 33.33%;
}

#diamond-colour .diamond-colour-illustration .colour-row.lower .bracket {
	border-top: 0;
	margin-top: 10px;
}

#diamond-colour .diamond-colour-illustration {
	display: block;
}



#diamond-colour .carousel {
	display: inline-block;
	text-align: center;
	margin: 0px;
	width:100%;
	padding:0;
	min-height: 320px;
	max-height: 500px;      
	position: relative;
        top:-40px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#diamond-colour .carousel .item {
	width: 160px;
	height: 160px;	
	vertical-align: middle;
}

#diamond-colour .controls {
	float: left; width: 100%; margin: 0px; padding: 0px; text-align: center; position: relative; top:-40px;
}

#diamond-colour .controls a {
	display: block;
}

#diamond-colour .controls .previous {
	display:inline-block;
}

#diamond-colour .controls .next {
	display:inline-block;
}

#diamond-colour .diamond_center {
	display: inline-block;
	position: absolute;
	margin: auto;
	width: 100%;
	left: 42%;
}

#diamond-colour .scale{ float: left; width: 100%; margin: 0px; padding: 0px; text-align: center; position: relative}
#diamond-colour #scaleContainer
{	
	background: url("../img/diamond/carousel/scale.png") no-repeat ; background-size: cover;
	width: 585px !important;
	height: 129px !important;
	display: inline-block;
	position: relative;
}
#diamond-colour #scalePointer {
    position: absolute !important;
    top:0% !important;
}

#diamond-colour #scalePointer img
{
    margin-top: -16px !important;
    margin-left: -3px !important;
    z-index: 10000;
}

#IdMain {
	position: relative;
}

#diamond-view #fixed-wrapper {
	margin-top: 40px;
}

@media(max-width:991px){
	#diamond-colour .diamond_center {
		left: 39%;
	}	
}

@media(max-width:900px){
	#diamond-colour .diamond_center {
		left: 37%;
	}	
}

@media (max-width:767px) and (min-width:320px){
	#diamond-colour .carousel {
		padding-left: 0%;
		left: 0%;
	}
	#diamond-view .thumb-wrap {
		margin-bottom: 40px;
	}
}

@media (max-width: 767px){
	#diamond-cut, #diamond-size, #diamond-clarity, #diamond-colour {
		padding: 20px 10px;
	}
	#diamond-view .panel-title {
		padding: 3px 25px 0 25px;
	}
	#diamond-view .img-container {
		margin-top: 70px;
	}
}

@media (max-width:452px) and (min-width:100px){
	#diamond-colour .diamond_center {
          left: 26%;         
         }
}

@media(max-width: 458px){
	.gia-img {
		margin-top: 5px;
	}
}

@media(max-width: 400px){
	#diamond-view .title {
		text-align: center;
		font-size: 18px;
	}
	#diamond-view #fixed-wrapper {
		margin-top: 26px;
	}
	#diamond-view .price-fixed h2 {
		font-size: 18px !important;
	}
	#diamond-view .price-fixed {
		padding: 11px 15px;
	}
	#diamond-view .price-fixed .btn-order {
		font-size: 11px !important;
		padding: 0px 6px;
	}
	#diamond-view .img-container {
		margin-top: 60px;
	}
}

@media(max-width: 325px){
	#diamond-view .title {
		text-align: center;
		font-size: 16px;
	}
}

.table #side-depth:hover, .table #table:hover, .table #measurements:hover {
	background-color: #eaeaea;
} 

.thumb-wrap {
	display: inline-block;
}

.thumb-wrap .thumb-img {
	vertical-align: top;
}

.thumb-wrap .thumb-img, .gia-img {
	display: inline-block;
}

.thumb-wrap .thumb-img img:hover, .gia-img:hover {
	border-color: #1A86C8;
}

.thumb-wrap  img {
	max-height: 65px;
}

.gia-img {
	height: 65px;
	text-align: center;
	border: 1px solid #d3d3d3;
	margin-left: 15px;
	padding: 0 10px;
}

.gia-img img {
    position: relative;
    top: 8px;
}

.gia-img {
	font-weight: bold;
}

.gia-img span {
	display: block;
	margin-top: 12px;
}

@media(max-width: 318px){
	#diamond-view .thumb-img:nth-child(3){
		margin-top: 5px;
	}
	.gia-img {
		margin-left: 0;
	}
}


@media (max-width:767px){
	#diamond-view .thumb-img {
		margin-right: 3px;
	}
}

@media (min-width: 600px){
	#diamond-size .diamond-size-container {
		display: table;
		position: relative;
	}
	#diamond-size .diamond-size-container .carat-indicator {
		display: table;
	}
	#diamond-size .carat-indicator {
		bottom: 0;
		display: none;
		left: -700px;
		margin-top: 0;
		padding: 2px 5px;
		top: auto;
		-webkit-transition: left 2s ease-out;
		-moz-transition: left 2s ease-out;
		-o-transition: left 2s ease-out;
		transition: left 2s ease-out;
	}
	#diamond-size .carat-indicator .size {
		display: table-cell;
		font-size: 1.86em;
		vertical-align: middle;
	}
	#diamond-size .carat-indicator .tooltip {
		display: block;
		height: 0;
		width: 0;
		border: 8px solid transparent;
		border-bottom-color:#EA59AD;
		position: absolute;
		top: -16px;
		left: 50%;
		margin-left: -8px;
		opacity: 1;
		filter: none;
	}

}

.title-bottom-border {
	border-bottom: 1px solid #B3B3B3;
}

/*
.styled-select select {
	background: url(../img/select-arrow-grey.png) no-repeat;
	background-position: 90.5%;
	background-size: contain;
   	width: 110%;
   	height:100%;
   	-webkit-appearance: none;
   	border: none;
   	cursor: pointer;
}

.styled-select select:hover {
	border: none;
}

.styled-select {
   	width: 100%;
   	height: 100%;
   	overflow: hidden;
	border: 1px solid #ddd;
   	position: relative;
   	z-index: 1;
}

.styled-select:hover, .styled-select:focus {
	-webkit-appearance: none;
    -moz-appearance:none;
    box-shadow: 0 0 5px rgba(236, 0, 140, 0.2);
    border: 1px solid rgba(236, 0, 140, 0.4) !important;
}


.styled-select > .select-img {
	width: 34px;
	position: absolute;
	right: 0;
	height: 100%;
	background: url(../img/select-arrow.png) no-repeat right #959595;
	background-size: contain;
	z-index: 1;
	cursor: pointer;
}
*/

.zoome {
	z-index: 1 !important;
}

.modal-open .zoome {
	z-index: 1000 !important;
}



@media(max-width:767px){
	#zm-magnifier {
		display: none !important;
	}
}

@media(min-width:992px){
	#stoneModal .select-stone {
		margin-left: 5px;
	}	
}

@media(max-width:991px){
	.zm-product {
		display: none !important;
	}
}


/*Categories
************/	

@media(min-width:1200px){
	.category-panel .panel {
		min-height: 187px;
	}	
}

@media(max-width:1199px){
	.category-panel .panel {
		min-height: 184px;
	}
}

@media(max-width:991px){
	.category-panel .panel {
		min-height: 199px;
	}
}

@media(min-width:768px){
	.category-panel:nth-child(2n){
		padding-left: 5px;
	}
	.category-panel:nth-child(2n+1){
		padding-right: 5px;
		padding-left: 15px;
	}	
}

/* Error Pages
**************/

.error-page .panel-body {
    min-height: 500px;
    text-align: center;
}

.error-page .panel-body div {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.error-page .panel-body h1 {
    font-size: 100px;
    font-weight: 600;
}

/* Product Filter */

/*marketplace product */


.product-market #reset-search {
    font-size: 14px;
    color: #aaa;
}

.product-market #search-filter {
    padding: 15px 15px 5px 15px;
    border: 2px solid #aaa;
    font-size: 14px;
    margin-bottom: 10px;
}

.product-market #search-filter strong {
    color: #454545;
}

.product-market #search-filter .fa-remove {
    color: #888;
    cursor: pointer;
}


.product-market #search-filter .tag > span {
    display: table-cell;
    width: 50%;
}

.product-market #search-filter .tag > a {
    display: table-cell;
    width: 50%;
}

.tags-container{
    width: 100% !important;
    border: none !important;
    display: none;
}

.tags-container > input{
    display: none !important;
}

.filter-tag{
    background-color: #fff !important;
    color: #666 !important;
    padding-left: 0px !important;
    width: 100%
}

.filter-tag span{
    background-color: #fff !important;
    color: #666 !important;
}

.filter-tag > span{
    background-color: #fff !important;
    color: #666 !important;
    text-align: right;
    width: 20px !important;
    padding-left: 0px !important;
}

.tags-container .bootstrap-tagsinput{
    width: 100% !important;
    border: 0px solid #fff !important;
}

.tags-container .bootstrap-tagsinput input{
    display: none;
}

.tags-container .bootstrap-tagsinput .tag [data-role="remove"]:after {
    content: "\F00D" !important;
    color: #000;
}

/* TAG LABELS (for views etc) */
.taglabel{
    color:#65819d;
    background-color: #e9f3fe;
    border:1px solid #cbdbec;
    padding:4px;
    line-height:21pt;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.taglabel:hover{
    background-color: #f1f6fc;
    cursor:default;
}

#tags-container .tag {
    color :rgb(97, 122, 152);
    cursor: pointer;
    position: relative;
    margin: 3px 0 3px 2px;
    display: inline-block;
}

#tags-container > span {
    background: #008CBA;
    border: 0;
    padding-top: 2px;
    border-radius: 0px !important;
    font-weight: normal;
    padding: 3px 28px 4px 8px;
    font-size: 13px;
    border: 1px solid rgb(212, 219, 227);
    background: rgb(233, 243, 255);
}

#tags-container .tag [data-role="remove"] {
    height: 19px;
    top: 0px;
    padding-top: 1px;
    display: block;
    right: 0px;
    width: 23px;
    position: absolute;
    cursor: pointer;
    border-left: 1px solid rgb(212, 219, 227);
}

#tags-container .tag [data-role="remove"]:after {
    content: "\f00d";
    font-family: fontAwesome;
    padding: 2px 1px;
    line-height: 17px;
    font-size: 15px;
    text-align: center;
}

#tags-container {
    display: none;
}

#product-design-media .main-img img {
    border: none;
    /* position: absolute; */
    display: block;
    width: 100%;
    max-width: 480px;
    max-height: 480px;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}
