.loader {
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #000;
    width: 20px;
    height: 20px;
    -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); }
  }

  .loading-vis {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
  }

/****admin Dash****/

.pick-date {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.pick-date input {
    margin: 10px;
}

.boxStatic {
    border-radius: 5px;
    background-color: #F0F0F1;
    height: auto;
    text-align: center;
    font-size: 14px;
    margin: 10px;
    padding: 10px;
    white-space: nowrap;
}

.dashContent {
    display: flex;
    flex-wrap: wrap;
}

.boxStatic span {
    display: block;
}
/**********/
.cycle-pic {
    height: calc(1vw + 1vh);
    width: calc(1vw + 1vh);
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    background-color: #afafaf;
    position: absolute;
    opacity: 0.8;
    z-index: 100;
    transition: all .3s ease-out;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
    font-size: calc(0.5vw + 0.5vh);
}

.cycle-pic-active {
    background-color: #e0e0e0;
    color: rgb(0, 136, 0);
    border: 2px solid rgb(0, 136, 0);
    width: auto;
    border-radius: 13px 13px 13px 13px;
    height: calc(1vw + 1vh);
    position: absolute;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
    font-size: calc(0.5vw + 0.5vh);
}

.cycle-pic-active span{
    margin: 0px 5px 0px 5px;
}

.cycle-pic-active i{
    margin: 0px 0px 0px 5px;
}

.cycle-pic span{
    opacity: 0;
    display: none;
    margin: 5px;
}

.cycle-pic i{
    margin: 5px;
    opacity: 0;
    display: none;
}

.cycle-pic:hover {
    width: auto;
    border-radius: 13px 13px 13px 13px;
    opacity: 1;
    border: 2px solid #afafaf;
    background-color: #e0e0e0;
}

.cycle-pic:hover i {
    display: unset;
    opacity: 1;
    margin: 0px 0px 0px 5px;

}

.cycle-pic:hover span {
    display: unset;
    opacity: 1;
    margin: 0px 5px 0px 5px;

}

.pic-selector {
    position: relative;
    height: auto;
}
/* Products list */

.modal-products {
    display: flex;
    flex-wrap: wrap;
    height: 80%;
    width: 100%;
}
.modal-product-card {
    padding: 5px;
    flex: 0 0 33.3333%;
    display: flex; /* so child elements can use flexbox stuff too! */
    justify-content: center;
    height: 50%;

}

.product-image {
    border-bottom: 2px solid #e4e5e6;
    padding: 0 0 2%;
    display: flex;
    position: relative;
    align-items: flex-end;
    justify-content: center;
}

.product-image p {
    color: #000000 !important;
    font-weight: bold;
    margin: 0 !important;
    text-align: center;
    width: 100%;
    font-size: inherit !important;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    margin: 0 !important;
}

.product-info {
    margin-top: auto;
}

.modal-content {
    display: flex;
    height: 95%;
}

.modal-footer {
    display: flex;
    justify-content: center;
    align-content: center;
    background-color: black;
    color: white;
    text-align: center;
    width: 100%;
    font-size: 12px;
    height: 5%;
}

.switchSection {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 1%;
    padding-left: 1%;
}
  
.switchSection a:hover {
    color:#cecece;
  }
  
.previous {
    color: black;
    cursor: pointer;
}
  
.next {
    color: black;
    cursor: pointer;
}


/* radio Select */

.btnUnSelected {
    background-color: #ffffff;
    color: #000000;
    border: 0px solid #ffffff;
    font-weight: bold;
    letter-spacing: .25em;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease-out;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btnSelected {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    font-weight: bold;
    letter-spacing: .25em;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease-out;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btnSelected:focus {
    outline: 0;
}

.btnUnSelected:focus {
    outline: 0;
}

.boxSelect {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    height: 10%;
    font-size: calc(0.5vw + 0.5vh);
}

.no-resultss {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* end radio */

.visualSearch {
    border: 0;
    z-index: 100;
    cursor: pointer;
}

.visualSearch svg {
    height: 60px;
    width: 60px;
}

.infinity {
    z-index: 1;
    position: absolute;
    right: 0;
}

span.addIcon {
    background-size: contain;
    cursor: pointer;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 5px;
}

span.addIcon svg {
    fill: #000000;
    transition: all .3s ease-out;
}

span.search {
    margin: 5px;
}

#ex2 {
    z-index: 100;
    height: 60%;
    width: 700px;
    background-color: #ffffff;
    color: #000000;
}
.botona2 {
    z-index: 100;
    position: fixed; right: 15px; bottom: 15px; display: block;
}
.btnClick2 {
    z-index: 100;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: .25em;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease-out;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
    width: 200px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;

}

.btnClick2:hover {
    background-color: #000000;
    color: #ffffff;
}

.btnClick2:hover svg {
    fill: #ffffff;
}

.btnClick2:focus {
    border: 1px solid #272727 !important; 
}

#ex1 {
    height: 60%;
    width: 700px;
    background-color: #F6E2C7;
    color: #272727;
}
.botona {
    position: fixed; right: 15px; bottom: 15px; display: block;
}
.btnClick {
    font-family: SackersGothicStd-Light,Helvetica,Arial,Sans-serif;
    background-color: #F6E2C7;
    color: #272727;
    border: 1px solid #272727;
    font-size: 12px;
    letter-spacing: .25em;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease-out;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
    width: 200px;
    height: 40px;
}
.btnClick:hover {
    opacity: .4;
}
.btnClick:focus {
    border: 1px solid #272727 !important; 
}

.modal-products-results {
    display: flex;
    flex-wrap: wrap;
    height: 80%;
}

.backBtn {
    background: none;
    font-size: 24px;
    padding: 5px 15px;
    margin:3px;
}
.backBtn:hover {
    background: none;
}

.modal-products-results .modal-product-card {
    padding: 0%;

}

.modal-products-results .modal-product-card .product-image {
    padding: 0 0 2%;
}

/*** modal styles ***/

@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,600&subset=latin-ext');


* {
  box-sizing: border-box;
}


@media screen and (max-width: 768px) {
  html, body {
    font-size: 12px;
  }
  .go-to {
        position: absolute;
        font-size:15px;
        width: 100%;
        height: 100%;
        z-index: 1;
        top: 0;
        left: 0;
        color: black;
        display: flex;
        justify-content: flex-end;
        flex-direction: column;
        align-items: center;
        padding: 10% 10% 5% 10%;
        font-size: calc(0.5vw + 0.5vh);
        white-space: nowrap;
        background: rgb(255,255,255);
        background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6811099439775911) 35%, rgba(255,255,255,0) 100%);
    }
    .go-to strong{
        display: unset;
        font-size: bold;
        cursor: pointer;
        border-bottom: 2px solid #000000;
    }
    
    .go-to a {
        color: #000000;
    }
}

.container {
  background-color: #9191E9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}

.button {
  text-decoration: none;
  font-size: .875rem;
  font-weight: 300;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 1.5rem;
  background-color: #fff;
  color: #9191E9;
  padding: 1rem 2rem;
}

.popup {
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100vw;
  height: 100vh;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, .80);
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  transition: .3s ease-in-out;
}

.modalView {
    visibility: visible !important;
    opacity: 1 !important;
   
}

.popup__close {
    position: absolute;
    right: -1rem;
    top: -1rem;
    width: 3rem;
    height: 3rem;
    font-size: .875rem;
    font-weight: 300;
    border-radius: 100%;
    background-color: #0A0A0A;
    z-index: 4;
    color: #fff;
    line-height: 3rem;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.popup-inner {
    z-index: 2000;
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(65vh + 45vw);
    height: calc(50vh + 20vw);
    background-color: #fff;
    transition: .64s ease-in-out;
    min-width: 297px;
    min-height: 306px;
}

#stylifySearch:not(.fullpopup) .popup-inner{
    width: calc(45vh + 45vw);
    height: calc(20vh + 20vw);
}

.popup__photo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 40%;
    height: 100%;
    border-right: 1px solid #e4e5e6;
    padding: 2%;
    overflow: hidden;
    position: relative;

}

.main-pic-vis {
    height: 90%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1%;
}

.popup_title {
    font-size: 100%;
    height: 10%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup__photo img {
    width: auto;
    height: auto;
    margin: 0 !important;
}

.popup__text {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    padding: 0% 2% 0% 2%;
    width: 60%;
}

.popup__text  h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #0A0A0A;
}

.popup__text  p {
    font-size: .875rem;
    color: #686868;
    line-height: 1.5;
}

/* ********** */


/* texting Search */

@import url(https://fonts.googleapis.com/css?family=Open+Sans);


.searchText {
    width: 70%;
    position: relative;
    display: flex;
    margin-top: 2%;
    height: 100%;
}

.searchTerm {
    width: 100%;
    border: 3px solid #000000 !important;
    border-right: none !important;
    padding: 0px 0px 0px 5px !important;
    border-radius: 5px 0 0 5px !important;
    outline: none !important;
    color: black !important;
    height: 100% !important;
}

.searchTerm:focus{
  color: black;
}

.searchButton {
    height: 100%;
    border: 0px solid #000000;
    background: #000000;
    color: #fff;
    text-align: center;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 12px;
}

.searchButton:hover {
    background: #000000;
    color: #fff;
}

/*Resize the wrap to see the search bar change!*/
.wrap-search {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}
.modal-content-search {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.textingDescription {
    position: relative;
    display: block;
    justify-content: center;
}

.textingDescription img {
    width: 30%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.textingDescription p {
    width: 100%;
    font-size: 1.3em;
    text-align: center;
    display: block;
    margin: 0 0 1em;
}

.upload_btn {
    background:none;
    color: rgb(136, 136, 136);
    font-size: 30px;
    font-weight: 300;
    position: absolute;
    display: flex;
    justify-content: center;
    padding: 0;
    align-items: center;
    right: 1.5rem;
    bottom: 2.5rem;
    cursor: pointer;
}

.upload_btn:hover {
    background: none;
}

.settings-Content {
    display: flex;
    flex-direction: row;
    margin-top: 25px;
}

.settings-Content strong {
    margin-right: 10px;
}

/***responsivity*****/

@media only screen and (max-width: 768px) {
    #stylifySearch .popup-inner {
        width: 100% !important;
        height: 50% !important;
    }
    
    #stylifySearch.fullpopup .popup-inner{
        height: 60% !important;
    }
    
    #stylifySearch .popup__close{
        right: 2px;
        top: 2px;
    }

    .upload_btn {
        font-size: 20px;
    }
    .popup__close {
        right: 2px;
        top: 50px;
    }
    .popup-inner {
        width: 99vw;
        height: 99vh;
        max-height: 100vh;
        max-width: 100vw;
    }
    
    .main-pic-vis{
        padding:0%;
    }
    
    .modal-content {
        height: 96%;
        width: 100%;
        flex-direction: column;
    }

    .modal-footer {
        height: 5%;
    }
    .popup__photo {
        height: 45%;
        width: 100%;
        padding: 2% 2% 0 2%;
    }

    .popup__text {
        width: 100%;
        height: 65%;
    }

    .pic-selector {
        height: 90%;
    }


    .popup__photo img  {
        height: 100%;
    }

    .botona2 {
        bottom: 62px;
        right: 2px;
    }

    .btnClick2 {
        width: 77px;
        height: 34px;
        font-size: 0.6em;
        border-radius: 2px;
        padding: 0;
    }

    span.search {
        margin: 0px;
    }

    .modal-content-search {
        height: 100%;
        min-height: 100%;
    }
    /* .go-to {
        font-size: 10px;
    } */
}


@media only screen and (max-width: 320px) {
    .infinity  {
        right: 25px;
    }
}

@media only screen and (max-width: 375px) and (min-width: 321px){
    .infinity  {
        right: 35px;
    }
}

@media only screen and (max-width: 425px) and (min-width: 376px) {
    .infinity  {
        right: 49px;
    }
}

@media only screen and (min-width: 426px) and (max-width: 553px) {
    .infinity  {
        right: 18vw;
    }
}

@media only screen and (min-width: 554px) and (max-width: 690px) {
    .infinity  {
        right: 20vw;
    }
}

@media only screen and (min-width: 690px) and (max-width: 763px) {
    .infinity  {
        right: 22vw;
    }
}

@media only screen and (min-width: 764px){
    .infinity  {
        right: 6px;
    }
    /*.popup__photo img {
        max-width: calc(10vw + 10vh);
    }*/
}

@media (max-height: 492px) {
    /*.popup__photo img {
        max-width: calc(8vw + 8vh);
    }*/
}


@media (min-width: 768px) {
    .go-to {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 1;
        top: 0;
        left: 0;
        color: black;
        display: flex;
        justify-content: flex-end;
        flex-direction: column;
        align-items: center;
        padding: 10% 10% 5% 10%;
        font-size: calc(0.5vw + 0.5vh);
        white-space: nowrap;
    }
    
    
    
    .go-to strong{
        display: none;
        font-size: bold;
        cursor: pointer;
        border-bottom: 2px solid #afafaf;
    }
    
    .go-to a {
        color: #000000;
    }
    .go-to:hover {
        background: rgb(255,255,255);
        background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6811099439775911) 35%, rgba(255,255,255,0) 100%);
    }
    
    .go-to:hover strong{
        display: unset;
    }
    
    .go-to strong:hover{
        border-bottom: 2px solid #000000;
    }
}

/* 
@media only screen and (max-width: 425px) {
    .btnSelected{
        font-size: 2vw;
    }
    
    .btnUnSelected {
        font-size: 2vw;
    }
}

@media only screen and (max-width: 768px) and (min-width: 426px){
    .btnSelected{
        font-size: 1.6vh;
    }
    
    .btnUnSelected {
        font-size: 1.6vh;
    }
} */