:root {
  background: #f5f6fa;
}

/* FOR STORE SELECT */
.cc-TakeAway body {
  padding: 1rem;
  color: rgba(121, 126, 134, 1);
}
.cc-TakeAway h1 {
  color: rgba(24, 25, 27, 1);
  margin-bottom: 2rem;
}
.cc-TakeAway section {
  display: flex;
  flex-flow: row wrap;
}
.cc-TakeAway section > div {
  flex: 1;
  padding: 0.5rem;
}
.cc-TakeAway input[type="radio"] {
  display: none;
}
.cc-TakeAway input[type="radio"]:not(:disabled) ~ label {
  cursor: pointer;
}
.cc-TakeAway input[type="radio"]:disabled ~ label {
  color: rgba(188, 194, 191, 1);
  border-color: rgba(188, 194, 191, 1);
  box-shadow: none;
  cursor: not-allowed;
}
.cc-TakeAway label {
  width:150px;
  height: 150px;
  display: inline-block;
  background: white;
  border: 2px solid rgba(32, 223, 128, 1);
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  box-shadow: 0px 3px 10px -2px rgba(161, 170, 166, 0.5);
  position: relative;
}
.cc-TakeAway input[type="radio"]:checked + label {
  background: rgba(32, 223, 128, 1);
  color: rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 20px rgba(0, 255, 128, 0.75);
}
.cc-TakeAway input[type="radio"]:checked + label::after {
  color: rgba(61, 63, 67, 1);
  font-family: FontAwesome;
  border: 2px solid rgba(29, 201, 115, 1);
  content: "\f00c";
  font-size: 14px;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);
}
.cc-TakeAway h4 {
  font-weight: 900;
  font-size: 14px;
}
.cc-TakeAway p {
  font-weight: 900;
}
@media only screen and (max-width: 700px) {
  .cc-TakeAway section {
    display: flex;
    flex-flow: row wrap;
  }
  .cc-TakeAway label {
    width:100px;
    height: 150px;
    position: relative;
  }
  .cc-TakeAway h4 {
    font-size: 12px;
  }
}

/* FOR METHOD SELECT */
.cc-selector input{
    margin:0;padding:0;
    -webkit-appearance:none;
       -moz-appearance:none;
            appearance:none;
}
.method_TakeAway{background-image:url(http://www.torontopizza.com.cy/menu/MethodSelect/TakeAway-Method.png);}
.method_Delivery{background-image:url(http://www.torontopizza.com.cy/menu/MethodSelect/Delivery-Method.png);}

.cc-selector input:active +.drinkcard-cc{opacity: .9;}
.cc-selector input:checked +.drinkcard-cc{
    -webkit-filter: none;
       -moz-filter: none;
            filter: none;
}
.drinkcard-cc{
    cursor:pointer;
    background-size:contain;
    background-repeat:no-repeat;
    display:inline-block;
    width:200px;height:200px;
    border: 2px solid rgba(32, 223, 128, 1);
    border-radius: 20px;
    -webkit-transition: all 100ms ease-in;
       -moz-transition: all 100ms ease-in;
            transition: all 100ms ease-in;
    -webkit-filter: brightness(1.8) grayscale(1) opacity(.7);
       -moz-filter: brightness(1.8) grayscale(1) opacity(.7);
            filter: brightness(1.8) grayscale(1) opacity(.7);
}
@media only screen and (max-width: 700px) {
  .drinkcard-cc{
      width:100px;height:100px;
  }
  .cc-selector img{
    max-width: 70%;
    height: auto;
  }
}
.drinkcard-cc:hover{
    -webkit-filter: brightness(1.2) grayscale(.5) opacity(.9);
       -moz-filter: brightness(1.2) grayscale(.5) opacity(.9);
            filter: brightness(1.2) grayscale(.5) opacity(.9);
}


/* FOR SELECT BUTTON */
.button-select {
  display: inline-block;
  border-radius: 4px;
  background-color: #f4511e;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  padding: 8px;
  width: 80px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button-select span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button-select span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button-select:hover span {
  padding-right: 15px;
}

.button-select:hover span:after {
  opacity: 1;
  right: 0;
}


/* FOR POSTCODE CONTAINER */
.postcode_container html, body {
  height: 80%;
}
.postcode_container a {
  color: inherit;
}
.postcode_container a:hover {
  color: #7f8ff4;
}
.postcode_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.uppercase {
  text-transform: uppercase;
}
.btn {
  display: inline-block;
  background: transparent;
  color: inherit;
  font: inherit;
  border: 0;
  outline: 0;
  padding: 0;
  transition: all 200ms ease-in;
  cursor: pointer;
}
.btn--primary {
  background: #7f8ff4;
  color: #fff;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, .1);
  border-radius: 2px;
  padding: 12px 36px;
}
.btn--primary:hover {
  background: #6c7ff2;
}
.btn--primary:active {
  background: #7f8ff4;
  box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, .2);
}
.btn--inside {
  margin-left: -96px;
}
.form__field {
  width: 200px;
  background: #FFFFFF;
  color: #a3a3a3;
  font: inherit;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, .1);
  border: 0;
  outline: 0;
  padding: 22px 18px;
}



/* Extras */
a:visited{color:#888}
a{color:#444;text-decoration:none;}
p{margin-bottom:.3em;}
