﻿/* ==========================================================================
Base colors
   ========================================================================== */
/**
 * Table of Contents:
 *
 *  1. Variables for colors
 *  2.
 *  3. 
 *  4.
 *  5.
 *  6.
 *  7.
 *  8.
 *  9.
 *  10. 
 *  11.
 *  12.
 *  13.
 *  14.
 *  15.
 *  16.
 *  17.
 *  18.
 *  19.
 *  20.
 *  21.
 *  22.
 *  23.
 *  24.
 */
/* 1. Variables for colors
   ========================================================================== */
/* ==========================================================================
Base Mixins
   ========================================================================== */
/**
 * Table of Contents:
 *
 *  1. Variables for colors
 *  2.
 *  3. 
 *  4.
 *  5.
 *  6.
 *  7.
 *  8.
 *  9.
 *  10. 
 *  11.
 *  12.
 *  13.
 *  14.
 *  15.
 *  16.
 *  17.
 *  18.
 *  19.
 *  20.
 *  21.
 *  22.
 *  23.
 *  24.
 */
/* 1. Mixins
   ========================================================================== */
/*when used ALLWAYS use in this order 
       @include phones {
                bottom: 117px;
            }

            @include tablets {
                bottom: 190px;
            }

            @include desktops {
                bottom: 300px;
            }
*/
/* ==========================================================================
Base colors
   ========================================================================== */
/**
 * Table of Contents:
 *
 *  1. Variables for colors
 *  2.
 *  3. 
 *  4.
 *  5.
 *  6.
 *  7.
 *  8.
 *  9.
 *  10. 
 *  11.
 *  12.
 *  13.
 *  14.
 *  15.
 *  16.
 *  17.
 *  18.
 *  19.
 *  20.
 *  21.
 *  22.
 *  23.
 *  24.
 */
/* 1. Variables for colors
   ========================================================================== */
/* ==========================================================================
Base utility
   ========================================================================== */
/**
 * Table of Contents:
 *
 *  1. Variables for font-family 
 *  2. Other variables
 *  3. Animations
 *  4. Shadows
 *  5.
 *  6.
 *  7.
 *  8.
 *  9.
 *  10. 
 *  11.
 *  12.
 *  13.
 *  14.
 *  15.
 *  16.
 *  17.
 *  18.
 *  19.
 *  20.
 *  21.
 *  22.
 *  23.
 *  24.
 */
/* 1. Variables for font-family
   ========================================================================== */
/* 2. Other variables
   ========================================================================== */
/*sizes*/
/*input, select*/
/*Buttons*/
/*$button-min-width: 50px;*/
/*$button-max-width: 130px;*/
/*$button-min-width-small: $input-select-height;*/ /*same as $button-min-height*/
/*$button-background-color: $blue;*/
/* 3. animations
   ========================================================================== */
/*Buttons*/
/* ==========================================================================
Base checkboxes
   ========================================================================== */
/**
 * Table of Contents:
 *
 *  1. colored-checkbox 
 *  2. custom checkboxes
 *  3. Radio btn
 *  4. select
 *  5. Radiobuttons
 *  6.
 *  7.
 *  8.
 *  9.
 *  10. 
 *  11.
 *  12.
 *  13.
 *  14.
 *  15.
 *  16.
 *  17.
 *  18.
 *  19.
 *  20.
 *  21.
 *  22.
 *  23.
 *  24.
 */
/* 1. colored-checkbox
   ========================================================================== */
/*colored checkboxes in panel for color sort*/
.colored-checkbox {
  width: 20px;
  height: 20px;
  position: relative;
}
.colored-checkbox input {
  margin-left: 2px;
}
.colored-checkbox label {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 2px;
  cursor: pointer;
  position: absolute;
  top: 1px;
  z-index: 1;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* 
  use this background transparent to check the value of checkbox 
  background: transparent;
  */
  background: #000000;
  border: 2px solid white;
  outline: thin solid #cccccc;
  /*span {
      position: absolute;
      margin-left: 25px;
      margin-top: -1px;
  }*/
}
.colored-checkbox label:hover {
  outline: 2px solid #cccccc;
}
.colored-checkbox span {
  margin-left: 15px;
  margin-top: 0px;
  position: absolute;
}
.colored-checkbox input[type=checkbox]:checked + label {
  outline: 2px solid #000000;
}

/* 2. custom checkboxes
   ========================================================================== */
/*custom checkboxes*/
.custom-checkbox {
  width: 20px;
  height: 20px;
  background: #ddd;
  position: relative;
  transition: all 0.3s ease;
}
.custom-checkbox input {
  margin-left: 2px;
  transition: all 0.3s ease;
}
.custom-checkbox label {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 2px;
  /*transition: all 0.1s ease;*/
  cursor: pointer;
  position: absolute;
  top: 1px;
  z-index: 1;
  /* 
  use this background transparent to check the value of checkbox 
  background: transparent;
  */
  background: Black;
  border: 2px solid white;
  outline: 1px solid #acacac;
  /*span {
      position: absolute;
      margin-left: 25px;
      margin-top: -1px;
  }*/
}
.custom-checkbox label:hover {
  outline: 2px solid #acacac;
}
.custom-checkbox span, .custom-checkbox p {
  margin-left: 30px;
  margin-top: -20px;
  position: absolute;
  width: 190px;
}
.custom-checkbox input[type=checkbox]:checked + label {
  outline: 2px solid black;
}
.custom-checkbox input[type=checkbox]:checked + .checkbox-yes {
  /*outline: 2px solid black;*/
  background-image: url("../graphics/yes-blue.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.custom-checkboxes {
  padding: 0;
  /*hiding the original checkboxes*/
  /*when the user checks the checkbox the checked icon will animate in*/
}
.custom-checkboxes label {
  position: relative;
  padding-left: 25px;
  font-size: 1em;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0;
}
.custom-checkboxes label:before, .custom-checkboxes label:after {
  font-family: FontAwesome;
  font-size: 18px;
  /*absolutely positioned*/
  position: absolute;
  top: -1px;
  left: 0;
  font-weight: 100;
  color: #cccccc;
}
.custom-checkboxes label:before {
  content: "\f096"; /*unchecked*/
}
.custom-checkboxes label:after {
  /*content: url(/base/graphics/yes-blue.png);*/
  content: "\f14a";
  /*content: '\f046';*/ /*checked*/
  /*checked icon will be hidden by default by using 0 max-width and overflow hidden*/
  max-width: 0;
  overflow: hidden;
  opacity: 0.5;
  /*CSS3 transitions for animated effect*/
  transition: all 0.2s;
}
.custom-checkboxes input[type=checkbox] {
  display: none;
}
.custom-checkboxes input[type=checkbox]:checked + label:after {
  max-width: 25px; /*an arbitratry number more than the icon's width*/
  opacity: 1; /*for fade in effect*/
  color: #435649;
}

/* 3. Radio btn
   ========================================================================== */
.delivery-options label {
  font-size: 1.143em;
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
}
.delivery-options .delivery-green-price {
  color: #339900;
  margin-left: 2px;
  margin-right: 2px;
}
.delivery-options .radiobutton-wrapper {
  float: none !important;
}
.delivery-options .radiobutton-wrapper ul li {
  display: block !important;
}
@media only screen and (max-width: 767px) {
  .delivery-options .radiobutton-wrapper ul li {
    margin-top: 10px;
  }
}

/* 4. select
   ========================================================================== */
/*Select/dropdown*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-overflow: "";
  max-width: 210px;
  background-image: url("/base/graphics/Drop-down-arrow.png");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 8px 7px;
}

/* 5. Radiobuttons
   ========================================================================== */
.radiobutton-wrapper li {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .radiobutton-wrapper li ul {
    padding: 0;
  }
}
.radiobutton-wrapper ul {
  padding: 0;
}
.radiobutton-wrapper ul li input[type=radio] {
  position: absolute;
  visibility: hidden;
}
.radiobutton-wrapper ul li label {
  display: inline-block;
  position: relative;
  padding: 0px 0px 0px 25px;
  margin: 0;
  z-index: 2;
  cursor: pointer;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-right: 15px;
}
.radiobutton-wrapper ul li .check {
  display: block;
  position: absolute;
  border: 1px solid #cccccc;
  border-radius: 100%;
  height: 14px;
  width: 14px;
  top: 3px;
  z-index: 1;
}
.radiobutton-wrapper ul li .check::before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 100%;
  height: 15px;
  width: 15px;
  top: 5px;
  left: 5px;
  margin: auto;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.radiobutton-wrapper ul li:hover .check {
  border: 5px solid #009fe3;
}
.radiobutton-wrapper input[type=radio]:checked ~ .check {
  border: 5px solid #009fe3;
}
.radiobutton-wrapper input[type=radio]:checked ~ .check::before {
  /*background: $blue;*/
}
.radiobutton-wrapper input[type=radio]:checked ~ label {
  color: #333333;
}
.radiobutton-wrapper .signature {
  position: fixed;
  margin: auto;
  bottom: 0;
  top: auto;
  width: 100%;
}
