


.fill {
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  cursor: pointer;
  border: 4px white solid;
}
.contenaire-color .fill {
  transition: all 0.5s ease-out;
}
.hold {
  border: solid 5px #ccc;
  /* border-radius: 0px!important; */
  transform: scale(1);
}

.empty {
  display: inline-block;
  margin: 10px;
  border: solid 3px #6dab3c;
  background: white;
}

.hovered {
  background: #f4f4f4;
  border-style: dashed;
}


.samples-box {
   width: 68%; 
  min-height: 450px;
  height:100%;
  display: flex;

  /* position: absolute; */
  gap: 30px;
  flex-direction: row;
  justify-content: center;
}

.second-section .empty {
  width: 100%;
  height: 45%;
}

.first-section .empty {
  width: 100%;
  height: 11%;
}

.second-section {
  width: 28vw;
  /* height: 100%; */
}

.first-section {
  width: 25vw;
  height: 450px;
}


.colors-available {
  width: 30%;
  /* min-height: 200px; */
  /* display: flex; */
  position: relative;
  top: 20px;
  right: 0px;
  margin-left: auto;
  text-align: center;
  flex-direction: row;
  justify-content: space-between;
}

.contenaire-color {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin: 2px;
  border: solid 3px #696969;
  background: white;
  border-radius: 50px;
}

.contenaire-color .fill {
  border-radius: 100px;
}

.colors-available .fill {
  /* width: 100px; */
  /* height: 100px; */
  border-radius: 100px;
  /* margin: 5px; */
}

.filled {
  display: inline-block;
  margin: 10px;
  border: solid 3px #37943a;
  background: white;
}

.second-section .filled {
  width: 100%;
  height: 45%;
}
.first-section .filled {
  width: 100%;
  height: 11%;
}

.contenaire-color div#closingbuttin {
  /* color: white; */
  display: none;
}

.samples-box div#closingbuttin {
  color: white;
  position: absolute;
  top: 10px;
  right: 15px;
}

div#sample-box-selector {
  display: flex;
  position: relative;
  margin-bottom: 100px;
}
.compare-btn-wrapper {
  display: none;
}

#sample_note{
  display: none;
}

.ezdeck-sample-category {
  width: 50%;
  text-align: center;
  border-bottom: 1px solid #6dab3c6b;
  line-height: 0.1em;
  margin: auto;
  margin-bottom: 20px;
  margin-top: 10px;
  align-items: center;
  font-size: 16px;
  color: #2a6136;
} 

.ezdeck-sample-category span { 
   background:#fff; 
   padding:0 10px; 
}



@media screen and (min-width: 770px) and (max-width: 991px) {
  .container {
    padding-left: 0px!important;
    padding-right: 0px!important;
}

.samples-box {
    width: 56%!important;
}

.colors-available {
    width: 40%!important;
}

.second-section .filled {
    width: 100%;
    height: 173px;
}

.second-section .empty {
    width: 100%;
    height: 173px;
}

.first-section {
    height: 340px;
}

.first-section .empty {
    height: 46px;
}

.empty {
    margin: 5px;
}
.ezdeck-sample-category {
  margin-bottom: 13px;
}

.contenaire-color {
  width: 40px;
  height: 40px;
  border: solid 2px #696969;
  margin: 1px;
}

.fill {
  border: 2px white solid;
}
.ezdeck-sample-category {
  font-size: 14px;
}

.first-section .filled {
  height: 46px;
  margin: 5px;
}


}


@media screen and (max-width: 769px) {

  .colors-available .fill {
    width: 34px; 
    height: 34px;
    border-radius: 100px;
    /* margin: 5px; */
  }

  .contenaire-color {
    width: 40px;
    height: 40px;
    display: inline-block;
    margin: 2px;
    border: solid 3px #696969;
    background: white;
    border-radius: 50px;
}

  div#sample-box-selector {
    display: flex;
    position: relative;
    margin-bottom: 100px;
    flex-direction: column-reverse;
  }

  .colors-available {
    width: 100%;
    margin-bottom: 30px;
}

.samples-box {
    width: 100%;
}

.first-section {
    width: 50%;
}
.second-section {
  width: 50%;
  /* height: 100%; */
}
.samples-box {
  gap: 10px;
}
.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}


}