
/* checkbox css */

.C_checkbox_container {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  margin-left: 5px;
  margin-right: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 90%;
}

/* Hide the browser's default checkbox */
.C_checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.C_checkbox_checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #ccc;
  border-radius: 2px;
}

/* On mouse-over, add a grey background color */
.C_checkbox_container:hover input ~ .C_checkbox_checkmark {
  background-color: #ddd;
}

.C_checkbox_container  input:disabled ~.C_checkbox_text   {
  opacity: 0.5;
}

.C_checkbox_container  input:disabled ~.C_checkbox_checkmark   {
  opacity: 0.5;
}


/* When the checkbox is checked, add a blue background */
.C_checkbox_container input:checked ~ .C_checkbox_checkmark {
  background-color: #67bf70;
}

/* Create the checkmark/indicator (hidden when not checked) */
.C_checkbox_checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.C_checkbox_container input:checked ~ .C_checkbox_checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.C_checkbox_container .C_checkbox_checkmark:after {
  left: 4.5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* checkbox css end  */









/* radio button css */

.C_radiobtn_container {
  display: block;
  position: relative;
  padding-left: 25px;
  margin:  5px 5px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.C_radiobtn_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.C_radiobtn_checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #ccc;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.C_radiobtn_container:hover input ~ .C_radiobtn_checkmark {
  background-color: #ddd;
}

/* When the radio button is checked, add a blue background */
.C_radiobtn_container input:checked ~ .C_radiobtn_checkmark {
  background-color: #67bf70;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.C_radiobtn_checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.C_radiobtn_container input:checked ~ .C_radiobtn_checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.C_radiobtn_container .C_radiobtn_checkmark:after {
  top: 3.5px;
  left: 3.5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
}

.C_radiobtn_container  input:disabled ~.C_radiobtn_text   {
  opacity: 0.5;
}

.C_radiobtn_container  input:disabled ~.C_radiobtn_checkmark   {
  opacity: 0.5;
}

/* radio button css end */


.C_widget-loader {
  position: relative;
  width: calc(50% - 10px); height: 240px; 
  border-radius: 30px;
  cursor: pointer;
  margin: 5px;
  font-size: 13px;
  float: left;
  position: relative;
  background-color: #fff;
  box-shadow: 0px 0px 2px 1px #fff;
}

.C_widget-loader div {
  margin-bottom: 10px;
  margin-left: 20px;
  border-radius: 3px;
}

.C_widget-loader-elem1 {
   width: 50%; height: 10px; margin-top: 20px;
}

.C_widget-loader-elem2 {
  width: 70%; height: 120px; margin-top: 20px;
}

.C_widget-loader-elem3 {
  width: 70%; height: 10px; margin-top: 20px;
}

.C_widget-loader-elem4 {
  width: 30%; height: 10px;
}

.C_widget-loader-animation {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: loading;
  animation-timing-function: linear;
  background: #a0a0a0;
  background: linear-gradient(to right, #f3f5f6 10%, #e5e8eb 20%, #f3f5f6 30%);
  background-size: 800px 100px;
}

.C_widget-loader-animation:nth-child(2) {
  animation-duration: 1.5s;
}

.C_widget-loader-animation:nth-child(3) {
  animation-duration: 2s;
}

@keyframes loading {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}

@media only screen and (min-width: 480px) {
  .C_widget-loader {
     width: 200px; height: 270px;
     margin: 10px;
     font-size: 15px;
  }
}

.C_select {
  /*A reset of styles, including removing the default dropdown arrow*/
  appearance: none;
  /*Additional resets for further consistency*/
  background-color: transparent;
  border: none;
  text-align: center;
  font-weight: bold;
  text-decoration: underline;
  margin: 0;
  color: #2196F3;;
  font-family: inherit;
  font-size: 5px;
  cursor: inherit;
  line-height: inherit;
}


/* Buttons */
.C_button_img {
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.C_button_img:active {
    opacity: 0.5;
}

.C_button_img_round {
    width: 40px;
    height: 40px;
    background-color: #67bf70;
    border-radius: 50%;
    box-shadow: 0px 0px 1px #d3d3d3;
}

.C_button_img_round img {
    width: 20px;
    height: 20px;
    padding: 10px 10px;
    float: left;
}
 
.C_button_img img {
    width: 30px;
    height: 30px;
    padding: 15px 15px;
    float: left;
    position: relative;
    fill: #434343;
}

.C_button-transparent {
  display: inline-block;
  width: auto;
  height: auto;
  overflow: hidden;
  color: #222;
  cursor: pointer;
  padding: 10px 10px;
  border-radius: 3px;
  letter-spacing: .5px;
  font-size: 90%;
  margin: 5px;
  border: none;
  background-color: #e0e0e0;
}

.C_button-transparent img {
  width: 30px;
  height: 30px; float: left;
}

.C_button-transparent-text {
  float: left;
  font-size: 15px;
  padding: 5px;
}

.C_button-transparent:hover {
  background-color: #c0c0c0;
}


.C_button, .C_button_large {
  display: inline-block;
  width: auto;
  height: auto;
  overflow: hidden;
  color: #fff;
  /*background-color: #67bf70;*/
  background-color: #444;
  cursor: pointer;
  padding: 12px 15px;
  border-radius: 3px;
  letter-spacing: .5px;
  font-size: 90%;
  margin: 5px;
  border: none;
}



.C_button_large {
  width: calc(100% - 20px);
  text-align: center;

}

.C_button:disabled, .C_button_large:disabled {
  opacity: .5;
}
.C_button:hover, .C_button:active, .C_button_large:hover, .C_button_large:active {
  /*filter: brightness(1.15);*/
  opacity: .5;
}

/* End of Button */


/* input[type=text] */

input[type=text], input[type=number], input[type=email], input[type=password] {
  outline: none;
  border: none;
  padding: 15px 10px;
  width: calc(100% - 40px);
  margin: 5px 5px;
  border-bottom: 1px solid #e0e0e0;
}

input[type=text]:disabled, input[type=number]:disabled, input[type=email]:disabled, input[type=password]:disabled { 
  opacity: 0.5;
}

/* End of text input */

.C_button_link {
  color: #0099cc !important;
  text-decoration: underline;
  cursor: pointer;
}


.C_button_link:link {
  color: #0099cc !important;
  font-size: 90%;
  /*margin: 10px 5px;*/
}

/* visited link */
.C_button_link:visited {
  color: #006699;
}

/* mouse over link */
.C_button_link:hover {
  filter: brightness(.8);
}

/* selected link */
.C_button_link:active {
  color: #006699;
}

.C_page {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: #e0e0e0;
  overflow-y: auto;
}

.C_click_me {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -moz-animation: shakeme 3s 5;
  -o-animation: shakeme 3s 5;
  -webkit-animation: shakeme 3s 5;
  animation: shakeme 3s 5;
}

@keyframes shakeme {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  5% {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
  }
  10% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
  }
  15% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
  }
  30% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}

.C_button_type1 {
  width: auto;
  padding: 10px 10px;
  box-shadow: 0px 0px 2px 1px #ddd;
  border-radius: 15px;
  cursor: pointer;
  margin: 5px;
  color: #323232;
  font-size: 13px;
}

.C_config-container {
  width: 60%;
  margin-left: 20%;
  margin-top: 50px;
  height: auto;
  display: inline-block;
}

@media only screen and (max-width: 640px) {
  .C_config-container {
      width: calc(100% - 30px);
      padding-left: 15px;
      margin-left: 0;
      margin-top: 50px;
  }
}

.C_button_float-container {
  min-height: 100px;
  width: 100%; height: auto;
  position: relative; display: block;
  clear: both;
}

.C_button_float {
  width: auto;
  float: left;
  padding: 10px 10px;
  box-shadow: 0px 0px 2px 1px #ddd;
  border-radius: 15px;
  cursor: pointer;
  margin: 5px;
  color: #323232;
  font-size: 13px;
}

.C_button_float-selected {
  box-shadow: 0px 0px 2px 1px #3ec275;
  color: #3ec275;
}

.C_img_type1 {
  width: 25px;
  height: 25px;
  margin-bottom: -7px;
}

.C_widget_text_input {
  position: relative;
  height: 55px;
  width: 100%;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.C_widget_text_input * {
  float: left;
}

.C_widget_text_input input[type=text], .C_widget_text_input input[type=password], .C_widget_text_input input[type=number], .C_widget_text_input input[type=email] {
  display: block;
  position: relative;
  width: calc(100% - 100px) !important;
  border: none;
}

.C_widget_text_input img {
    width: 25px; height: 25px;
    position: relative;
    margin-top: 15px;
}


.C_progress_bar {
  margin-top: 30px; margin-bottom: 30px  ;
  width: 200px;
  height: 3px;
  border-radius: 3px;
  background-color: #d0d0d0;
  position: relative;
}

@media only screen and (max-width: 480px) {
.C_progress_bar {
    width: 150px;
    margin: auto;
    margin-top: 20px;
  }
}

.C_progress_bar span {
  position: absolute;
  margin: 0; padding: 0;
  left: 0; top: 0;
  height: 3px;
  border-radius: 3px;
  background-color: #323232;
}

#id_content_loader p {
  width: 25px;
  height: 25px;
  border: 4px solid #e0e0e0;
  border-radius: 50%;
  margin-left: auto; margin-right: auto; position: relative;
  animation-direction: alternate;
  animation-delay: .25s;
  animation: spin .75s ease-in infinite;
  margin-top: calc(50vh - 25px);
}

@keyframes spin {
  0% { 
    transform: rotate(0deg);
  }
  50% {
    border-top: 4px solid #3ec275;
    border-right: 4px solid #3ec275;
  }
  100% { 
    transform: rotate(360deg); 
  }
}

/*#id_content_loader p::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  border-radius: 50%; 
  width: 25px; height: 25px;
  border-left:  4px solid #67bf70; 
}*/

.C_block-info {
  position: relative; width: 80%; height: 50px; margin: auto; margin-top: 100px;
}

.C_block-info img {
  width: 30px; height: 30px; padding: 10px 10px; float: left;
}

.C_block-info p {
  float: left; max-width: 250px;
}

