* {
    
    margin: 0;
    padding-bottom: 0;
    box-sizing: border-box;
    
}

html,
body {
    background-color: #ffffff;
    font-family:  'Lato', 'Arial', sans-serif;
    font-weight: 300;
    font-size:  14pt;
    text-rendering: optimizeLegibility;
    margin-top: 0px;
    width: 100%;
    height: 100%;
    
}

label {
  cursor: pointer;
}

table {
    width: 100%;
    border-collapse: collapse;
}

.LayoutFixed {
    table-layout: fixed;
}

td {
    position: relative;
    border: 0px;
    text-align: left;
    padding: 5px;
}


input[type=submit],
button {
    cursor: pointer;
}

textarea {
    resize: none;
}

.help_icon {
  height: 22px;
  cursor: pointer;
  margin-right: 5px;
  vertical-align: -5px;
}

.indigo_btn {
  border-radius: 4px;
  background-color: #543E7A;
  border: 1px solid #322549;
  color: #FFFFFF;
  padding: 3px 15px;
  transition: all 0.5s;
  cursor: pointer;
  font-size: 86%;
}

.indigo_btn:hover {
    background-color: #322549;
}

.green_btn {
  border-radius: 4px;
  background-color: #30bf30;
  border: 1px solid #218221;
  color: #FFFFFF;
  padding: 3px 15px;
  transition: all 0.5s;
  cursor: pointer;
  font-size: 86%;
}

.green_btn:hover {
    background-color: #218221;
}

.blue_btn {
  border-radius: 4px;
  background-color: #007fff;
  border: 1px solid #004c9a;
  color: #FFFFFF;
  padding: 3px 15px;
  transition: all 0.5s;
  cursor: pointer;
  font-size: 86%;
  text-align: center;
}

.blue_btn:hover {
    background-color: #004c9a;
}

.orange_btn {
border-radius: 4px;
background-color: #fa9200;
border: 1px solid #ae6500;
color: #FFFFFF;
padding: 3px 15px;
transition: all 0.5s;
cursor: pointer;
font-size: 86%;
text-align: center;
}

.orange_btn:hover {
  background-color: #ae6500;
}

.light_blue_btn {
  border-radius: 4px;
  background-color: #aec6cf;
  border: 1px solid #7ea4b3;
  color: #FFFFFF;
  padding: 3px 15px;
  transition: all 0.5s;
  cursor: pointer;
  font-size: 86%;
  text-align: center;
  }
  
  .light_blue_btn:hover {
    background-color: #7ea4b3;
  }

.red_btn {
  border-radius: 4px;
  background-color: #ff392e;
  border: 1px solid #fa0d00;
  color: #FFFFFF;
  padding: 3px 15px;
  transition: all 0.5s;
  cursor: pointer;
  font-size: 86%;
  text-align: center;
}

.red_btn:hover {
    background-color: #fa0d00;
}

.large_btn {
  font-size: 1.3em;
  border-radius: 25px;
  padding: 5px 40px;
}

.ClassicLink {
    text-decoration: underline;
    color: blue;
    cursor: pointer;
}

#LoadingWheel {
    border: 2px solid black;
    width: 140px;
    height: auto;
    background-color: white;
    border-radius: 15px;
    position: fixed;
    left: calc(50% - 70px);
    top: 30%;
    z-index: 100000000000000000000000000000000000000000;
    text-align: center;
}

#LoadingWheel img {
    width: 70px;
    margin-top: 10px;
}

#LoadingWheel p {
    padding: 7px 0;
    color: gray;
    text-align: center;
    font-size: 11pt;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px;
}

.DefaultTableClass th {
    background-color: #1A365E;
    color: white;
    text-align: left;
    padding: 3px 5px;
}

#ImportantError {
    color: red;
    padding: 20px;
    border: 3px solid black;
    position: fixed;
    width: 400px;
    left: calc(50% - 200px);
    top: 30%;
    text-align: center;
    font-weight: bold;
    border-radius: 18px;
    z-index: 9;
    background-color: white;
}

#ImportantError button {
    color: white;
    width: 120px;
    margin-left: 120px;
    border: 1px solid #0066cc;
    background-color: #007fff;
    cursor: pointer;
    font-size: 15pt;
    text-align: center;
    display: block;
    margin-top: 20px;
    padding: 3px;
    border-radius: 12px;
    transition: all 0.5s;
}

#ImportantError button:hover {
    background-color: #0066cc;
}

#ContactArea {
    position: absolute;
    top: 150px;
    width: 900px;
    margin-left: calc(50% - 450px);
    border: 1px solid #1A365E;
    background-color: white;
    z-index: 9;
}


.ContactAreaTable td {
    padding: 20px;
}

.ContactAreaTable tr:first-child td {
    padding: 13px 20px;
    background-color: #1A365E;
    color: white;
}

.ContactAreaTable tr:last-child td {
    background-color: #1A365E;
    color: white;
    padding: 4px 20px;
    font-size: 12pt;
    text-align: center;
}

#ContactArea textarea {
    font-size: 14pt;
    font-family: courier new;
    width: 100%;
}

.ContactSendButton {
    border-radius: 18px;
    background-color: #30bf30;
    border: 1px solid #218221;
    color: #FFFFFF;
    padding: 5px 45px;
    transition: all 0.5s;
    cursor: pointer;
    font-size: 18pt;
    margin-top: 15px;
}

.ContactSendButton:hover {
    background-color: #218221;
}

/*******************************************************
CSS USED FOR CUSTOM ALERTS STARTS HERE
*******************************************************/

#AlertBox {
    position: fixed;
    top: 20%;
    left: 35%;
    width:30%;
    min-height: 130px;
    border: 2px solid black;
    background-color: #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    font-size: 0.95em;
    font-family: Arial;  
    padding-bottom: 70px;
}

.CustomAlertButtonsArea {
    position: absolute;
    right: 10px;
    bottom: 5px;
}

.CustomAlertGreenButton {
    border: 1px solid black;
    border-radius: 10px;
    padding: 5px 45px;
    background-color: #92f890;
    font-size: 1.1em;
    cursor: pointer;
}

.CustomAlertRedButton {
    border: 1px solid black;
    border-radius: 10px;
    padding: 5px 45px;
    background-color: #ff817b;
    font-size: 1.1em;
    cursor: pointer;
    margin-right: 10px;
}

/*******************************************************
CSS USED FOR CUSTOM ALERTS ENDS HERE
*******************************************************/

/*******************************************************
CSS USED FOR CUSTOM CHECKBOXES STARTS HERE
*******************************************************/
/* Customize the label (the container) */
.container {
  display: block;
  position: relative;
  /*margin-bottom: 12px;*/
    padding-left: 30px;
  cursor: pointer;
  font-size: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border: 1px solid gray;
  border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 6px;
  top: 0px;
  width: 4px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*******************************************************
CSS USED FOR CUSTOM CHECKBOXES ENDS HERE
*******************************************************/

/*******************************************************
CSS USED FOR CUSTOM RADIO BUTTONS STARTS HERE
*******************************************************/
/* Customize the label (the container) */
.container_radio {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container_radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.checkmark_radio {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
    border: 1px solid gray;
}

/* On mouse-over, add a grey background color */
.container_radio:hover input ~ .checkmark_radio {
  background-color: #ccc;
}


/* When the radio button is checked, add a blue background */
.container_radio input:checked ~ .checkmark_radio {
  background-color: #2196F3;
  border: 1px solid gray;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark_radio:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container_radio input:checked ~ .checkmark_radio:after {
  display: block;
}


/*******************************************************
CSS USED FOR CUSTOM RADIO BUTTONS ENDS HERE
*******************************************************/

/*******************************************************
CSS USED FOR DROPDOWN MENUS STARTS HERE
*******************************************************/

.fm_dropdown {
    width: 100%;
    border: 1px solid black;
    position: absolute;
    z-index: 3;
    background-color: white;
}

.fm_dropdown .dropdown-option {
    padding: 3px;
    font-size: 100%;
    cursor: pointer;
}

.fm_dropdown .dropdown-option:hover {
    background-color: #AEC6CF;
}
/*******************************************************
CSS USED FOR DROPDOWN MENUS ENDS HERE
*******************************************************/


.g-recaptcha:first-child {
  margin-left: 46px;
}

.no_hover_effects {
  pointer-events: none;
}

#popup::-webkit-scrollbar-thumb {
  background-color: #d3d3d3;
  border: 4px solid transparent;
  border-radius: 8px;
  background-clip: padding-box;  
}

#popup::-webkit-scrollbar {
  width: 16px;
}

.tutorial_list_table {

}

.tutorial_list_table td {
  border-bottom: 1px solid #d3d3d3;
  transition: all 0.5s;
  cursor: pointer;
}

.tutorial_list_table td:hover {
  background-color: aliceblue;
}

.tutorial_table {

}

.tutorial_table_container {
  position: absolute;
  height: calc(100% - 100px);
  overflow-y: auto;
  width: 100%;
  left: 0;
  top: 70px;
  padding: 30px;
}

.tutorial_table td {
    padding-bottom: 20px;
    vertical-align: top;
    padding-top: 15px;
}

.tutorial_table .tutorial_txt_outlined {
    border: 1px solid gray;
    padding: 20px;
}

.tutorial_image {
    max-width: 90%;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.tutorial_area .font_size {
    text-align: center;
    position: absolute;
    top: 5px;
    right: 170px;
}

.tutorial_area .font_size span {
    display: block;
    font-size: 12pt;
    margin: 0;
    padding: 0;
    line-height: 1.0;
}

.tutorial_area .font_size button {
    border: none;
    background-color: transparent;
    font-weight: bold;
    margin: 0;
}

/*

 __  __  ___  ____ ___ _     _____    ____ ____ ____  
|  \/  |/ _ \| __ )_ _| |   | ____|  / ___/ ___/ ___| 
| |\/| | | | |  _ \| || |   |  _|   | |   \___ \___ \ 
| |  | | |_| | |_) | || |___| |___  | |___ ___) |__) |
|_|  |_|\___/|____/___|_____|_____|  \____|____/____/ 

*/
.show-mobile {
  display: none;
}

@media screen and (max-width: 1500px) {
  #AlertBox {
    width: 40%;
    left: 30%;
  }

}

@media screen and (max-width: 1100px) {

  #ContactArea {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }

  #AlertBox {
    width: calc(100% - 60px);
    left: 30px;
  }

}