/*custom font #455964*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    /*background: #8f9ba2;*/ /* fallback for old browsers */
    /*background: -webkit-linear-gradient(to left, #8f9ba2, #ffffff);*/ /* Chrome 10-25, Safari 5.1-6       0 0 5px 0 rgba(0,0,0,.2)*/
}

body {
    font-family: montserrat, arial, verdana;
    /*background: transparent;*/
    background: radial-gradient(ellipse farthest-corner at center top, #FFFFFF 0%, #008FB2 200%) no-repeat fixed top center;
}

/*form styles*/
#msform {
    text-align: center;
    position: relative;
    margin-top: 30px;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    box-sizing: border-box;
    width: 100%;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#msform input, #msform textarea, #msform select {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 13px;
}

#msform select {
	background-color: #ffffff;
}

#msform select option {
	font-size: 15px;
	margin-top: 6px;
	margin-bottom: 6px;
}

#msform input:focus, #msform textarea:focus, #msform select:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #a0be41;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
#msform .action-button {
    width: 100px;
    background: #eda35b !important;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 15px;
    cursor: pointer;
    padding: 10px;
    margin: 10px;
    text-decoration: none;
}

#msform .action-button-manage {
    width: 300px;
    background: #fd6c04;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button:hover, #msform .action-button-manage:hover,#msform .action-button-manage:focus,#msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #eda35b;
}

.blue-button{
    background: #455964 !important;    
}
.blue-button:hover, .blue-button:focus{
    box-shadow: 0 0 0 2px white, 0 0 0 3px #455964 !important;
}

.green-button{
    background: #73D673 !important;    
}
.green-button:hover, .green-button:focus{
    box-shadow: 0 0 0 2px white, 0 0 0 3px #73D673 !important;
}

#msform .action-button-previous {
    width: 100px;
    background: #C5C5F1;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 33.33%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #eda35b;
    color: white;
}


/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}
.dme_link a {
    background: #FFF;
    font-weight: bold;
    color: #a0be41;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px 25px;
    font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
    background: #C5C5F1;
    text-decoration: none;
}

/*--------CUSTOM---------*/
.logoparent{
	text-align: center;
}

.logosylla{
    width: 33%;
    margin-top: 3.6%;
}

.row{
	width:100%;
}

table p {
    font-family: montserrat;
    color: #2C3E50;
    font-size: 13px;
}

table td{
    text-align: left;
    padding-right: 8px;
}
table thead tr{
    background:	#455964;
} 
table thead tr th{
    color: #ffffff; 
} 	
table tbody tr td{
    font-family: montserrat;
    font-size: 13px;
    vertical-align: middle !important;
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}


/* Set a style for modal */
#id01 button,#id02 button {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}

#id01 button:hover,#id02 button:hover {
  opacity:1;
}

/* Float cancel and delete buttons and add an equal width */
#id01 .cancelbtn,#id01  .deletebtn,#id02 .cancelbtn,#id02  .deletebtn {
  float: left;
  width: 50%;
}

/* Add a color to the cancel button */
#id01 .cancelbtn,#id02 .cancelbtn {
  background-color: #ccc;
  color: black;
}

/* Add a color to the delete button */
#id01 .deletebtn,#id02 .deletebtn {
  background-color: #f44336;
}

/* Add padding and center-align text to the container */
#id01 .container,#id02 .container {
  padding: 16px;
  text-align: center;
  width: 100%;
}

/* The Modal (background) */
#id01.modal,#id02.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background: radial-gradient(ellipse farthest-corner at center top, #FFFFFF 0%, #008FB2 200%) no-repeat fixed top center;
  padding-top: 50px;
}

/* Modal Content/Box */
#id01 .modal-content,#id02 .modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 40%; /* Could be more or less, depending on screen size */
}

/* Style the horizontal ruler */
#id01 hr,#id02 hr {
  border: 1px solid #f1f1f1;
  margin-bottom: 25px;
}
 
/* The Modal Close Button (x) */
#id01 .close,#id02 .close {
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
  color: #000000;
}

#id01 .close:hover,
#id01 .close:focus,#id02 .close:hover,
#id02 .close:focus {
  color: #f44336;
  cursor: pointer;
}

/* Clear floats */
#id01 .clearfix::after,#id02 .clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Change styles for cancel button and delete button on extra small screens */
@media screen and (max-width: 300px) {
  #id01 .cancelbtn,#id01 .deletebtn, #id02 .cancelbtn,#id02 .deletebtn {
     width: 100%;
  }
}

#id02 label {
    float: left;
}

form#langForm input.submit {
    width: 120px;
    background: #eda35b !important;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 15px;
    cursor: pointer;
    padding: 11px;
    margin: 10px;
    text-decoration: none;
}

form#langForm input.submit.action-button:hover {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #eda35b;
}
form#langForm {
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    box-sizing: border-box;
    width: 100%;
    position: relative;
}
