
/* Document
   ========================================================================== */

   * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}



html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
	font-size: 62.5%;
}

/* Sections
   ========================================================================== */



body {
	max-width: 100vw;
	overflow-x: hidden;
}


a:active,
a:link,
a:visited {
	text-decoration: none;
}
::selection {
	color: white;
	background: #dc0000;
  }

main {
	display: block;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */



hr {
	box-sizing: content-box; /* 1 */
	height: 0; /* 1 */
	overflow: visible; /* 2 */
}



pre {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

a {
	background-color: transparent;
}


abbr[title] {
	border-bottom: none; /* 1 */
	text-decoration: underline; /* 2 */
	text-decoration: underline dotted; /* 2 */
}


b,
strong {
	font-weight: bolder;
}



code,
kbd,
samp {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}



small {
	font-size: 80%;
}


sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
   ========================================================================== */
img {
	border-style: none;
}

/* Forms
   ========================================================================== */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

button,
input {
	/* 1 */
	overflow: visible;
}

button,
select {
	/* 1 */
	text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}
legend {
	box-sizing: border-box; /* 1 */
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}


[type='checkbox'],
[type='radio'] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
	height: auto;
}
[type='search'] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}
[type='search']::-webkit-search-decoration {
	-webkit-appearance: none;
}
::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
details {
	display: block;
}

summary {
	display: list-item;
}

/* Misc
   ========================================================================== */
template {
	display: none;
}


[hidden] {
	display: none;
}

ul {
	list-style: none;
}

:root {
	--primary-color: #181b21;
	--secondary-color: #5c5d61;
}
body::-webkit-scrollbar {
	color: #5c5d61;
}

body::-webkit-scrollbar-thumb {
	background-color: #5c5d61b0;
	transition: all 0.4s ease-in-out;
	
}
body::-webkit-scrollbar-thumb:hover {
	background-color: #5c5d61;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}



/* Header Css */
.header {
	height: 7rem;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 5;
	display: flex;
	justify-content: space-between;
	background-color: white;
}

.header__middle {
	display: flex;
	align-items: center;
	margin-bottom: 0px;
}

.header__left {
	display: flex;
    justify-content: center;
    align-items: center;
	overflow: hidden;
	padding: 0 2rem;
}

.header__logo {
	height: 85%;
	width: 14rem;
}

.header__right {
	margin: auto 0;
	margin-right: 1rem;
}

.header__nav__btn {
	display: none;
	font-size: 1.4rem;
	font-weight: bold;
	padding: 1rem;
	color: var(--secondary-color);
	border-radius: 1.5rem;
	text-transform: capitalize;
	transition: background 0.3s linear;
}

.header__nav__btn:hover {
	background-color: #dc000017;
	color:  #dc0000
}

.header__nav__btn.menu__btn {
	display: inline-block;
}

.header__middle .header__nav__btn {
	margin-right: 2rem;
}

/* Navigation Css  */
.navigation {
	position: fixed;
	top: 0;
	right: 0;
	width: 80%;
	max-width: 35rem;
	height: 100%;
	z-index: 999;
	background: #fff;
	transform: translateX(100%);
	transition: transform 0.5s cubic-bezier(0.5, 0, 0, 0.75);
}

.navigation.is--active {
	transform: translateX(0);
}

.navigation ul {
	width: 90%;
	margin: 0 auto;
	padding-left: 0%;
}

.navigation ul li {
	width: 100%;
	padding: 1.2rem 0;
	padding-left: 2rem;
	margin-bottom: 0.5rem;
	cursor: pointer;
	border-radius: 1.2rem;
	transition: background-color 0.33s ease;
}

.nav__link {
	color: #393c41;
	font-weight: 600;
	font-size: 1.5rem;
	text-transform: capitalize;
}

.navigation ul li:hover {
	background: #0000000d;
}
.link__in__middle>a:hover{
	color: #393c41 !important;
}
.nav__link:hover{
	color: #393c41;
}
.close__btn__container {
	text-align: right;
	margin: 2rem 3rem;
}

.navigation__close__btn {
	width: 3rem;
	cursor: pointer;
}

.blur__overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 888;
	background: rgba(0, 0, 0, 0.6);
	/* backdrop-filter: blur(0.5rem); */
	transition: display 0.4s ease;
}

.blur__overlay.is--active {
	display: block;
}




/* Section Css */
#fullpage.no-scroll {
	overflow-y: hidden;
	max-height: 100vh;
}

.section {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#movedown{
	cursor: pointer;
	font-size: 20px;
	-webkit-animation: mover 0.5s infinite  alternate;
    animation: mover 0.5s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.section.one {
	background-image: url(../media/bb2.jpg);
}
.section.gold {
	background-image: url(../media/bb2-gold.jpg);
}

.section.two {
	background-image: url(../media/bb5.jpg);
}

.section.three {
	background-image: url(../media/bb4.jpg);
}
.section.three_gold {
	background-image: url(../media/bb4-gold.jpg);
}

.section.four {
	background-image: url(../media/bb3.jpg);
}

.section.five {
	background-image: url(../media/bb1.jpg);
}
.section.five_gold {
	background-image: url(../media/bb1-gold.jpg);
}

.section__content {
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
	text-transform: capitalize;
	color: var(--primary-color);
}

.section__content__title {
	font-size: 4rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
	color: white;
}

.section__content__subtitle {
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 500;
}

.section__content__subtitle a {
	color: inherit;
	border-bottom: 1px solid black;
	text-decoration: none;
}

.section__content__subtitle a:hover {
	color: #dc0000;
	border-bottom: 2px solid #dc0000;
}

.section__action__container {
	position: absolute;
	bottom: 4%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.section__arrow__down{
	width: 10%;
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	color: white;
}
.section__action__btn {
	font-size: 1.5rem;
	font-weight: 500;
	padding: 1rem !important;
	border-radius: 2rem;
	flex-basis: 80%;
	margin-bottom: 1rem;
	text-transform: capitalize;
}

.action__btn__primary {
	background: #28282b;
	color: white;
	transition: all 0.2s ease-in-out;
}
.action__btn__primary:hover{
	color: white;
	background-color: #dc0000;
}
.action__btn__secondary {
	background: rgb(255, 255, 255);
	color: var(--primary-color);
	transition: all 0.2s ease-in-out;

}
.action__btn__secondary:hover{
	background-color: black;
	color: white;
}

/* Footer Css */
.footer {
	position: absolute;
	z-index: 100;
	bottom: 0;
	width: 100%;
	background-color: white;
}

.footer ul {
	width: 80%;
	margin: 2rem auto;
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

.footer ul li {
	margin: 0 1rem;
	margin-top: 1rem;
	text-transform: capitalize;
	font-weight: 600;
}

.footer ul li a {
	color: var(--secondary-color);
	font-size: 1.2rem;
	padding: 1rem;
	border-radius: 10px;
}
.footer ul li a:hover{
	background-color: #dc000017;
	color: #dc0000;
	transition: all 0.3s ease-in-out;
}
/* Custom Order Section CSS START */
.custom__order__section{
	height: 98vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

  /* Navigate SVG CSS */
  .navigation__product{
	display: flex;
    justify-content: space-between;
    align-items: center;
	
  }
   .navigation__product>a{
	  margin-bottom: 15px;
	  background-color: #464544;
	  padding: 5px 10px 5px 10px;
	  border-radius: 5px;
	  position: relative;
	}
	.front__view::before,.left__view::before,.right__view::before,.back__view::before,.lock__2::before,.front__2::before,.front__3::before{
		content:"\A";
		width:7px;
		height:7px;
		border-radius:50%;
		background: #33ff00;
		display: none;	
		position: absolute;
		top: 10%;
		right: 2px;
	}
  	.front__view > img,.left__view > img,.right__view > img,.back__view > img,.lock__2>img,.front__2 > img,.front__3 > img{
	  width: 25px;
	  height: 25px;
   	}

   .front__view:hover img,.left__view:hover img,.right__view:hover img,.back__view:hover img ,.lock__2:hover >img,.front__2:hover >img,.front__3:hover >img{
	filter: grayscale(0%);
	}
	.active > img{
		filter: grayscale(0%);
	}
	.active::before{
		display: inline-block;
	}
   
  /* .left-column img.active {
	opacity: 1;
  } */

  
  .inner__svg__area>img{
	position: absolute;
	top: 31%;
	left: 15%;
	width: 600px;
	transition: all 0.5s linear;
	opacity: 0.3 ;
  }
  /* #item-border{
	  z-index: 9;
	  opacity: 1.5;
  } */
  .product__info__Area{
	  position: absolute;
	  width: 30%;
	  right: 5%;
	  top: 27%;
  }
  .nestable_stacable{
	top: 34% !important;
  }
  .product__info__Area>h2{
	  margin-bottom: 10px;
  }
  /* Accordian Css Start */
  .accordion {
	font-size: 1rem;
	width: 30vw;
	margin: 0 auto;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  }
  
  .accordion-header,
  .accordion-body {
	background: white;
  }
  
  .accordion-header {
	padding: 2.5em 2.5em;
	background: #000000;
	color: white;
	cursor: pointer;
	font-size: .7em;
	letter-spacing: .1em;
	transition: all .3s;
	text-transform: uppercase;
  }
  .accordion__item .accordion__item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  
  .accordion-header:hover {
	background: #dc0000;
	position: relative;
	z-index: 5;
  }
  
  .accordion-body {
	background: #f3f2f2;
	color: #353535;
	display: none;
  }
  
  .accordion-body__contents {
	padding: 1.5em 1.5em;
  }
  .accordion-body__contents>a>img{
	cursor: move;
    width: 100px !important;  
	height: 85px !important;	
  }
  .accordion-body__contents>img{
	cursor: move;
    width: 100px !important;  
	height: 85px !important;	
  }

  .accordion__item.active:last-child .accordion-header {
	border-radius: none;
  }
  
  .accordion:first-child > .accordion__item > .accordion-header {
	border-bottom: 1px solid transparent;
  }
  
  .accordion__item > .accordion-header:after {
	content: "\2192";
	font-family: IonIcons;
	font-size: 1.2em;
	float: right;
	position: relative;
	top: -20px;
	transition: .3s all;
	transform: rotate(87deg);
  }
  
  .accordion__item.active > .accordion-header:after {
	transform: rotate(270deg);
  }
  
  .accordion__item.active .accordion-header {
	background: #dc0000c7;
  }
  
  .accordion__item .accordion__item .accordion-header {
	background: #f1f1f1;
	color: #353535;
  }
  
  @media screen and (max-width: 1000px) {	
	.accordion {
	  width: 100%;
	}
  }
  /* Accordian CSS End */
/* Custom Order Section CSS END */
/*=============== REUSABLE CSS CLASSES ===============*/




/* ============Bottom Nav Css Start =========*/
.menu {
	padding: 2rem;
	background-color: #000000;
	position: relative;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.075);
  }
  .menu>h3{
	margin-bottom: 0%;
	margin-right: 10px;
  }
.link {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 50px;
	border-radius: 99em;
	position: relative;
	z-index: 1;
	overflow: hidden;
	transform-origin: center left;
	transition: width 0.2s ease-in;
	text-decoration: none;
	color: inherit;
  }
  .link:before {
	position: absolute;
	z-index: -1;
	content: "";
	display: block;
	border-radius: 99em;
	width: 100%;
	height: 100%;
	top: 0;
	transform: translateX(100%);
	transition: transform 0.2s ease-in;
	transform-origin: center right;
	background-color: #eee;
  }
  .link:hover, .link:focus {
	outline: 0;
	width: 130px;
  }
  .link:hover:before,
  .link:hover .link-title, .link:focus:before,
  .link:focus .link-title {
	transform: translateX(0);
	opacity: 1;
  }
  
  .link-icon {
	width: 28px;
	height: 28px;
	display: block;
	flex-shrink: 0;
	left: 18px;
	position: absolute;
  }
  .link-icon svg {
	width: 28px !important;
	height: 28px !important;
  }
  
  .link-title {
	transform: translateX(100%);
	transition: transform 0.2s ease-in;
	transform-origin: center right;
	display: block;
	text-align: center;
	text-indent: 28px;
	width: 100%;
	font-size: 13px;
  }

  /* Mobile responsive Navigation CSS Start */
  .border__mobile__hide,.bottom__mobile__hide,.upper__mobile__hide,.lock__mobile__hide,.lid__mobile__hide{
	  width: 100%;
	  height: 80px;
	  display: flex;
	  align-items: center;
	  background-color: #2D3D99;
	  overflow-y: scroll;
	  position: absolute;
	  bottom: 16px;
	  display: none;
	  z-index: 99;
  }
  .show__menu{
	  display: flex !important;
  }
  .img__select__mob{
	width: 85px !important;
    height: 70px !important;
	margin-right: 10px;
}

  /* Mobile responsive Navigation CSS End */


  /* Tooltips For Images */
  .item-lock::after{
	content: "";
	width: 24px;
	background-color: #08193e;
  }
  .blink_me {
	background-color: #ffffff;
	color: rgb(0, 0, 0);
	padding: 5px;
	animation: blinker 5s linear infinite;
	border-radius: 5px;
	box-shadow: rgba(100, 100, 111, 0.425) 0px 7px 29px 0px;
  }

  @keyframes blinker {
	50% {
	  opacity: 0;
	}
  }
  
  
.dot {
	position: absolute;
  }
  .dot input {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
	cursor: pointer;
	opacity: 0;
  }
  .dot input:checked ~ .pop {
	visibility: visible;
	opacity: 1;
	bottom: calc(100% + 14px);
	transition: 0.2s ease-out;
  }
  .dot .pop {
	position: absolute;
	left: 50%;
	background: #fff;
	transform: translateX(-50%);
	width: 160px;
	text-align: center;
	bottom: calc(100% + 8px);
	visibility: hidden;
	opacity: 0;
	transition: 0.1s ease;
  }
  .dot .pop span {
	display: block;
	padding: 12px;
	z-index: 2;
  }
  .dot .blink_me:after {
	content: "";
    display: block;
    height: 7px;
    width: 7px;
    background: #ffffff;
    position: absolute;
    top: 21px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }
  .dot:hover, .dot:focus {
	opacity: 1;
  }
  
  .Lock {
	position: absolute;
    top: 35%;
    left: 38%;
    z-index: 99;
  	}
	  
  .Border {
	position: absolute;
	top: 49%;
    left: 20%;
	z-index: 99;
  }
  
  .Bottom {
	position: absolute;
    left: 32%;
    top: 46%;
    z-index: 99;
  }
  
  .Upper {
    position: absolute;
    left: 35%;
    top: 51%;
    z-index: 99;
  }
  /* =====Trin Basket Dots=====*/
  .trin__lock{
	position: absolute;
    top: 48%;
    left: 25%;
    z-index: 99;
  }
  .trin__border{
	position: absolute;
    left: 35%;
    top: 53%;
    z-index: 99;
  }
  .trin__bottom {
    position: absolute;
    top: 45%;
    left: 32%;
    z-index: 99;
   }
   .trin__frame {
	position: absolute;
    top: 37%;
    z-index: 99;
    left: 16%;
   }
   .trin__lid{
	position: absolute;
    top: 36%;
    left: 25%;
    z-index: 99;
   }
   /* ======Endscope Basket Dots====== */
   .end__border{
	position: absolute;
    top: 48%;
    left: 31%;
    z-index: 99;
   }
  
   .end__frame{
	position: absolute;
    top: 34%;
    left: 19%;
    z-index: 99;
   }
  
   .end__lid{
	position: absolute;
    top: 42%;
    left: 32%;
    z-index: 99;
   }
  

   /* ======Nestable Basket Dots====== */
   .nes__border{
	position: absolute;
    top: 50%;
    left: 33%;
    z-index: 99;
   }
   .nes__lid{
	position: absolute;
    top: 40%;
    left: 40%;
    z-index: 99;
   }
  .pulse {
	display: block;
	margin: auto;
    width: 16px;
    height: 16px;
	border-radius: 50%;
	background: rgb(247, 3, 3);
	animation: pulse ease-out 3s forwards infinite;
  }
  
  @keyframes pulse {
	0% {
	  box-shadow: 0 0 0 0 rgba(245, 3, 3, 0.5);
	}
	70%, 100% {
	  box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
	}
  }

  .custom__order__fotter{
	background-color: black;
  }
  .custom__order__fotter>ul>li>a{
	color: white;
  }
  .tootltip{
	position: absolute;
    top: 41%;
    left: -156px;
    background-color: #08193e;
    box-shadow: rgb(100 100 111 / 43%) 0px 7px 29px 0px;
    border-radius: 5px;
    color: white;
    padding: 8px;
    animation: pulseTooltip ease-out 3s forwards infinite;
   }
   @keyframes pulseTooltip {
	0% {
	  box-shadow: 0 0 0 0 rgba(5, 27, 68, 0.5);
	}
	70%, 100% {
	  box-shadow: 0 0 0 10px rgba(25, 0, 255, 0);
	}
  }
 .callout {
	position: absolute;
    left: -156px;
    background-color: rgb(0, 0, 0);
    box-shadow: rgb(100 100 111 / 43%) 0px 7px 29px 0px;
    border-radius: 5px;
    color: white;
    padding: 8px;
    animation: pulseTooltip ease-out 3s forwards infinite;
 }
 .din__left__navigator{
	top: 48%;
 }
 .choose_type_radio{
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 8px;
	margin-bottom: 5px;
	font-size: 1.4rem;
	font-weight: 500;
 }
 .form-check-input:checked{
	background-color: rgb(247, 3, 3) !important;
    border-color: rgb(247, 3, 3) !important;
 }
 .form-check-label:hover{
	cursor: pointer;
 }
 .selectt {
	display: none;
 }
 .trinket__left__navigator{
	top: 113px;
 }
 .callout::before {
	content: "";
	width: 0px;
	height: 0px;
	border: 0.8em solid transparent;
	position: absolute;
 }
 .callout.top::before {
	left: 0%;
	bottom: -20px;
	border-top: 11px solid #000000;
 }
 .callout.bottom::before {
	left: 45%;
	top: -20px;
	border-bottom: 10px solid #000000;
 }
 .callout.right::before {
	left: -20px;
	top: 40%;
	border-right: 10px solid #000000;
 }
 
 .callout.left::before {
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
	border-left: 10px solid#000000;
 }
 
 /* ====================Contact Us page Css========================= */
 .page-content {
	width: 100%;
	margin:  0 auto;
	background-color: #181b21;
	/* background-image: -moz-linear-gradient( 136deg, rgb(0,0,70) 0%, rgb(28,181,224) 100%);
    background-image: -webkit-linear-gradient( 136deg, rgb(0,0,70) 0%, rgb(28,181,224) 100%);
    background-image: -ms-linear-gradient( 136deg, rgb(0,0,70) 0%, rgb(28,181,224) 100%); */
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-o-justify-content: center;
	-ms-justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	align-items: center;
	-o-align-items: center;
	-ms-align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
}
.form-v6-content  {
	background: #fff;
	width: 1200px;
	border-radius: 8px;
	-o-border-radius: 8px;
	-ms-border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	margin: 180px 0;
	color: #fff;
	font-weight: 500;
	position: relative;
	display: flex;
	display: -webkit-flex;
}
.form-v6-content .form-left {
	display: flex;
    justify-content: center;
    align-items: center;
	margin-bottom: -6px;
}
.form-v6-content .form-left img {
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}
.form-v6-content .form-detail {
    padding: 30px 40px;
	position: relative;
	width: 100%;
}
.form-v6-content .form-detail h2 {
	color: #333;
	font-size: 35px;
	text-align: center;
	position: relative;
	padding: 6px 0 0;
	margin-bottom: 47px;
}
.form-v6-content .form-row {
    width: 100%;
}
.form-v6-content .form-detail .form-row-last {
	text-align: center;
}
.form-v6-content .form-detail .input-text {
	margin-bottom: 35px;
}
.form-v6-content .form-detail input {
	width: 92%;
    padding: 0px 15px 10px 15px;
    border: 2px solid transparent;
    border-bottom: 2px solid #e5e5e5;
    appearance: unset;
    -moz-appearance: unset;
    -webkit-appearance: unset;
    -o-appearance: unset;
    -ms-appearance: unset;
    outline: none;
    -moz-outline: none;
    -webkit-outline: none;
    -o-outline: none;
    -ms-outline: none;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
.form-v6-content .form-detail .form-row input:focus {
	border-bottom: 2px solid #dc0000;
}
.form-v6-content .form-detail .register {
	background: #dc0000;
	border-radius: 6px;
	-o-border-radius: 6px;
	-ms-border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	width: 160px;
	height: 56px;
	box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
	-o-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
	-ms-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
	border: none;
	
	cursor: pointer;
	color: #fff;
	font-weight: 500;
	font-size: 18px;
	transition: all 0.3s ease-in-out ;
}
.form-v6-content .form-detail .register:hover {
	background: black;
	color: white;
}
.form-v6-content .form-detail .form-row-last input {
	padding: 13px;
}
input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #666;
  font-size: 16px;
}
input::-moz-placeholder { /* Firefox 19+ */
  color: #666;
  font-size: 16px;
}
input:-ms-input-placeholder { /* IE 10+ */
  color: #666;
  font-size: 16px;
}
input:-moz-placeholder { /* Firefox 18- */
  color: #666;
  font-size: 16px;
}

/* Responsive */
@media screen and (max-width: 991px) {
	.form-v6-content {
		margin: 180px 20px;
		flex-direction:  column;
		-o-flex-direction:  column;
		-ms-flex-direction:  column;
		-moz-flex-direction:  column;
		-webkit-flex-direction:  column;
	}
	.form-v6-content .form-left {
		width: 100%;
	}
	.form-v6-content .form-left img {
		width: 100%;
		border-bottom-left-radius: 0px;
	    border-top-right-radius: 8px;
	}
	.form-v6-content .form-detail {
		padding: 30px 20px 30px 20px;
	    width: auto;
	}
	.form-v6-content .form-detail .form-row input {
		width: 96%;
	}
	
}
@media screen and (max-width: 767px) {
	.form-v6-content .form-detail .form-row input {
		width: 94%;
	}
}

@media screen and (max-width: 575px) {
	.form-v6-content .form-detail .form-row input {
	    width: 89%;
	}
}

/* =============Team Section Css=============== */
#cards .card {
    border-radius: 20px;
    min-height: 100%;
}

#cards .heading-border {
    position: absolute;
    width: 100%;
    top: 60%;
}

#cards .card .user-picture img {
    position: absolute;
    top: -20%;
    right: 10%;
    background: #f8f9fa!important;
    padding: 10px;
}

#cards .card .user-content .user-name {
    margin-right: 150px;
}

.mobile_choose_type{
	position: absolute;
	top: 150px;
	background-color: #edecec;
	border-radius: 5px;
	padding-block: 5px;
	display: none;
}

@media screen and (max-width: 1200px) {
	.mobile_choose_type{
		display: block;
	}
}

.btn_finish{
	font-size: 14px !important;
	font-weight: 500 !important;
	background-color: #000000 !important;
	color: white !important;
	padding: 12px 16px !important;
	border-radius: 6px !important;
}
.btn_finish:hover{
	background-color: #dc0000 !important;
}

.btn_mobile_finish{
	font-size: 14px !important;
	text-decoration: underline !important;
}

.ss_image_final{
	max-width: 1000px;
	width: 100%;
}
