/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/
  @keyframes click-wave {
  0% {
    height: 20px;
    width: 20px;
    opacity: 0.35;
    position: relative;
  }
  100% {
    height: 100px;
    width: 100px;
    margin-left: -40px;
    margin-top: -40px;
    opacity: 0;
  }
}

.radio-item input, .checkbox-item input{
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 3px !important;
  left: 2px !important;
  right: 0;
  bottom: 0;
  height: 20px;
  width: 20px;
  transition: all 0.15s ease-out 0s;
  background: #cbd1d8;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  z-index: 1000;
}
.radio-item input:hover, .checkbox-item input:hover {
  background: #9faab7; 
}
.radio-item input:checked, .checkbox-item input:checked {
  background: #1976d2; /* change */
}
.radio-item input:checked::before, .checkbox-item input:checked::before {
  height: 20px;
  width: 20px;
  position: absolute;
  content: '✔';
  display: inline-block;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
}
.radio-item input:checked::after, .checkbox-item input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #1976d2; /* change */
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}

/* only radio */
.radio-item input {
  border-radius: 50%;
}
.radio-item input::after {
  border-radius: 50%;
}

.checkbox-item input[type="checkbox"] {
    z-index: 1;
}

input[type="checkbox"], input[type="radio"] {
    margin: 0px 0px 0px 0px !important;
    height: 20px !important;
    width: 20px !important;
    opacity: 1 !important;
    position: relative !important;
}
.question-title-container, .question-valid-container {
    background: #e6e6e6;
}
/* only radio */

.fruity .navbar a {
    font-size: 13px;
}

.navbar-action-link {
    margin-top: 18px;
}
.question-count-text {
    text-align: center;
    font-size: 12px;
}
.asterisk {
    margin-top: -5px;
    width: 17px;
    font-size: 13px;
}
.question-valid-container {
    display: none;
}
.SumoSelect label {
    margin-bottom: 0px;
}
.SumoSelect > .CaptionCont {
    border: 1px solid #ccc;
    border-radius: 0px;
}
.SumoSelect > .optWrapper {
    border-radius: 0px;
}
.top-container {
    margin-top: 0px !important;
}
.btn-lg {
    border-radius: 0px;
}

.fruity .btn-primary:hover, .fruity .btn-primary:focus, .fruity .btn-primary:active, .fruity .btn-primary.active, .fruity .btn-primary.active:focus, .fruity .open .dropdown-toggle.btn-primary {
    background-color:  #1059a1;  /* change */
    border: 1px solid #134d87;   /* change */
}

.fruity .btn-primary {
    background-color: #1976d2;  /* change */
    border: 1px solid #1059a1;  /* change */
}

.SumoSelect > .optWrapper > .options li.opt:hover {
    background-color: #1976d2;
    color: #fff;
}
.form-control {
    border-radius: 0px;
}
#navigator-container > div {
    padding-right: 15px;
}
/* Gravity */
#dynamicReloadContainer {
     background-color: #ccc;
}
.navbar {
    background-color: #1976d2 !important;
}
.navbar a {
  color: #fff !important;  
}
.fruity .navbar a.animate::after {
    background-color: #fff;
}
/* Gravity */


@media (max-width: 768px) {

    #outerframeContainer {
        margin-right: 5px;
        margin-left: 5px;
    }
    
    .logo-container > img {
       max-height: 62px;
       padding-top: 10px;
       padding-bottom: 10px;
    }    
   .fruity .navbar-toggle {
      border: solid 1px #1059a1;   
      margin-top: 15px;
    }
    .fruity .navbar-toggle .icon-bar {
      background-color: #1059a1;
    }
    .navbar-toggle {
    border-radius: 0px;
    }
    .navbar-action-link {
    padding-left: 1em;
    }
    #welcome-container h1, .group-title {
        margin-top: 0px;
    }
    table input[type="checkbox"], table input[type="radio"] {
      position:  absolute !important;
      margin-top: 6px !important;
    }
    .answer-container {
       padding-left: 10px;
       padding-right: 10px; 
    }
    table.ls-answers tr {
       border: none;
    }
    
}

@media (max-width: 1024px) and (min-width: 600px) {
    table input[type="checkbox"], table input[type="radio"] {
      position:  absolute !important;
      margin-top: 1px !important;
    } 
}    




