:root{
    --affiliBlue:#0065B3;
    --affiliRed:#E61030;
    --hoverColor:#0082e6;
    --defaultFont:Helvetica Neue,Arial,sans-serif;
    --textColor:#46505d;
    --borderColor:#e4e4e4;
    --white:#ffffff;
    --subTextColor:#c0c0c0;
    --greyHover:#e6e6e6;
    --borderRadius:5px;
    --black:#46505d;
    --toolbarColor:#f2f2f2;
}

.adListThumbSelected{
    border:solid 2.5px var(--affiliBlue) !important;
}

#foundation {
    width: 100%;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    margin-right: 40px;
    margin-left: 40px;
}

body{
    margin:0;
    display: flex;
    flex-direction: row;
    background-color: #FFFFFF;
    font-family: var(--defaultFont);
    color:var(--black);
    overflow: hidden;
}

.flexFill{
    flex:1;
}

#logoImageBox {
    width: 42px;
    height: 42px;
    margin-top: 20px;
}

#affiliText {
    height: 42px;
    width: 120px;
    color: var(--textColor);
    margin-left: 20px;
    margin-bottom: 3px;
    margin-top: 20px;
}

#logoBar{
    display:flex;
    margin-top:5px;
}

#businessBox {
    height: 42px;
    margin-right: 5px;
    display: flex;
    flex-direction: row;
    cursor: pointer;
    margin-top: 20px;
}

#businessIconBox{
    width:42px;
    height:42px;
    font-family: var(--defaultFont);
    overflow: hidden;
    border-radius: var(--borderRadius)
}

#businessTextBox {
    line-height: 42px;
    min-width: 120px;
    margin-left: 10px;
    margin-right:10px;
}

#businessDownChevron {
    display: flex;
    flex-direction: column-reverse;
    margin-right: 5px;
    padding-bottom: 3px;
}

#businessIcon{
    width:100%;
    height:100%;
    display: none;
}



.greyHover:hover{
    background-color: var(--greyHover);
    border-radius: var(--borderRadius);
}

#logoutFloater{
    height: 90px;
    top:67px;
    position: absolute;
    display: none;
    flex-direction: row-reverse;
    background-color: white;
    border-radius: 10px;
    filter: drop-shadow(0 0 30px #e4e4e4);
    border: solid 1px #e4e4e4;
    overflow: hidden;
    
}

#cartFloater {
    width: 400px;
    top: 71px;
    position: absolute;
    background-color: white;
    margin-left: -350px;
    border-radius: 10px;

    display: none;
    z-index: 9999999;
    filter: drop-shadow(0 0 30px #e4e4e4);
    border: solid 1px #e4e4e4;
}


#cartItemHead{
    margin-top:20px;
}

.cartHeadHeading {
    color: var(--subTextColor);
    font-size: 14px;
}
#cartItemHeadCommunityText {
    margin-left: 20px;
    width: 210px;
}
#cartItemHeadPriceText{
    width:100px;
}

#closeCartRow {
    position: absolute;
    right: 10px;
    top: 10px;
}

#closeCartBtn{
    cursor: pointer;
}

#checkoutBtn {
    width: 165px;
    height: 40px;
    border-radius: 5px;
    background-color: var(--affiliBlue);
    color: white;
    line-height: 40px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border:none;
}

#checkoutBtn:disabled{
    background-color: #2A2F45;
    color:#808080;
    cursor: auto;
}

#logoutWindow{
    /* background-color: white;
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    filter: drop-shadow(0 0 30px #e4e4e4);
    border: solid 1px #e4e4e4;
    line-height: 42px;
    width:100px;
    text-align: center;
    cursor: pointer; */
    margin-left: 10px;
}
#blurInputLogout{
    opacity:0;
    width:0px;
}

#cartList{
    height:350px;
    overflow-y: scroll;
}

#checkoutBtnRow{
    margin-top: 20px;
    margin-bottom: 20px;
}


#emptyCartIcon{
    width: 72px;
    height: 72px;
    margin-left: auto;
    margin-right: auto;
}

#emptyCartText{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 10px;
    color:var(--subTextColor);
    font-weight: 600;
}

#emptyCartIconSVG{
    fill:var(--subTextColor);
}
#emptyCartBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
#menu{
    width:250px;
    height:100%;
    border-right:solid 1px #e4e4e4;;
}

.menuItem{
    height:35px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top:10px;
    cursor: pointer;
    color:var(--subTextColor);
}

.menuItemSelected{
    color:var(--textColor);
}

.menuItemIconBox{
    width:35px;
    height:35px;
    margin-left: 5px;
}

.menuIcon{
    font-size: 25px;
}
.menuItemText {
    margin-left: 2px;
    line-height: 35px;
    font-weight: 600;
   
}

.menuItem:hover{
    background-color: var(--greyHover);
    border-radius: var(--borderRadius);
    color:var(--textColor);
}

.pageTitle {
    font-size: 24px;
    font-weight: 900;
    line-height: 40px;
}

.pageTitleRow {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 15px;
    height: 40px;
}

.icon{
    width:100%;
    height:100%;
}

.subTitle{
    color:var(--subTextColor);
}

.customInput_title{
    color:var(--subTextColor) !important; 
}

.userInput{
    border: 1px solid var(--black) !important;
}

.business_info40Left{
    margin-left: 40px;
}

.business_info20Top{
    margin-top: 20px;
}

#communities_page{
    height:100%;
}


.grow-wrap {
  /* easy way to plop the elements on top of each other and have them both sized based on the tallest one's height */
  display: grid;
  max-height: 100px;
}
.grow-wrap::after {
  /* Note the weird space! Needed to preventy jumpy behavior */
  content: attr(data-replicated-value) " ";

  /* This is how textarea text behaves */
  white-space: pre-wrap;

  /* Hidden from view, clicks, and screen readers */
  visibility: hidden;
}
.grow-wrap > textarea {
  /* You could leave this, but after a user resizes, then it ruins the auto sizing */
  resize: none;

  /* Firefox shows scrollbar on growth, you can hide like this. */
  overflow: hidden;
  max-height: 100px;
}
.grow-wrap > textarea,
.grow-wrap::after {
  /* Identical styling required!! */
  border: 1px solid var(--black);
  padding: 0.5rem;
  font: inherit;

  /* Place on top of each other */
  grid-area: 1 / 1 / 2 / 2;
}

#cartBtn{
    width:62px;
    height:62px;
    margin-right: 20px;
    position: relative;
}

#cartBtnIcon {
    width: 36px;
    height: 36px;
    margin-top: 3px;
    margin-left: 5px;
}
#cartBtnAmtRow {
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 2px;
    left: 15px;
}
#cartBtnAmt {
    background-color: #E61030;
    color: white;
    margin-left: 20px;
    margin-top: 9px;
    border-radius: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

#cartBtnBtn {
    width: 45px;
    height: 45px;
    cursor: pointer;
}

.colored-toast.swal2-icon-success {
    background-color: #a5dc86 !important;
  }
  
  .colored-toast.swal2-icon-error {
    background-color: #f27474 !important;
  }
  
  .colored-toast.swal2-icon-warning {
    background-color: #f8bb86 !important;
  }
  
  .colored-toast.swal2-icon-info {
    background-color: #3fc3ee !important;
  }
  
  .colored-toast.swal2-icon-question {
    background-color: #87adbd !important;
  }
  
  .colored-toast .swal2-title {
    color: white;
  }
  
  .colored-toast .swal2-close {
    color: white;
  }
  
  .colored-toast .swal2-html-container {
    color: white;
  }
  

  #filterRow {
    height: 41px;
    width: 150px;
    font-size: 18px;
    font-weight: 900;
    line-height: 41px;
    margin-top: 20px;
    cursor: pointer;
    background-color: var(--greyHover);
    margin-right: 20px;
    border-radius: var(--borderRadius);
    margin-bottom: 15px;
}

#filterRow:hover{
    background-color: var(--greyHover);
    
}

#filterIcon {
    width: 38px;
    height: 41px;
    font-size: 32px;
    font-weight: 800;
}

#filtersText{
    font-size: 14px;
}

#distanceSelect {
    height: 40px;
    border-radius: var(--borderRadius);
}
#distanceBox {
    height: 60px;
    width: 150px;
    color: var(--subTextColor);
}

.mask{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.5);
    z-index: 999;
}

.userInputLabel{
    color:var(--subTextColor);
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 25px;
    list-style: none;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    transition: all .2s;
    font-size: 12px;
}

.nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: var(--affiliBlue);
    border-width: 2px;
}

affili-communityBox{
    overflow-x: hidden;
}

.toolbar{
    background-color: #ffffff;
}

.adPauseDeleteBtnImage {
    font-size: 24px;
    margin-left: 8px;
    line-height: 40px;
}

.adCouponToolbar{
    height: 40px;
    width: 100%;
    border-bottom: solid 1px #e4e4e4;
}

.adCouponBuildSection{
        width:240px;
}

.adCouponBuildBtn{
    line-height: 40px;
    text-align: center;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    margin-left: auto;
}

.adPauseDeleteBtn{
    width:40px;
    height:40px;
    margin-right: 8px;
    cursor: pointer;
}

.myChart{
    height: 399px !important;
width: 475px !important;
}
.chartBtn{
    width:75px;
    height:25px;
    line-height: 25px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    font-size: 10px;
}
.chartBtnSelected{
    background-color: var(--subTextColor);
}

.menuRow{
    height:45px;
    line-height: 45px;
    padding-left: 10px;
    padding-right: 10px;
    
}

.menuIcon{
    font-size: 28px;
}

.menuRow:hover{
    background-color: var(--greyHover);
}

.menuText{
    margin-left: 10px;
}