body{
    color: #363636;
}

.wrapper{
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.wrapper-list{
    width: 50%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    margin-top: 60px;
    flex-direction: column;
    justify-content: center;-ms-align-items: center;
    align-items: center;
}

.wrapper-list ul li .course{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    margin-top: 20px;
}

.wrapper-list ul li label{
  /* border-radius: 20px; */
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}

.wrapper-list ul li label,  .wrapper-list ul li select, .enother{
    float: none;
    padding: 0;
    width: auto;
    margin: 0 0 8px;
    color: #363636;
    cursor: pointer; 
    font-weight: 400;
    background-color: #DAF0FE;
    display: flex;
    align-items: center;
    border: none;
   /*  border-radius: 20px; */
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
}

 .mark {
  border-radius: 40px;
}

.wrapper-list ul li select, .enother{
  max-width: 100%;
  height: 40px;
  font-size: 15px;
  margin-bottom: 20px;
  outline:none;
  padding-left: 10px;
}

.textarea {
  width: 100%;
  height: 160px;
  outline: none;
  background-color: #DAF0FE;
  padding: 5px;
  font-family: inherit;
}

.list4a {
    padding:0;
    list-style: none;
    counter-reset: li;
    width: 100%;
}    
.list4a li {
    position: relative;
    padding:12px 20px 30px 28px;
    margin-left: 40px;
    transition-duration: 0.3s;
}
.list4a li:before {
    border: 6px solid transparent;
    line-height: 36px;
    position: absolute;
    top: 0;
    left:-26px;
    width:42px;
    text-align:center;
    font-size: 25px;
    /* font-weight: bold; */
    color: #77AEDB;
    counter-increment: li;
    content: counter(li);
    transition-duration: 0.3s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;    
    }
.list4a li:hover:before {
    color: #337AB7;    
}
.list4a li:after {
    position: absolute;
    top: 0;
    left: -30px;
    width: 50px;
    height: 50px;
    border: 6px solid #3399FF;
    border-radius: 50%;
    content: '';
    opacity: 0.5;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;    
}
.list4a li:hover:after {
    animation: 500ms ease-in-out 0s bounceIn;
    opacity: 1;
}    
 
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }
    20% {
        transform: scale3d(1.3, 1.3, 1.3);
    }
    40% {
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(.97, .97, .97);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}



@keyframes click-wave {
  0% {
    height: 40px;
    width: 40px;
    opacity: 0.35;
    position: relative;
  }
  100% {
    height: 200px;
    width: 200px;
    margin-left: -80px;
    margin-top: -80px;
    opacity: 0;
  }
}

.option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  /* top: 13.33333px; */
  right: 0;
  bottom: 0;
  left: 0;
  height: 40px;
  width: 40px;
  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;
}
.option-input:hover {
  background: #77AEDB;
}
.option-input:checked {
  background: #3399ff;
}
.option-input:checked::before {
  height: 40px;
  width: 40px;
  position: absolute;
  content: '✔';
  display: inline-block;
  font-size: 26.66667px;
  text-align: center;
  line-height: 40px;
}
.option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: ##77AEDB;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}
.option-input.radio {
  border-radius: 50%;
}
.option-input.radio::after {
  border-radius: 50%;
}

.material{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
}

.send{
  background-color: #ffa200;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  transition: 0.5s;
  border: none;
  padding: 1.3vw 30%; 
  margin-top: 30px;
  margin-bottom: 50px;
  margin-left: 50px;
}

.send:hover{
  background-color: #0072bc;
  cursor: pointer;
}



#console {display: none;}
#dialog {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.15);
  transition: visibility 0s linear 0.5s,opacity 0.5s linear;
  opacity: 0;
  visibility: hidden;
}
.dialog_state {
  visibility: hidden;
  opacity: 0;
  display: none;
}
.dialog_state:checked + #dialog,
#dialog.dialog_open {
  transition-delay:0s;
  opacity: 1;
  visibility: visible;
}
#dlg-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  width: 100vw;
  height: 100vh;
  cursor: pointer;
}
.dialog_state:checked + #dialog #dlg-wrap {
  max-height: 24rem;
  opacity: 1;
  padding: 2rem;
}
#dlg-wrap {
  position: relative;
  z-index: 1;
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  padding: 2rem;
  border-radius: 0.25rem;
  /*border: 1px solid #969696;*/
  background: #fff;
  box-shadow: 1px 1px 6px rgba(0,0,0,0.3);
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: all .5s;
}
#dlg-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  cursor: pointer;
}
h2#dlg-header {
  font: 200 2em/1em Raleway, Open Sans, Arial, Sans-Serif;
  text-transform: initial;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
}
#dlg-content {
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.015em;
  line-height: 25px;
}
#dlg-prompt .button {
  margin: 1rem 0.5rem;
  border-radius: 1.5rem;
}

.main_area {
  transition: all 0.5s ease-out;
}
.dialog_state:checked ~ .main_area,
.main_area.dialog_open {
  filter: blur(6px);
}

.button-modal/*, a.button */{
  display: inline-block;
  padding: 0.25em 1em;
  box-sizing: border-box; 
  background: #ffa200;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.075em;
  line-height: 2rem;
  font-family: Raleway, Open Sans, Arial;
  font-weight: 700;
  font-size: 0.85em;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  text-align: center;
  transition: .1s all;
  cursor: pointer;
  text-transform: uppercase;
}
.button-modal:hover/*, a.button:hover */{
  color: #a0a0a0;
  background: #f8f8f8;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
  /*transform: scale(1.01);*/
}
.button-modal.positive/*, a.button.positive */{
  border-color: #6199B7;
  /*color: #6199B7;*/
}
.button-modal.positive:hover/*, a.button.positive:hover */{
  border-color: #468FB6;
  color: #fff;
  background-color: #468FB6;
}

.icon {
  vertical-align: middle;
  line-height: inherit;
  font-size: 1.75em;
}

/*body {
  font: 400 16px/1.65em Open Sans, Arial, Sans-Serif;
  letter-spacing: -0.015em;
  color: #303030;
  text-align: center;
}*/
#main {
  height: 5vh;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  /*background: url("https://farm6.staticflickr.com/5688/21515632899_94e4ddb78a_o.jpg") no-repeat center center;*/
  background-size: cover;
  margin-top: 5vh;
}
#main .center {
    position: absolute;
    top: 25%;
    transform: translateY(-50%);
    width: 20%;
    left: 40%;
}
h1 {
  font: 900 6.4em/1em Raleway, Open Sans, Arial, Sans-Serif;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin: 2rem 0 0.5rem;
}
h2 {
  font: 800 2em/1em Raleway, Open Sans, Arial, Sans-Serif;
  text-transform: uppercase;
  letter-spacing: 0.0em;
  margin: 2rem 0 0.5rem;
}


/* Console */
#console {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  background: #f0f0f0;
  color: #606060;
  font: 400 13px/16px Open Sans;
  letter-spacing: 0em;
  text-align: left;
  padding: 2px;
  overflow-y: scroll;
  0 
  } 
  #console p {
    margin: 0; 
    padding: 0;
  } 
  #console p em {
    font-style: none;
    font-weight: 700;
  }
