/*
 * Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
 * See LICENSE in the project root for license information.
 */

 html,
 body {
     width: 100%;
     height: 100%;
     margin: 0;
     padding: 0;
     overflow: hidden;
 }

 ul {
     margin: 0;
     padding: 0;
 }

 h1{
   font-size: 20px;

   color:white;
 }
.topbar{
  display: flex;
  height: 40px;
  background-color: #0078d7;
  padding-left: 25px;
  padding-top: 20px;
  margin:auto
}
 header {
   padding-left: 15px;
   background-color: white;

 }
.header-comp{
  padding-right: 15px;
}

textarea{
  width:100%;
  height:15vh;
  border:1px solid black;
  resize:none;
}

textarea:focus{
  outline-style: solid;
  outline-color: #3498DB; /*#1974d2*/
  outline-width: thin;
}
textarea:hover{
  border: 1px solid #3498DB;
}
 .header-font{
   text-align:center;

 }

.footer{
  position: fixed;
  padding: 10px 10px 0px 10px;
  bottom: 0;
  width: 100%;
  /* Height of the footer*/
  height: 40px;
  background: white;
  text-align:center;
}
 .ms-welcome__header {
    padding: 20px;
    padding-bottom: 30px;
    padding-top: 100px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    text-align:center;
 }

 .ms-welcome__main {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex: 1 0 0;
    flex: 1 0 0;
    padding: 10px 20px;
 }

 .ms-welcome__main > h2 {
     width: 100%;
     text-align: center;
 }

 .ms-welcome__features {
     list-style-type: none;
     margin-top: 20px;
 }

 .ms-welcome__features.ms-List .ms-ListItem {
     padding-bottom: 20px;
     display: -webkit-flex;
     display: flex;
 }

 .ms-welcome__features.ms-List .ms-ListItem > .ms-Icon {
     margin-right: 10px;
 }

 .ms-welcome__action.ms-Button--hero {
     margin-top: 30px;
 }



.btnmain {
  background-color: #0078d7;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: 1px solid #0078d7;
  cursor: pointer;
  width:100%;
}

.btnmain:hover, .btnmain:focus {
  border: 1px solid #0060ac;
  background-color: #0060ac;
}



b {
    font-weight: bold;
}
/*
* style select
*/
select {
  width: 100%;
  padding:10px;
  margin-top: 20px;
  border-radius:5px;
}

.hover-form {
  border-radius:10px;
  border: 1px solid #eee;
  transition: .3s border-color;
  width:100%;
}
.hover-form:hover {
  border: 1px solid #aaa;
}

/*
* test for new dropdowbutton
*/
/* Dropdown Button */
.dropbtn {
  background-color: white;/*#3498DB;*/
  color: black;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width:100%;
  text-align: left;
}

.dropbtnmain {
  background-color: white;/*#3498DB;*/
  color: black;
  padding: 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  cursor: pointer;
  width:100%;
}

.dropbtnmain:hover, .dropbtnmain:focus {
  border: 1px solid #ddd;
  background-color: #ddd;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #ddd;/*#2980B9;*/
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  width:100%;

}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  width:100%;
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  /*min-width: 160px;*/
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  height:auto;
  max-height:250px;/* you can change as you need it */
  overflow:auto;/* to get scroll */
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

/*


topbar buttons


*/
.btn-wrapper{
  display: inline-block;
  text-align: center;
}
.btn-wrapper > span {
  position: absolute;
  font-size: 20px !important;
}
.material-icons{
    display: inline-flex;
    vertical-align: top;
}
.btn{
  border:none;
  background-color: inherit;
  padding: 8px 28px;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
  text-align: center;

}
.btn:hover {background: #eee;}


.optionsmenu{
  height: 100%;
  width:45%;
	font-size:15px;
  cursor:pointer;
}

.optionsmenu:hover{
	background-color:#f1f1f1;
  height:100%;
}

/*
option menu buttons
*/

.savebtn {
  background-color: #0078d7;
  color: white;
  padding: 4px 28px;
  font-size: 15px;
  border: 1px solid  #0078d7;
  cursor: pointer;

}

.savebtn:hover, .savebtn:focus {
  border: 1px solid  #0060ac;
  background-color: #0060ac;
}

.cancelbtn {
  background-color: inherit;
  color: black;
  padding: 4px 28px;
  font-size: 15px;
  border: 1px solid #ddd;
  cursor: pointer;

}

.cancelbtn:hover, .cancelbtn:focus {
  border: 1px solid #ddd;
  background-color: #ddd;
}
/*


overlay styling


*/
.overlay {
  height: 100%;
  width: 0%;
  position: fixed;
  z-index: 1;
  top: 0px;
  right: 0;
  background-color: white;
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 0%;
  width: 100%;
  text-align: left;
  margin-top: 0px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #f1f1f1;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}

/*
Number input
*/
input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.number-input {
  border: 1px solid #ddd;
  display: inline-flex;
}

.number-input,
.number-input * {
  box-sizing: border-box;
}
input:focus{
  outline-style: none;
}
.number-input button {
  outline:none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 2rem;
  cursor: pointer;
  margin: 0;
  position: relative;
}

.number-input button:after {
  display: inline-block;
  position: absolute;
  font-family: "Material Icons";
  font-weight: 900;
  content: '\eae6';
  /*content: '\f077';*/
  transform: translate(-50%, -50%) rotate(180deg);
}
.number-input button.plus:after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.number-input button:hover {
  border: 1px solid gray;
}

.number-input input[type=number] {
  font-family: sans-serif;
  max-width: 5rem;
  padding: .5rem;
  border: 1px solid #ddd;
  border-width: 0 1px;
  font-size: 1rem;
  height: 2rem;
  text-align: center;
}

/*
 checkbox
*/
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  -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: 25px;
  width: 25px;
  background-color: #eee;
}

/* 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: #0078d7;
}

/* 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: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.containerCheck{
  padding-left: 25px;
  padding-top: 25px;
}

/* select menu*/
/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Arial;
  border: 1px solid #ddd;
  width:85%;

}
.custom-select:hover{
  border: 1px solid gray;
}
.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: white;
  border:1px solid black;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid black;
  border-color: black transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent black transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: black;
  padding: 8px 16px;
  border:none;
  border-color: none;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: white;
   box-shadow: 0 10px 10px #ddd;
  top: 150%;
  width:75%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

/*
 * Color pallete menu options
*/
.checkbox-round {
    width: 2em;
    height: 2em;
    background-color: white;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid #ddd;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}

.checkbox-round:checked {
    border-color:#0060ac;
    border-width:2px;
}

.checkbox-round:hover {
    border-color:#0060ac;
    border-width:2px;
}

.color-pallete{
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 10px 10px;
  padding: 10px;
}
