@charset "UTF-8";
#overlay{
  position:fixed;
  z-index:99999;
  top:0;
  left:0;
  bottom:0;
  right:0;
  background-color:rgba(255,255,255,0.9);
  transition: 1s 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}
#progstat{
	color: white;

}
.loader {
  border: 8px solid #e6268d;
  border-radius: 50%;
  border-top: 8px solid #f3f3f3;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s	 linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}




/*product-list*/
.content{
  font-size:14px;
}
.content span{
  padding-left: 3px;
}
.content label:hover{
/*  
  background-color: #DCE5F5;*/
  cursor: pointer;
}


/*custom check box start*/ 

/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 25px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; 
}

/* Hide the browser's default checkbox */
/*.container input {*/
/*  position: absolute;*/
/*  opacity: 0;*/
/*  cursor: pointer;*/
/*  height: 0;*/
/*  width: 0;*/
/*}*/

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  margin-top: 2px;
  top: 0;
  left: 0;
  height: 17px;
  width: 17px;
  border: 1px solid #9e9e9e;
  border-radius: 50%;
 
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #e6268d;
  border-color: #e6268d;

}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}


/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 4px;
  top: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  
}
/*  custom check box end*/

.heading-filter{

    display: block;
    width: 100%;
    text-align: left;
    font-size: 18px;
    background: #f8f8f8;
    margin: 0 -8px 10px;
    padding: 10px;
}
.heading{
    cursor: pointer;
  color: #262626;
  font-size: 14px;
  font-weight: bold;
}


/* The container */
.t-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 19px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.t-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.t-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.t-container:hover input ~ .t-checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.t-container input:checked ~ .t-checkmark {
  background-color: #e6268d;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.t-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.t-container input:checked ~ .t-checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.t-container .t-checkmark:after {
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}

.radio-g{
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}


/*auto fill input*/
.autocomplete {
  position: relative;
  display: inline-block;
  width: 100%;
}

#my-Input{
  width: 100%;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 14px;
}




.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}
 .primary {
  background-color: #e6268d !important;
  border: 1px solid  #e6268d !important;
  color: #fff !important;
}
/*h1{
  color: #412D6E !important;
}*/
.opts_icon_link{
    color: black !important;
}
.opts_icon_link:hover{
    color: #6D5591 !important;
}
.brand-namee{
  font-family: 'Amaranth', sans-serif;font-size: 20px;color:    #DAA520 !important;font-weight: bold;
}
.or-span{
  display: block;
  border-bottom:1px solid lightgray;
  width: 30%;
  height: 0px;
}


.title-page-cover-div{
  width: 100%;
  height: 100vh;

  background-color: lightgray;
  background-repeat: no-repeat;
  background-size: cover;
  background-position:center; 
}
.title-page-content-div{
  margin: 0 !important;
  padding: 6%;
   position: absolute;
top: 0;

 left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.2);
  z-index: 100;



}
.logo-t{

}
.title-page-content-div-m {
  display: none !important;
}
.skip-span{
  z-index: 110;
   position: absolute;
   color: #fff;
   font-weight: bold;
   font-size: 18px;
 top: 4%;
 right: 4%;

}
/*.df-row-cc{
  width: 100%;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}*/
.df-column-cc{
  display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.my-corousell{
  width: 100%;
  height: 550px;
  overflow: hidden;
}
.my-corousell-view-pro{
  width: 100%;
  height: 450px;
  overflow: hidden;
}
.main-content-vp{
  padding-top: 16px;
}
.df-row-ss{
    display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
}
.df-column-ss{
    display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;

}
.v-p-details .heading-1{
 font-weight: bold;
}
.carousel-indicators li{
  border:4px solid #4A2D6D !important;
  width: 8px !important;
}

[class~="post"] [class~="post-add-comment"]
{
    margin-top: 0;
    margin-bottom: 15px;
}

@media (max-width: 768px){
  .title-page-content-div{
display: none;
}
.my-corousell{
  width: 100%;
  height: 250px;

}
.title-page-cover-div{
  width: 100%;
  height: 80vh;

}
.title-page-content-div-m {
  height: 20vh;
}
}
.pro-list-price-text span{
  font-weight: bold;
  color: lightgray !important;
  font-size: 15px !important;
}
.pro-list-price-text .span1{
  font-weight: bold;
  color: #fff !important;
  font-size: 15px !important;
}

.border-line-btn{
 border:1px solid #e6268d;
 background-color: #fff;
 color: #e6268d !important;
}
.border-line-btn:hover{
   background-color: #e6268d;
 color:  #fff  !important;
}
.text-primary{
   color: #e6268d !important;
}
.forget-pass{
  text-align: right;color:black !important;
}
.or-line{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
color: gray;
font-size: 15px;
}
.or-line .r-line{
  border-top: 1px solid gray;
  width: 45%;

}
.bg-secondary-2{
  background-color: #F1F3F4 !important;
}
.fa-icon-s{

   display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.fa-icon-s i{
  margin-top: 10px;
  font-size: 25px;
  margin: 8px;
}
.fa-icon-s .fa-google-plus-g{
 color: #db4a39 ;
}
.fa-icon-s .fa-facebook-f{
 color: blue ;
}

.uk-text-center{
  color: #262626 !important;
}
.logo{
width: 350px !important;

}
.brand-namee-logo img{
 height: 55px;
}



ul li.active > a{
 background-color: #F1F3F4 !important ;
  color: #6d5591 !important;
  font-weight: bold;
}

::-webkit-input-placeholder { /* Edge */
  color: black !important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: black !important;
}

::placeholder {
  color: black !important;
}
.uk-tab > .uk-active > a {
  border-color:#6d5591 !important;
}
.uk-active > a {
  
}

.pro-category .for-image{
  width: 100%;
  height: 150px;
  background-color: lightgray;

  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 10px 10px 0 0 ;

}
.heading-2{
  margin-top: 2%;
  margin-bottom: 3%;

}
.pro-category a:hover .for-image
{
    opacity: 0.85;
}
.pro-category a:hover .heading-2
{
    color: #e6268d;
}
.skip-up-in{
  display: block;
  width: 100%;
  margin: 0;
  text-align: right;color: gray;
  color: #9C5084;
  font-weight: bold;

}
.me .message-text{
  background-color: #412D6E !important
}
.me .message-text::before{
  border-left-color: #412D6E !important
}
.active-message::before {
  background-color: #412D6E !important;
}
.message-reply{
  padding:0 !important;
}
.text-purpul{
   color: #412D6E !important
}
/*.myy-h-icon{
  color: black;
  font-size: 20px !important;
}
.myy-h-icon-l-menu{
  color: black;
  font-size: 25px !important;
}*/
/*.message-content-inner .me  .message-bubble-inner{
 background-color:#6d5591 !important;
}*/

/*.online-dot{
  background-color: #DC5E36 !important;
}*/



[class~="collection-focus"] [class~="collection-pop"] [class~="collection-new-overyly"], [class~="collection-focus"] [class~="collection-pop"] [class~="collection-new"] {
    transition: all 0.15s cubic-bezier(0, 0, 0, 1.09) !important;
}

[class~="collection-new-overyly"] {
    visibility: hidden;
}
[class~="collection-new-overyly"] {
    background: hsla(0, 0%, 60%, 0.42);
    height: 100%;
    width: 100%;
}
[class~="collection-new-overyly"] {
    top: 0;
    left: 0;
    position: fixed;
    z-index: 99;
}
.collection-focus .collection-pop .collection-new-overyly {
    visibility: visible;
}

.collection-focus .collection-pop .collection-new {
    box-shadow: 0in 7.5pt 0.625pc -6pt #a0a0a0;
    display: block;
    z-index: 223;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
}
[class~="collection-pop"] [class~="collection-new"] {
    display: none;
}

.collection-block {
    padding-top: 12pt;
    padding-right: 20pt;
    padding-bottom: 20pt;
    padding-left: 20pt;
    border-radius: 0.375pc;
    background-color: #fff;
    width: 500px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}



[class~="dropzone-focus"] [class~="dropzone-pop"] [class~="dropzone-new-overyly"], [class~="dropzone-focus"] [class~="dropzone-pop"] [class~="dropzone-new"] {
    transition: all 0.15s cubic-bezier(0, 0, 0, 1.09) !important;
}

[class~="dropzone-new-overyly"] {
    visibility: hidden;
}
[class~="dropzone-new-overyly"] {
    background: hsla(0, 0%, 60%, 0.42);
    height: 100%;
    width: 100%;
}
[class~="dropzone-new-overyly"] {
    top: 0;
    left: 0;
    position: fixed;
    z-index: 99;
}
.dropzone-focus .dropzone-pop .dropzone-new-overyly {
    visibility: visible;
}

.dropzone-focus .dropzone-pop .dropzone-new {
    box-shadow: 0in 7.5pt 0.625pc -6pt #a0a0a0;
    display: block;
    z-index: 223;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
}
[class~="dropzone-pop"] [class~="dropzone-new"] {
    display: none;
}

.dropzone-block {
    padding-top: 12pt;
    padding-right: 20pt;
    padding-bottom: 20pt;
    padding-left: 20pt;
    border-radius: 0.375pc;
    background-color: #fff;
    width: 500px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/*.dropzone{
  width: 98%;
  margin: 1%;
  border: 2px dashed #3498db !important;
  border-radius: 5px;
  transition: .2s
}
.dropzone.dz-drag-hover{
  border: 2px solid #3498db !important
}
.dz-message span.text i
{
  display: block;
  font-size: 50px;
  color: #536479;
}
.dz-message.needsclick img{
    width: 50px;
    display: block;
    margin: auto;
    opacity: .6;
    margin-bottom: 15px
}
span.plus {
    display: none;
}
.dropzone.dz-started .dz-message {
    display: inline-block !important;
    width: 120px;
    float: right;
    border: 1px solid rgba(238, 238, 238, 0.36);
    border-radius: 30px;
    height: 120px;
    margin: 16px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.dropzone.dz-started .dz-message span.text {
    display: none;
}
.dropzone.dz-started .dz-message span.plus {
    display: block;
    font-size: 70px;
    color: #AAA;
    line-height: 110px;
}*/

.dropzone-upload-box .border-line-btn
{
    width: 100%;
    padding: 30px 0;
    border-radius: 6px;
    text-align: center;
    display: block;
    border: 2px dashed #e6268d;
}


.modal-upload-box
{
    position: relative;
}
.modal-upload-box input[type="file"] {
        opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100% !important;
    display: inline-block;
    z-index: 100;
    cursor: pointer;
}
.imageThumb {
  width: 100%;
    height: 100%;
    object-fit: contain;
}
.pip {
    display: inline-block;
    vertical-align: bottom;
    width: 33%;
    height: 150px;
    overflow: hidden;
    position: relative;
    margin-left: -1px;
    border: 1px solid #bababa;
}
.remove {
    background: #e5e5e5;
    border: 1px solid black;
        color: #414141;
    text-align: center;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 25px;
    height: 25px;
    line-height: 23px;
    border-radius: 50%;
}
.remove:hover {
  background: white;
  color: black;
}

/*.uk-input::-ms-input-placeholder {
  color: #999 !important;
}
.uk-input::placeholder {
  color: #999;
}
.uk-textarea::-ms-input-placeholder {
  color: #999 !important;
}
.uk-textarea::placeholder {
  color: #999;
}*/

.popup
{
  position: fixed;
  top: 0;
  left: 0;
  right:0;
  bottom: 0;
  background: rgb(12 4 38 / 94%);
  z-index: 9999999999;
}
.popup_contain
{
  /*position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999;*/
  /*background: #0a0a0a;
  padding: 5px;*/
  width: 530px;
  margin: 50px auto;
  /*transition: 1s;
  animation: password 1s;
  -webkit-animation: password 1s;
  -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
  box-shadow: 0 5px 15px rgba(0,0,0,.5);
  border: 4px solid #fff;*/
}
.popup_close
{
    color: #e3e3e3;
    font-size: 45px;
    font-weight: bold;
    text-decoration: none;
    position: absolute;
    right: 15px;
    top: 15px;
    text-align: center;
}
#loginpopup .popup_contain
{
    width: 450px;
}
.popup_contain_bg
{
  background: #fff;
    border-radius: 5px;
    padding: 20px 40px 35px;
}
.or-line hr
{
    border-top: 1px solid #d6d6d6;
    margin: 0;
}
.or-line > *
{
  width: 45%;
}
.or-line div:nth-child(2)
{
  width: 80px;
}
/*.btn-google{
    background: #fff;
    border: 1px solid #cecdcd;
    color: #757575;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 14px 10px 14px;
}
.btn-facebook {
    background: #fff;
    border: 1px solid #cecdcd;
    color: #757575;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 14px 10px 14px;
}*/
.social-login-btn .button i {
    margin-right: 15px;
}

.nav-profile 
{
    padding: 10px 0;
}

.badge
{
    padding: 4px 11px;
    font-size: 13px;
    border-radius: 4px;
}
.badge-theme
{
    background-color: #faf0ef;
    color: #e6268d;
}
.group-card-content h6
{
  margin-bottom: 0;
  color: #000;
}
.group-card-content label
{
    color: #e6268d;
    font-weight: 600;
    font-size: 18px;
}
.group-card-content .label
{
  margin-bottom: 5px;
}
.group-card:hover h6
{
  color: #e6268d;
}
.product-height
{
    height: 300px;
}
.group-card-content
{
    padding: 15px;
}
.group-card-content p
{
    margin-bottom: 0;
    margin-top: 5px;
}
[class~="group-card"] {
    background: #fff;
}

.slickpopup
{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11111;
    background-color: rgba(255,255,255,.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
        box-shadow: 0px -1px 6px 1px rgb(0 0 0 / 9%);
}
.slickpopup .main_content_inner
{
    margin: 0 auto;
    padding: 25px 0 15px;
}
.slickpopup-contain
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slickpopup-left img
{
    height: 60px;
}

[class~="post"], .post-new, [class~="group-card"] {
    box-shadow: 0 1px 2px 1px #e9e9e9;
}

[class~="main_content"] {
    background: #fff;
}
.bg-secondary {
    background-color: #f1f3f4 !important;
}

h1, .uk-h1 {
    font-size: 26px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
-moz-appearance: textfield;
}

.uk-input, .uk-select:not([multiple]):not([size]) {
    height: 52px!important;
}
.uk-input, .uk-select, .uk-textarea {
    border: 1px solid #e6268d !important;
}
.button.large {
    text-transform: uppercase;
    cursor: pointer;
}
.tickCheckbox {
    display: block;
    margin: 10px 0;
    position: relative;
}
.tickCheckbox input {
    width: 28px;
    height: 28px;
    -webkit-box-ordinal-group: 2;
    order: 1;
    z-index: 2;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden;
}
.tickCheckbox label {
    padding: 13px 22px;
    display: block;
    text-align: left;
    color: #eb4761;
    border: 1px solid #eb4761;
    cursor: pointer;
    position: relative;
    z-index: 2;
    -webkit-transition: color 200ms ease-in;
    transition: color 200ms ease-in;
    overflow: hidden;
    border-radius: 4px;
}

.tickCheckbox label:before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: '';
    background-color: #eb4761;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
    -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: -1;
}

.tickCheckbox input:checked ~ label {
    color: #fff;
}
.tickCheckbox input:checked ~ label:before {
    -webkit-transform: translate(-50%, -50%) scale3d(56, 56, 1);
    transform: translate(-50%, -50%) scale3d(56, 56, 1);
    opacity: 1;
}

.back-button
{
    cursor: pointer;
}
.back-button:hover
{
    color: #eb4761;
}
.back-button i
{
    margin-right: 10px;
}
.market-preview
{
    margin: -15px 10px 0;
    background: #e6268d;
    color: #fff;
    padding: 12px;
    border-radius: 4px;
}
.price-list {
    display: flex;
    width: 100%;
    align-items: center;
}
.price-list h4 {
    margin-bottom: 0;
    font-weight: 400;
    color: #fff;
    line-height: 27px;
    font-size: 13px;
}
.price-list span {
    margin-left: auto;
    font-weight: 400;
        line-height: 27px;
    font-size: 13px;
}
#breadcrumb ul {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 0;
}
#breadcrumb li {
    display: inline;
    list-style: none;
        font-size: 13px;
}
#breadcrumb li:after {
    content: '/';
    padding-left: 3px;
    padding-right: 3px;
}
#breadcrumb li a
{
    color: #e6268d;
    text-decoration: none;
}
#breadcrumb li:last-child:after{
    display:none
}
#breadcrumb li:last-child a{
    color:#272b65;
    cursor: default;
}
.d-flex
{
    display: flex;
}
.align-items-center
{
    align-items: center
}
.justify-content-between
{
    justify-content: space-between
}
.navbar-expand-md .navbar-collapse{
    justify-content: flex-end;
}


@media (min-width: 1200px){
.uk-grid-large > *, .uk-grid-column-large > * {
    padding-left: 88px!important;
}
}
@media (min-width: 960px){
.v-p-details
{
   padding-left: 100px!important; 
}
}

/*responsive*/
@media(min-width: 1500px) and (max-width:1920px){
    .pricing-box{
        padding: 30px 30px;
        min-height: 500px;
    }
    header .header-innr {
        max-width: 100%;
    }
    [class~="main_content_inner"],
    [class~="collapse-sidebar"] [class~="main_content_inner"] {
        max-width: 100%;
    }
    header .header-innr,
    [class~="main_content_inner"] {
        max-width: 100%;
    }
}