body {
  display: flex;
  min-height: 100vh;
  background-color: #F4F7FC;
  font-family: "Open Sans", sans-serif;
}

.w-100 {
  width: 100%;
}

.vw-100 {
  width: 100vw;
}

.h-100 {
  height: 100%;
}

.vh-100 {
  height: 100vh;
}

a {
  cursor: pointer;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
  background: #DEDEDE;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ACAFB9;
  border-radius: 10px;
}

[v-cloak] {
  display: none !important;
}

.flex {
  display: flex;
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}

.flex-grow {
  flex-grow: 1;
}

.radio-group, .checkbox-group {
  margin: 10px 0;
}
.radio-group .radio-subgroup, .checkbox-group .radio-subgroup {
  display: flex;
  width: auto;
  justify-content: left;
  flex-wrap: wrap;
  align-items: baseline;
}
.radio-group .radio-subgroup .radio-choice, .checkbox-group .radio-subgroup .radio-choice {
  flex-grow: 0.5;
  display: flex;
  flex: 0 0 auto;
  width: auto;
  margin-right: 10px;
}
.radio-group label, .checkbox-group label {
  font-weight: normal;
}
.radio-group label.display-label::first-letter, .checkbox-group label.display-label::first-letter {
  text-transform: capitalize;
}
.radio-group label:hover, .checkbox-group label:hover {
  cursor: pointer;
}
.radio-group input, .checkbox-group input {
  display: none;
}
.radio-group input + .radio-input, .checkbox-group input + .radio-input {
  margin-right: 10px;
  width: 15px;
  height: 15px;
  border: 2px solid #6F7C8D;
  border-radius: 50%;
  position: relative;
  margin: 1px 6px -3px 0px;
  z-index: 0;
}
.radio-group input + .radio-input:hover, .checkbox-group input + .radio-input:hover {
  cursor: pointer;
}
.radio-group input + .radio-input:hover:before, .checkbox-group input + .radio-input:hover:before {
  content: " ";
  width: 9px;
  height: 9px;
  top: 1px;
  left: 1px;
  border-radius: 50%;
  display: block;
  position: absolute;
  background-color: #1376BC;
}
.radio-group input:checked + .radio-input, .checkbox-group input:checked + .radio-input {
  border: 2px solid #003F5E;
}
.radio-group input:checked + .radio-input:before, .checkbox-group input:checked + .radio-input:before {
  width: 9px;
  height: 9px;
  top: 1px;
  left: 1px;
  border-radius: 50%;
  display: block;
  position: absolute;
  content: " ";
  background-color: #003F5E;
}
.radio-group input + .checkbox-input, .checkbox-group input + .checkbox-input {
  margin-right: 10px;
  width: 15px;
  height: 15px;
  border: 2px solid #6F7C8D;
  border-radius: 3px;
  position: relative;
  margin: 1px 6px -3px 0px;
  z-index: 0;
}
.radio-group input + .checkbox-input:hover, .checkbox-group input + .checkbox-input:hover {
  cursor: pointer;
}
.radio-group input + .checkbox-input:hover:before, .checkbox-group input + .checkbox-input:hover:before {
  content: " ";
  width: 9px;
  height: 9px;
  top: 1px;
  left: 1px;
  border-radius: 50%;
  display: block;
  position: absolute;
  background-color: #6F7C8D;
}
.radio-group input:checked + .checkbox-input, .checkbox-group input:checked + .checkbox-input {
  border: 2px solid #003F5E;
}
.radio-group input:checked + .checkbox-input:before, .checkbox-group input:checked + .checkbox-input:before {
  width: 9px;
  height: 9px;
  top: 1px;
  left: 1px;
  border-radius: 2px;
  display: block;
  position: absolute;
  content: " ";
  background-color: #003F5E;
}

.bootstrap-select {
  width: 100% !important;
}

.navbar {
  background-color: #003F5E;
  color: white;
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  height: 100vh;
  position: sticky;
  top: 0;
}
.navbar .btn-neg {
  color: #1376BC !important;
  background-color: white;
  font-weight: bold;
  border: 1px solid transparent;
  display: block;
  width: 90%;
  margin: 15px auto 30px;
}
.navbar .btn-neg:hover {
  background-color: rgba(255, 255, 255, 0.9) !important;
}
.navbar .btn-neg:active {
  background-color: rgba(255, 255, 255, 0.2) !important;
}
.navbar .btn-neg:focus {
  background-color: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid #1376BC;
}
.navbar .navbar-brand {
  padding: 15px;
  width: 100%;
  display: block;
  height: auto;
}
.navbar .navbar-brand img {
  max-height: 55px;
  margin: auto;
}
.navbar .navbar-menu {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.navbar .navbar-menu li {
  list-style-type: none;
  width: 100%;
}
.navbar .navbar-menu li.bottom-navbar {
  margin-top: auto;
}
.navbar .navbar-menu li > a {
  font-size: 13px;
  padding: 10px 40px 10px 20px;
  color: white;
  display: flex;
  align-items: center;
}
.navbar .navbar-menu li > a .material-icons {
  padding-right: 10px;
}
.navbar .navbar-menu li > a:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}
.navbar .navbar-menu li > a.active {
  background: rgba(255, 255, 255, 0.1);
  border-left: 3px white solid;
  padding-left: 17px;
}
.navbar .navbar-menu li .dropdown-menu a {
  color: black;
}
.navbar .bottom-navbar {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navbar .bottom-navbar .profile-navbar {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navbar .bottom-navbar .profile-navbar .profile-picture {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.navbar .bottom-navbar .profile-navbar .profile-picture img {
  max-width: 100%;
  height: auto;
  display: block;
}
.navbar .bottom-navbar .profile-navbar .profile-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navbar .bottom-navbar .profile-navbar .profile-info a {
  padding: 3px;
  font-size: 12px;
  color: white;
}
.navbar .bottom-navbar .profile-navbar .profile-info a:hover {
  color: #DEDEDE;
  text-decoration: none;
}
.navbar .bottom-navbar small {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #6F7C8D;
}

.m-2 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.no-res-txt {
  text-align: center;
  font-size: 12px;
  margin: 15px auto;
  font-weight: bold;
}

.warning-simulation {
  color: #EF872E;
  font-size: 12px;
}
.warning-simulation i {
  padding-right: 7px;
}

fieldset {
  min-width: 0;
  padding: 15px;
  margin: 0;
  border: 1px solid gray;
}
fieldset legend {
  width: auto;
  display: block;
  padding: 10px;
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 700;
  line-height: inherit;
  color: #1376BC;
  border: 0;
  border-bottom: 0px;
}

.winding_table {
  width: 49%;
  float: left;
}
.winding_table input {
  width: 48px;
}
.winding_table tr > td, .winding_table tr > th {
  padding: 4px;
  font-size: 0.8em;
}

.radio-input {
  display: flex;
  margin: 10px auto;
  flex-wrap: wrap;
}
.radio-input input {
  margin: 3px !important;
}
.radio-input label {
  color: #6F7C8D;
  margin-bottom: 0px;
  font-weight: bold;
  margin-right: 10px;
  font-size: 13px;
}

.btn-center {
  margin: 10px auto;
  display: block;
}

#winding_form {
  padding-bottom: 50px;
  padding-top: 10px;
}
#winding_form h5 {
  font-weight: bold;
}
#winding_form .def-result-div {
  display: table;
}
#winding_form .def-result-div .winding_table {
  width: 100%;
}
#winding_form .def-result-div .winding_table input {
  width: 75px;
  padding: 8px;
  float: right;
}
#winding_form .def-result-div .winding_table > tbody > tr > td,
#winding_form .def-result-div .winding_table > tbody > tr > th,
#winding_form .def-result-div .winding_table > tfoot > tr > td,
#winding_form .def-result-div .winding_table > tfoot > tr > th,
#winding_form .def-result-div .winding_table > thead > tr > td,
#winding_form .def-result-div .winding_table > thead > tr > th {
  padding: 7px;
  font-weight: bold;
  vertical-align: middle;
  line-break: anywhere;
}
#winding_form .def-result-div .winding_table > thead > tr > td,
#winding_form .def-result-div .winding_table > thead > tr > th {
  color: #ACAFB9;
  font-size: 13px;
}
#winding_form fieldset {
  padding: 0;
}
#winding_form fieldset:disabled {
  opacity: 0.5;
}
#winding_form .input-group.w-50 {
  width: 44%;
  display: block;
  float: left;
  margin-right: 6%;
  padding-bottom: 5px;
}
#winding_form .input-group.w-50 label {
  color: #41475c;
  font-size: 13px;
  margin-bottom: 0px;
  font-weight: bold;
}
#winding_form .input-group.w-50 input {
  width: 100%;
  margin-bottom: 5px;
  border-color: #afb2bb;
}
#winding_form .input-group.w-50 input[type=number] {
  max-width: 100px;
}
#winding_form .full_width {
  width: 100%;
}
#winding_form .full_width label {
  color: #6F7C8D;
  margin-bottom: 0px;
  font-weight: bold;
  width: 100%;
}
#winding_form select {
  width: 100%;
  min-width: 100% !important;
  padding: 5px 10px;
  background: white;
  border-radius: 0;
  -webkit-appearance: textarea;
  border: solid 1px #1376BC;
}
#winding_form .btn {
  margin-top: 8px;
}

.flex_list_container {
  display: flex;
  align-items: start;
  overflow-x: auto;
  margin-bottom: 55px;
}

.fieldset-label {
  font-weight: bold;
  font-size: 13px;
}

.sim_item {
  background: white;
  margin: 10px;
  flex: 0 0 25vw;
  min-height: 85vh;
  cursor: pointer;
}
.sim_item h4 {
  text-align: left;
  color: #3D4459;
  font-size: 13px;
  margin: 0;
  padding: 10px 15px;
  border-bottom: solid 1px #E7F4FC;
}
.sim_item h4 .fa-spin {
  margin-right: 15px;
  display: inline-block;
}
.sim_item .date {
  font-size: 0.8em;
  text-align: right;
  display: inline-block;
  width: 100%;
}
.sim_item .body {
  margin: auto;
  max-width: 360px;
  padding: 0px 10px;
}
.sim_item .body img {
  max-width: 100%;
}
@media (max-width: 768px) {
  .sim_item {
    flex: 0 0 50vw;
  }
}

.menu_tabs {
  width: 100%;
  float: left;
  border-bottom: solid 1px #1376BC;
  margin-bottom: 20px;
}
.menu_tabs button {
  width: 50%;
  background: none;
  border: none;
  float: left;
  padding: 5px 0;
}
.menu_tabs button.active, .menu_tabs button:hover {
  background-color: #1376BC;
  color: white;
}
.menu_tabs button:focus {
  outline: none;
}

.btn_container {
  width: 100%;
  margin: 5px 0px;
  text-align: center;
}

.tab_pattern_container button {
  background: none;
  float: none;
  padding: 5px 5px;
  border: solid 1px #1376BC;
}
.tab_pattern_container button.active, .tab_pattern_container button:hover {
  background-color: #1376BC;
  color: white;
}
.tab_pattern_container a {
  display: block;
  width: 100%;
  padding: 3px;
  animation: all 0.3s ease-in;
  color: #1376BC;
  text-underline-mode: none;
}
.tab_pattern_container a.active, .tab_pattern_container a:hover {
  background-color: #1376BC;
  color: white;
}
.tab_pattern_container .tab_pattern {
  width: 100%;
  text-align: center;
}
.tab_pattern_container .tab_pattern thead tr {
  border-bottom: solid 1px #1376BC;
}
.tab_pattern_container .tab_pattern thead tr th {
  width: 50px;
  padding: 5px;
}
.tab_pattern_container .tab_pattern tbody tr {
  border-bottom: solid 1px #1376BC;
}
.tab_pattern_container .tab_pattern tbody td {
  padding: 3px;
}

#tab_pattern_container {
  max-height: 270px;
  overflow-y: auto;
}
#tab_pattern_container input {
  font-size: 11px;
  width: 40px;
}

#main_content {
  padding-left: 15px;
  padding-right: 15px;
}

.no-simu-display {
  margin: auto;
  margin-top: 20vh;
  text-align: center;
  max-width: 500px;
  font-size: 16px;
  line-height: 1.6;
}
.no-simu-display p {
  text-align: center;
  font-weight: bold;
}
.no-simu-display a {
  font-weight: bold;
}

.header-right {
  background: white;
  height: 85px;
  justify-content: left;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #DEDEDE;
  border-left: 1px solid #DEDEDE;
}
.header-right h4 {
  font-weight: bold;
}
.header-right .align-right {
  margin-left: auto;
}

.first-form {
  margin-top: 85px;
}

.header-inputs {
  padding: 20px 20px 20px 30px;
  background: white;
  border-bottom: 1px solid #DEDEDE;
  position: sticky;
  top: 0;
  height: 85px;
  z-index: 2;
  display: flex;
  width: 100%;
}
.header-inputs small {
  font-size: 10px;
  color: #6F7C8D;
}
.header-inputs .align-right {
  align-self: flex-end;
  flex-grow: 1;
}
.header-inputs > div > ul {
  padding-left: 0;
}
.header-inputs > div > ul .dropdown {
  list-style: none;
}
.header-inputs > div > ul .dropdown .dropdown-menu {
  top: 25px;
}
.header-inputs > div > ul .dropdown > a {
  float: left;
  font-weight: bold;
  font-size: 16px;
}
.header-inputs > div > ul .dropdown > a:hover, .header-inputs > div > ul .dropdown > a:active, .header-inputs > div > ul .dropdown > a:visited, .header-inputs > div > ul .dropdown > a:focus {
  text-decoration: none;
}
.header-inputs > div > ul .dropdown > a:hover, .header-inputs > div > ul .dropdown > a:active {
  color: #003F5E;
}
.header-inputs .flex {
  display: flex;
}

#create_export_btn,
#create_report_btn {
  margin: auto 5px;
  background-color: #1376BC;
}
#create_export_btn.btn-primary:hover,
#create_report_btn.btn-primary:hover {
  background-color: #0e598e;
}
#create_export_btn.btn-secondary,
#create_report_btn.btn-secondary {
  background-color: white;
  border: 1px solid #1376BC;
}
#create_export_btn.btn-secondary:hover,
#create_report_btn.btn-secondary:hover {
  cursor: pointer;
  background-color: #DEDEDE;
}

#simulation_parameters_inputs {
  padding: 0;
  overflow-y: scroll;
  background-color: white;
  height: 100vh;
  position: sticky;
  top: 0;
}
#simulation_parameters_inputs .fixed-top {
  position: fixed;
}
#simulation_parameters_inputs form {
  padding: 15px;
}
#simulation_parameters_inputs form input[type=number] {
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #DEDEDE;
  background: white;
  margin-bottom: 5px;
  margin-top: 5px;
}
#simulation_parameters_inputs form input[type=number]:focus {
  border: 1px solid #6F7C8D;
  outline: none;
}
#simulation_parameters_inputs form select {
  border-radius: 5px;
  padding: 10px;
  border-color: #DEDEDE;
  background: white;
  width: 100%;
  margin-bottom: 5px;
}
#simulation_parameters_inputs form select:focus {
  border: 1px solid #6F7C8D;
  outline: none;
}
#simulation_parameters_inputs form fieldset {
  border: none;
  width: 100%;
}
#simulation_parameters_inputs form fieldset legend {
  border-bottom: solid 1px #cecece;
  padding-left: 0;
  width: 100%;
  cursor: pointer;
}
#simulation_parameters_inputs form fieldset legend > span {
  float: right;
  color: #cecece;
}
#simulation_parameters_inputs form fieldset strong {
  width: auto;
}
#simulation_parameters_inputs form .slider-selection {
  background-image: linear-gradient(45deg, #1376BC, #1376BC);
}
#simulation_parameters_inputs form .slider-handle {
  background-image: linear-gradient(45deg, #1376BC, #1376BC);
}
#simulation_parameters_inputs .bottom-sim-bar {
  position: sticky;
  bottom: 0;
  width: 100%;
  padding: 15px 15px;
  background-color: white;
  border-top: 1px solid #DEDEDE;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#simulation_parameters_inputs .bottom-sim-bar a {
  font-size: 12px;
  font-weight: bold;
}
#tab_pattern_container input {
  min-width: 60px;
}

#simulation_parameters_form fieldset .field_container {
  transition: opacity 300ms ease-in;
  opacity: 0;
  transform: translateY(-250px);
  display: none;
}
#simulation_parameters_form fieldset.open .field_container, #simulation_parameters_form fieldset legend {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

#launch_simulation_bar {
  z-index: 20000;
  background-color: #337ab7;
  padding: 15px;
  text-align: center;
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 50px;
  color: white;
}
#launch_simulation_bar button, #launch_simulation_bar #simu_title_input {
  position: relative;
  top: -7px;
}
#launch_simulation_bar input {
  background-color: white;
  color: black;
}

.tooltip_ms .tooltip-inner_ms {
  position: absolute;
  top: 25%;
  left: -25%;
  width: 250%;
  z-index: -1;
  opacity: 0;
  transform: translateY(-100px);
  background: white;
  padding: 5px;
  border: solid 1px #6D6E6A;
  transition: all 300ms ease-in;
}
.tooltip_ms .tooltip-inner_ms i {
  display: block;
  margin-bottom: 5px;
}
.tooltip_ms:hover .tooltip-inner_ms {
  z-index: 4;
  opacity: 1;
  transform: translateY(0);
}

#result_tabs {
  border-bottom: none;
}
#result_tabs li > a {
  color: #ACAFB9;
  text-align: center;
}
#result_tabs li > a:after {
  content: " ";
  display: block;
  background: transparent;
  height: 3px;
  width: 100%;
  margin: auto;
}
#result_tabs li.active > a {
  background-color: transparent;
  border: none;
  position: relative;
  color: #1376BC;
}
#result_tabs li.active > a:after {
  background: #1376BC;
}

.output-table th,
.input-table th {
  max-width: 40px;
}

input[type=radio] {
  margin-right: 10px;
}

label {
  font-weight: normal;
}

.motor_choice h1 {
  font-size: 20px;
  font-weight: bold;
}

.motors {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.motors .motor-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  width: 20%;
  margin: 15px;
  padding: 20px;
}
.motors .motor-card img {
  display: block;
  margin: 0 auto;
  max-width: 60px;
}
.motors .motor-card h2 {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.simu_title {
  text-align: left;
  position: relative;
}

.modal-body td {
  line-height: 25px;
}

.btn_motorcad {
  color: #1376BC;
  border: solid 1px #1376BC;
  background-color: white;
  padding: 5px 20px;
  transition: all 300ms;
}
.btn_motorcad i {
  margin-right: 5px;
}
.btn_motorcad:hover {
  color: #fff;
  background-color: #1376BC;
}

button.close {
  color: #1376BC;
  padding: 5px 8px;
  border: solid 1px #1376BC;
  opacity: 1;
  font-weight: 100;
  transition: all 300ms;
  font-size: 20px;
}
button.close:hover {
  color: white;
  background: #1376BC;
  opacity: 1;
}

.input_select {
  position: relative;
}
.input_select input {
  width: 25px;
  height: 25px;
}
.input_select input:checked + div {
  border-left: solid 2px #1376BC;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
}

.modal-header .close {
  margin-top: 0px;
}

.modal-header button {
  margin-right: 10px;
}

.modal-header {
  border-bottom: solid 1px #1376BC;
}

.modal-footer {
  border-top: solid 1px #1376BC;
}

.history-modal .modal-content {
  background: #F4F7FC;
}
.history-modal .modal-header {
  border-bottom: none;
}
.history-modal h3 {
  font-weight: bold;
}

.upp {
  text-transform: capitalize;
}

.tag {
  border-radius: 9px;
  background: #6F7C8D;
  color: white;
  padding: 7px;
  font-size: 12px;
}
.tag.success {
  background: #00C455;
}
.tag.failed {
  background: #DB353C;
}

.btn-dpdn {
  border: 1px solid #DEDEDE;
}

.table-motorstudy {
  border: none;
  border-collapse: separate;
  border-spacing: 0 10px;
}
.table-motorstudy thead tr th {
  font-size: 10px;
  color: #ACAFB9;
  border: none;
}
.table-motorstudy tbody tr {
  background-color: white;
  margin: 10px 0;
}
.table-motorstudy tbody tr:hover {
  background-color: white;
}
.table-motorstudy tbody tr td {
  border: none;
  vertical-align: middle;
}
.table-motorstudy tbody tr td.simu_title label {
  font-weight: bold;
  color: #1376BC;
}

.add-cell {
  padding: 0 !important;
  vertical-align: bottom !important;
}
.add-cell a {
  padding: 15px;
  width: 80%;
  display: block;
  background: #DDEAF5;
  border-radius: 16px 0px 0 0;
  text-align: center;
  float: right;
}
.add-cell a:hover {
  background: white;
  text-decoration: none;
}

.padding-pane {
  padding: 15px;
}

.title-sim {
  align-items: center;
}
.title-sim a {
  margin-left: 20px;
  font-weight: bold;
}

.img-wind {
  border: solid 1px #E7F4FC;
  text-align: center;
  padding: 5px;
  margin: 5px auto;
}
.img-wind span {
  padding: 5px 0;
  text-align: center;
  display: block;
}
.img-wind img {
  max-width: 100%;
}

.w-80 {
  width: 80%;
  display: block;
  margin: auto;
}

.simu-form {
  background-color: #DAEAF4;
  padding: 15px 10px;
}

.btn-simu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.btn-simu .simu {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  color: #3A76BC;
  width: 48%;
  margin: 5px 0;
  border: 1px solid #DFDFDF;
  border-radius: 5px;
  padding: 5px;
}
.btn-simu .simu:hover {
  background-color: white;
}
.btn-simu .simu .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #DAEAF4;
  border-radius: 100%;
  padding: 2px;
  width: 25px;
  height: 25px;
  margin: 3px;
}
.btn-simu .simu .icon i {
  color: #3A76BC;
}
.btn-simu .simu.active {
  background-color: #3A76BC;
  border: 1px solid #3A76BC;
  color: white;
}
.btn-simu .simu.active:hover {
  background-color: #2e5e95;
}
.btn-simu .simu.active .icon {
  background-color: #418BC6;
}
.btn-simu .simu.active .icon i {
  color: white;
}
.btn-simu .simu:focus {
  outline: none;
}
input[type=number]::-webkit-inner-spin-button {
  opacity: 1;
  pointer-events: auto;
}

.nw {
  padding-top: 0;
  padding-bottom: 0;
}

.simu-name-nw {
  border: none;
  box-shadow: none;
  border-bottom: 1px solid grey;
  border-radius: 0;
  padding-left: 0;
}
.simu-name-nw:focus {
  outline: none;
  box-shadow: none;
}

/*# sourceMappingURL=main.css.map */
