* {
    font-size: 20px;
}
h3 {
    font-size: 30px;
    font-weight: bold;
}
.shape_label {
    font-size: 50px;
}
.shape_label {
    margin: 10px;
    border: 1px solid;
    border-radius: 0;
}


.dimensions label {
    margin: 10px;
}

.dimensions input {
    width: 80px;
}

.dimensions.hidden {
    display: none;
}
.container-xl {
    max-width: 1320px;
    margin: 0 auto;
}

input, textarea, select {
    padding: 10px 18px;
    width: 100%;
    border: 1px solid #ccc;
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 100%;
    line-height: 22px;
    color: #555;
    background-color: #ffffff;
    box-shadow: 0 1px 2px rgba(0,0,0,.09) inset;
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.09) inset;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.09) inset;
    -o-box-shadow: 0 1px 2px rgba(0,0,0,.09) inset;
    transition: all .2s linear;
    -moz-transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
}
input[type=number]{
    padding-right: 0px;
}

input:invalid{
    border-color: red;
}

input[type=radio]{
    padding-right: 0px;
    border: 0px  #ccc;
    position: absolute;
    opacity: 0;
}

input[type=radio]+img{
    cursor: pointer;
    border-radius: 4px;
}

input[type=radio]:checked+img{
    outline: 2px solid #2e3192;
}

input[type=radio]:hover+img{
    outline: 2px solid #2e3192;
}

.selectdiv:after {
    content: '<>';
    font: 17px "Consolas", monospace;
    color: #333;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 20px;
    /*Adjust for position however you want*/
    
    top: 9px;
    padding: 0px 0px 2px;
    border-bottom: 1px solid #ccc;
    /*left line */
    
    position: absolute;
    pointer-events: none;
  }

select {
    appearance: none;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
}


.row.noBottomPad
{
    padding-bottom: 0px;
}

.row.extraBottomPad
{
    padding-bottom: 36px;
}

.row.extraTopMargin
{
    margin-top: 18px;
}


.loader {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
transition: opacity 0.75s, visibility 0.75s;
background:  rgba(0, 0, 0, 0.5);
}

.loader::after {
content: "";
width: 75px;
height: 75px;
border: 15px solid #dddddd;
border-top-color: #2e3192;
border-radius: 50%;
animation: loading 0.75s ease infinite;
}

@keyframes loading {
from {
    transform: rotate(0turn);
}
to {
    transform: rotate(1turn);
}
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed; 
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: hidden; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
    padding-top: 60px;
  }


.modal-content {
    background-color: #fefefe;
    margin: 15% auto; 
    border: 1px solid #888;
    width: 40%; 
  }

  .iconInsideBttn  {
    margin-bottom: 6px;
  }

 .calculator__action button[type="submit"].calculator__button.hidden{
    display: none !important;
  }

  .calculator__action button[type="submit"].calculator__button:disabled{
    background: gainsboro !important;
  }

  button#salesLoginBttn  {
    padding-top: 14px !important;
    padding-bottom: 13px !important;
  }
  .modal-content .container-fluid{
    padding: 3%;
  }

  .modal-content .container-fluid .row{
    padding-left: 15px;
  }

  .modal-content .container-fluid.login-footer{
    padding: 5px;
  }

  .modal-content .container-fluid.login-footer .row{
    padding-left: 25px;
  }

  .calculator__action
  {
    margin-top: inherit;
  }

  .footerInterface{
    margin-top: 15px;
  }
  
/* Bootstrap off */
html .row {
	margin-right: inherit;
	margin-left: inherit;
}

html ::after, html ::before {
	-webkit-box-sizing: unset;
	-moz-box-sizing: unset;
	box-sizing: unset;
}
html a:focus {
	outline: inherit;
	outline: inherit;
	outline-offset: inherit;
}
html a:focus, html a:hover {
	color: inherit;
	text-decoration: unset;
}