* {
    margin: 0px;
    border: 0px;
    padding: 0px;
}


input[type=button]{
    outline: 0px;
}

input[type=text]{
    background-color: #f4f4f4;
}

.unselectable {
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
 
    /*
      Introduced in IE 10.
      See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
    */
    -ms-user-select: none;
    user-select: none;
 }

html {
    height:100vh;
    width: 100vw;
}



#footer{
    height: 8vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
  
  
    z-index: 0;
    
}

body {
    height: 100vh;
    width: 100vw;
 
}


#form-container {
    margin-top:95px;
    display: flex;
    flex-flow: column;
    justify-content: right;
    align-items: center;
    width: calc(100% - 10px);
    padding: 0 5px;
    margin-bottom: 0;
     
}
form {
    font-family: 'Raleway', sans-serif;
    color: black;
    font-size: 16px;
    
}
#user-name-input{
    margin-top: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#user-name-input:hover > input{
    background: #B4B4B4;
}
#user-name-input:hover::after{
    content:"Please enter your name (This will not appear on the NIST Certificate).";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 40px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#user-name-input:hover::before{
    height: 25px;
    width: 25px;
    content:"";
    background-color: hsl(0, 0%, 67%);
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 10px);
    -webkit-mask: url("../images/info.svg") no-repeat center;
    -webkit-mask-size: 20px 20px;

}
#emailaddress-input{
    margin-top: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#emailaddress-input:hover > input{
    background: #B4B4B4;
}
#emailaddress-input:hover::after{
    content:"Please enter your email address (This will not appear on the NIST Certificate).";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 40px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#emailaddress-input:hover::before{
    height: 25px;
    width: 25px;
    content:"";
    background-color: hsl(0, 0%, 67%);
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 10px);
    -webkit-mask: url("../images/info.svg") no-repeat center;
    -webkit-mask-size: 20px 20px;

}
#emailsDontMatch{
    display: none;
    color: red;
}
#emailaddress-input2{
    margin-top: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#emailaddress-input2:hover > input{
    background: #B4B4B4;
}
#emailaddress-input2:hover::after{
    content:"Please enter your email address (This will not appear on the NIST Certificate).";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 40px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#emailaddress-input2:hover::before{
    height: 25px;
    width: 25px;
    content:"";
    background-color: hsl(0, 0%, 67%);
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 10px);
    -webkit-mask: url("../images/info.svg") no-repeat center;
    -webkit-mask-size: 20px 20px;

}
#company-name-input{
    margin-top: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#company-name-input:hover > input{
    background: #B4B4B4;
}
#company-name-input:hover::after{
    content:"Please enter the company to which the calibration certificate will be issued (This will appear on the NIST Certificate).";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 40px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#company-name-input:hover::before{
    height: 25px;
    width: 25px;
    content:"";
    background-color: hsl(0, 0%, 67%);
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 10px);
    -webkit-mask: url("../images/info.svg") no-repeat center;
    -webkit-mask-size: 20px 20px;

}
#street-address-input{
    margin-top: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#street-address-input:hover > input{
    background: #B4B4B4;
}
#street-address-input:hover::after{
    content:"Please enter the street address of the company that will recieve the certificates.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 40px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#street-address-input:hover::before{
    height: 25px;
    width: 25px;
    content:"";
    background-color: hsl(0, 0%, 67%);
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 10px);
    -webkit-mask: url("../images/info.svg") no-repeat center;
    -webkit-mask-size: 20px 20px;
}
#street-address-input2{
    margin-top: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#street-address-input2:hover > input{
    background: #B4B4B4;
}
#street-address-input2:hover::after{
    content:"Please enter additional address information such as apartment, suite, etc.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 40px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#street-address-input2:hover::before{
    height: 25px;
    width: 25px;
    content:"";
    background-color: hsl(0, 0%, 67%);
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 10px);
    -webkit-mask: url("../images/info.svg") no-repeat center;
    -webkit-mask-size: 20px 20px;
}
#city-input{
    margin-top: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#city-input:hover > input{
    background: #B4B4B4;
}
#city-input:hover::after{
    content:"Please enter the city in which the company above is located.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 40px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#city-input:hover::before{
    height: 25px;
    width: 25px;
    content:"";
    background-color: hsl(0, 0%, 67%);
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 10px);
    -webkit-mask: url("../images/info.svg") no-repeat center;
    -webkit-mask-size: 20px 20px;
}
#state-province-input{
    margin-top: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#state-province-input:hover > input{
    background: #B4B4B4;
}
#state-province-input:hover::after{
    content:"Please enter the state/province in which the above company is located.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 40px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#state-province-input:hover::before{
    height: 25px;
    width: 25px;
    content:"";
    background-color: hsl(0, 0%, 67%);
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 10px);
    -webkit-mask: url("../images/info.svg") no-repeat center;
    -webkit-mask-size: 20px 20px;
}
#zip-code-input{
    margin-top: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#zip-code-input:hover > input{
    background: #B4B4B4;
}
#zip-code-input:hover::after{
    content:"Please enter the zip code in which the company above is located.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 40px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#zip-code-input:hover::before{
    height: 25px;
    width: 25px;
    content:"";
    background-color: hsl(0, 0%, 67%);
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 10px);
    -webkit-mask: url("../images/info.svg") no-repeat center;
    -webkit-mask-size: 20px 20px;
}
#country-input{
    margin-top: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#country-input:hover > input{
    background: #B4B4B4;
}
#country-input:hover::after{
    content:"Please enter the country in which the above company is located.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 40px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#country-input:hover::before{
    height: 25px;
    width: 25px;
    content:"";
    background-color: hsl(0, 0%, 67%);
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 10px);
    -webkit-mask: url("../images/info.svg") no-repeat center;
    -webkit-mask-size: 20px 20px;
}
#select-sensors-input{
    margin-top: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#select-sensors-input:hover > input{
    background: #B4B4B4;
}
#select-sensors-input:hover::after{
    content:"model of the sensor being calibrated.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 40px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#select-sensors-input:hover::before{
    height: 25px;
    width: 25px;
    content:"";
    background-color: hsl(0, 0%, 67%);
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 10px);
    -webkit-mask: url("../images/info.svg") no-repeat center;
    -webkit-mask-size: 20px 20px;
}
.unchangeable{
    pointer-events: none;
}
#number-of-sensors-input{
    margin-top: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#number-of-sensors-input:hover > input{
    background: #B4B4B4;
}
#number-of-sensors-input:hover::after{
    content:"Number of sensors or loggers being calibrated.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 40px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#number-of-sensors-input:hover::before{
    height: 25px;
    width: 25px;
    content:"";
    background-color: hsl(0, 0%, 67%);
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 10px);
    -webkit-mask: url("../images/info.svg") no-repeat center;
    -webkit-mask-size: 20px 20px;
}
#customPoints-input{
    /*margin-top: 5px;*/
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#customPoints-input:hover > input{
    background: #B4B4B4;
}
#customPoints-input:hover::after{
    content:"The DS1922L-F5# has a temperature range of -40\00b0 C to +85\00b0 C with a software corrected accuracy of \00b1 0.5\00b0 C in the range of -10\00b0 C to +65\00b0 C.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(170% + 60px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#customPoints-input.DS1922L:hover::after{
    content:"The DS1922L-F5# has a temperature range of -40\00b0 C to +85\00b0 C with a software corrected accuracy of \00b1 0.5\00b0 C in the range of -10\00b0 C to +65\00b0 C.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(170% + 60px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#customPoints-input.DS1922E:hover::after{
    content:"The DS1922E-F5# has a temperature range of +15\00b0 C to 140\00b0 C, with an accuracy of \00b1 1.5\00b0 C in the range of 110\00b0 C to +140\00b0 C and a typical accuracy of \00b1 7\00b0 C in the range of 15\00b0 C to 110\00b0 C. ";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(170% + 60px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#customPoints-input.DS1922T:hover::after{
    content:"The DS1922T-F5# has a temperature range of 0\00b0 C to +125\00b0 C with an accuracy of \00b1 0.5\00b0 C in the range of +20\00b0 C to +75\00b0 C after software correction.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(170% + 60px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#customPoints-input.DS1921G:hover::after{
    content:"The DS1921G-F5# has a temperature range of -40\00b0 C to +85\00b0 C, with an accuracy of \00b1 1\00b0 C in the range of -30\00b0 C to +70\00b0 C and an accuracy of \00b1 1.3\00b0 C outside of that range.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(170% + 60px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#customPoints-input.DS1921H:hover::after{
    content:"The DS1921H-F5# has a temperature range of 15\00b0 C to +46\00b0 C, with an accuracy of \00b1 1\00b0 C.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(170% + 60px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#customPoints-input.DS1921Z:hover::after{
    content:"The DS1921Z-F5# has a temperature range of -5\00b0 C to +26\00b0 C, with an accuracy of \00b1 1\00b0 C.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(170% + 60px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#customPoints-input.DS1923:hover::after{
    content:"The DS1923-F5# has an operating range of -20\00b0 C to +85\00b0 C, with an accuracy of \00b1 0.5\00b0 C between -10\00b0 C to +65\00b0 C.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(170% + 60px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#customPoints-input.DS1925L:hover::after{
    content:"The DS1925L-F5# has a temperature range of -40\00b0 C to +85\00b0 C with an accuracy of \00b1 0.5\00b0 C.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(170% + 60px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#customPoints-input.T-Probe:hover::after{
    content:"The sensor has a temperature range of -55\00b0 C to +125\00b0 C, with an accuracy of \00b1 0.5\00b0 C.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(170% + 60px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#customPoints-input.T-Sense:hover::after{
    content:"The sensor has a temperature range of -55\00b0 C to +125\00b0 C, with an accuracy of \00b1 0.5\00b0 C.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(170% + 60px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#customPoints-input:hover::before{
    height: 25px;
    width: 25px;
    content:"";
    background-color: hsl(0, 0%, 67%);
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(170% + 30px);
    -webkit-mask: url("../images/info.svg") no-repeat center;
    -webkit-mask-size: 20px 20px;
}
#noPointsAdded{
    display: none;
    color: red;
}
#alreadyCustom{
    display: none;
    color: red;
}
#alreadyPoints1{
    display: none;
    color: red;
}
#alreadyPoints2{
    display: none;
    color: red;
}
#certificateType-input{
    margin-top: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#certificateType-input:hover > select{
    background: #B4B4B4;
}
#certificateType-input:hover::after{
    content:"Would you like to recieve your certificate as a hardcopy paper certificate, or as a digital version(PDF).";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 40px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#certificateType-input:hover::before{
    height: 25px;
    width: 25px;
    content:"";
    background-color: hsl(0, 0%, 67%);
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 10px);
    -webkit-mask: url("../images/info.svg") no-repeat center;
    -webkit-mask-size: 20px 20px;
}
#signatureType-input{
    margin-top: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#signatureType-input:hover > select{
    background: #B4B4B4;
}
#signatureType-input:hover::after{
    content:"Would you like a Digital or ink signature on your paper certificate?";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 40px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#signatureType-input:hover::before{
    height: 25px;
    width: 25px;
    content:"";
    background-color: hsl(0, 0%, 67%);
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 10px);
    -webkit-mask: url("../images/info.svg") no-repeat center;
    -webkit-mask-size: 20px 20px;
}
#recalibrationDateDropdown{
    margin-top: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#recalibrationDateDropdown:hover > select{
    background: #B4B4B4;
}
#recalibrationDateDropdown:hover::after{
    content:"Since all sensors tend to drift over time, it is important to recalibrate your sensors/loggers at a regular interval based on the amount of use. Typically, we recommend 1-2 years depending on the amount of use.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 40px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#recalibrationDateDropdown:hover::before{
    height: 25px;
    width: 25px;
    content:"";
    background-color: hsl(0, 0%, 67%);
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 10px);
    -webkit-mask: url("../images/info.svg") no-repeat center;
    -webkit-mask-size: 20px 20px;
}
#recalibration-date-input{
    margin-top: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#recalibration-date-input:hover > select{
    background: #B4B4B4;
}
#recalibration-date-input:hover::after{
    content:"Since all sensors tend to drift over time, it is important to recalibrate your sensors/loggers at a regular interval based on the amount of use. Typically, we recommend 1-2 years depending on the amount of use.";
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 40px);
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: hsl(0, 0%, 85%);
    background-color: hsl(0, 0%, 97%);
    border-radius: 3px;
    width: 300px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    
}
#recalibration-date-input:hover::before{
    height: 25px;
    width: 25px;
    content:"";
    background-color: hsl(0, 0%, 67%);
    color: hsl(0, 0%, 20%);
    position: absolute;
    left: calc(100% + 10px);
    -webkit-mask: url("../images/info.svg") no-repeat center;
    -webkit-mask-size: 20px 20px;
}
#emptyField{
    display: none;
    color: red;
}
#mismatchEmail{
    display: none;
    color: red;
}
#invalidEmail{
    display: none;
    color: red;
}
#invalidCaptcha{
    display: none;
    color: red;
}
#points-added-container {
    border-radius: 15px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    overflow: hidden;
    width: 0%;
    height: 0%;  
    transition: width, 300;
    border-style: border-box;
    border-width: 2px;
    border-color: #00669C;
}

.remove-point{
    height: 100%;
    background-color: #ff3333;
    color: white;
    width: 20%;
    position: absolute;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Raleway', sans-serif;
    transition: background-color, 300ms;
}

.remove-point:hover{
    background-color: #ff6666;
}

#points {
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

#location-section {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

#customer-info {
    display: flex;
    flex-flow: column;
}




#calibration-information {
    margin-left: 20%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-flow: column;
    height: 100%;
    
}

.invalidInputText {
    border-radius: 5px;
    height: 30px;
    background-color: #ff6666;
    color: white;
    font-size: 12px;
    font-family: 'Raleway', sans-serif;
    transition: color .2s, background-color .1s;
}

.invalidInputText:hover {
    background-color: white;
    color: red;
}

.invalidInputText:focus {
    background-color: #b30000;
    color: white;
}


.textInput {
    text-align: center;
    border-radius: 5px;
    height: 30px;
    background-color: #f4f4f4;
    color: black;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    transition: color .2s, background-color .1s;
    margin: 0;
    width: 100%;
}

.textInput:hover {
    background-color: #B4B4B4;
    color: white;
}

.textInput:focus {
    background-color: #00669C;
    color: white;
}

#sensor-model-number {
    /*width: 100%;*/
    height: 30px;
}

#calibration-points-form {
    display: flex; 
    position: relative;
}

#calibration-points {
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    height: 30px;
    width: 160px;
    font-family: 'Raleway', sans-serif;
    margin-right: 3px;
    text-indent: 5px
}

#number-of-sensors {
    width: 100%;
    text-align: center;
    border-radius: 5px;
    height: 30px;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    transition: color .2s, background-color .1s;
    color: black;
    pointer-events: none;
}


#number-of-sensors:hover{
    background-color: #B4B4B4;
    color: white;
}

#number-of-sensors:focus{
    background-color: #00669C;
    color: white;
}

.hidden-submit-form{
    display: none;
}
#customRecalibration-text{
    display: none;
}
#recalibration-date{
    display: none;
    text-align: center;
    border-radius: 5px;
    height: 30px;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    transition: color .2s, background-color .1s;
    width: 100%;
}

#recalibration-date:hover{
    background-color: #B4B4B4;
    color: white; 
}

#recalibration-date:focus{
    background-color: #00669C;
    color: white;
}

#country{
    margin-bottom: 0%;
}


#calibration-points:hover {
    background-color: #B4B4B4;
    color: white;
}

#calibration-points:focus {
    background-color: #00669C;
    color: white;
}

#add-points {
    position: relative;
    width: 20%;
    height: 30px;
    border-radius: 2px;
    margin-left: 10px;
    background-color: #3399ff;
    border: none;
    font-size: 25px;
    color: #f4f4f4;;
    transition: background-color .1s;
    cursor: pointer;
}

#add-points:hover {
    background-color: #00669C
}
#custom-points{
    margin-left: 10px;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    height: 30px;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    transition: color .2s, background-color .1s;
    color: black;
}


#custom-points:hover{
    background-color: #B4B4B4;
    color: white;
}

#custom-points:focus{
    background-color: #00669C;
    color: white;
}

#add-custom-points {
    position: relative;
    width: 20%;
    height: 30px;
    border-radius: 2px;
    margin-left: 10px;
    background-color: #3399ff;
    border: none;
    font-size: 25px;
    color: white;
    transition: background-color .1s;
    cursor: pointer;
}

#add-custom-points:hover {
    background-color: #00669C
}

select {
    width: 100%;
    border-radius: 5px;
    height: 30px;
    background-color: #f4f4f4;
    color: black;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    transition: color .2s, background-color .1s;  
}

#submit {
    position: relative;
    width: 50%;
    height: 40px;
    border-radius: 5px;
    background-color: #3399ff;
    border: none;
    font-size: 16px;
    color: white;
    transition: background-color .1s;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
}

#submit:hover {
    background-color: #009FDF;
}

#reset {
    display: none;
    position: relative;
    width: 90px;
    height: 30px;
    border-radius: 2px;
    background-color: #3399ff;
    border: none;
    font-size: 16px;
    color: white;
    transition: background-color .1s;
    font-family: 'Raleway', sans-serif;
}

#reset:hover {
    background-color: #009FDF;
}

.points-entry {
    
    color: white;
    font-family: 'Raleway', sans-serif; 
    width: 70%;
    margin: 5px 0 5px 15px; 
    align-content: center;

    
}

.points-entry-container{
    position: relative;
    background-color: #3399ff;
    width: 100%;
    display: flex;
    
    
    
}

.unitText {
    font-family: 'Raleway', sans-serif; 
    font-size: 25px;
}
#unitText__table {
    font-size: 16px;
    display: inline-block;
}

.g-recaptcha{
    margin: auto;
}

#submit-reset{
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: center;
}
th {
    padding: 0 5px;
}
table {
    margin: 10px 0;
    background-color: #f4f4f4;
}
td {
    text-align: center;
}
.table-remove-button {
    width: 100%;
    height: 100%;
    color: rgb(238, 74, 74);
    cursor: pointer;
    padding: 5px;
    font-weight: bold;
    border-radius: 4px;
}
.table-remove-button:hover {
    color: white;
    background-color: rgb(238, 74, 74);
}





