@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

html {
    overscroll-behavior-x: none;
}

body {
    overscroll-behavior-x: none;
    font-family: "jost";
    min-height: 100vh;
    height: auto;
    width: 100%;
}

main {
    position: relative;
}

.sidebar {
    /* background-image: url(../images/sidebar-bg.jpg);*/
    background-color: #f6f8fc;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    z-index: 0;
}

.sidebar .wrapper {
    padding: 45px 40px;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25%;
}

.logo .logo-icon {
    font-size: 30px;
    color: rgb(41, 164, 202);
}

.logo .logo-text {
    /* font-size: 33px; */
    font-size: 1.5em;
    /* color: rgb(255, 255, 255); */
    color: rgb(16, 26, 37);
    font-weight: bold;
    text-transform: uppercase;  
    /* margin-left: 10px; */
    /* margin-top: 10px; */
    text-align: center;
}

.logo .logo-text-general {
    font-size: 1.3em;
    text-align: center;
}

.sidebar-inner {
    color: rgb(255, 255, 255);
    display: grid;
    /* height: calc(100% - 70px); */
    height: 45%;
    align-content: center;
    /* margin: 0 auto; */
    /* width: 78%; */
}

.sidebar-inner span {
    font-size: 15px;
    color: rgb(41, 164, 202);
    text-transform: uppercase;
    line-height: 3.667;
}

.sidebar-inner h2 {
    font-size: 55px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    line-height: 1;
    text-transform: capitalize;
}

.sidebar-inner p {
    font-size: 18px;
    color: rgb(215, 215, 215);
    line-height: 1.556; 
}

.donation-meter {
    margin-top: 50px;
    width: 100%;
    height: auto;
}

.donation-meter h5, .donation-meter span {
    font-size: 35px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    line-height: 1.857;
}

.donation-meter-inner {
    width: 100%;
    height: 19px;
    z-index: 3;
	margin-top: 5px;
    border-radius: 9px;
    background-color: rgb(60, 63, 63);
    display: flex;
}

.meter-fixed {
    width: 50%;
    height: 100%;
    background-color: rgb(41, 164, 202);
    border-radius: inherit;
}

.meter-circle {
	background: #fff;
	height: 45px;
	width: 45px;
    border: 0;
    border-top: solid 4px rgb(41, 164, 202);
	border-radius: 50%;
    background-image: url(../images/thumb-img.png);
    background-size: cover;
    background-position: center;
    position: relative;
    top: 120%;
    margin-left: -25px;
}

.donation-meter input[type=range] {
	-webkit-appearance: none;
    width: 100%;
    height: 19px;
    z-index: 3;
	margin-top: 5px;
	cursor: pointer;
    border-radius: 9px;
    background-color: rgb(60, 63, 63);
}

.donation-meter input[type=range]:active {
	border: none;
	box-shadow: none;
}

.donation-meter input[type=range]:focus {
	border: none;
	box-shadow: none;
}

.donation-meter input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	background: #fff;
	height: 45px;
	width: 45px;
	cursor: grab;
    border: 0;
    border-top: solid 4px rgb(41, 164, 202);
	border-radius: 50%;
    background-image: url(../images/thumb-img.png);
    background-size: cover;
    background-position: center;
    position: relative;
    top: 35px;
}

.donation-meter input[type=range]::-moz-range-thumb {
	-webkit-appearance: none;
	background: #fff;
	height: 45px;
	width: 45px;
	cursor: grab;
    border: 0;
    border-top: solid 4px rgb(41, 164, 202);
	border-radius: 50%;
    background-image: url(../images/thumb-img.png);
    background-size: cover;
    background-position: center;
}

.donation-meter input[type=range]::-ms-thumb {
	-webkit-appearance: none;
	background: #fff;
	height: 45px;
	width: 45px;
	cursor: grab;
    border: 0;
    border-top: solid 4px rgb(41, 164, 202);
	border-radius: 50%;
    background-image: url(../images/thumb-img.png);
    background-size: cover;
    background-position: center;
}

.donation-meter input[type=range]::-webkit-slider-runnable-track {
    border-radius: 9px;
}

.donation-meter input[type=range]::-moz-range-track {
    border-radius: 9px;
}

.donation-meter input[type=range]::-ms-track {
    border-radius: 9px;
}

.raised {
    display: flex;
    justify-content: space-between;
}

.raised p, .raised span {
    font-size: 15px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    line-height: 0;
    margin-top: 15px;
}

.raised span {
    color: rgb(41, 164, 202);
}

.copyright {
    display: flex;
    height: auto;
    width: 100%;
    justify-content: space-between;
    margin: 0 20px;
    margin-top: 20px;
}

.copyright .copyright-text {
    font-size: 13.5px;
    color: rgb(166, 166, 166);
}

.copyright .copyright-icons i {
    margin: 0 20px;
    font-size: 14px;
    /* color: rgb(255, 255, 255); */
    color: rgb(166, 166, 166);
}

.background {
    /* background-image: url(../images/background/bg.jpg); */
    /* background-size: cover; */
    z-index: 1;
}

.steps {
    min-height: 100vh;
    width: 100%;
    /* background-color: rgb(83, 129, 129); */
}

.steps .wrapper {
    display: grid;
    align-content: center;
    min-height: 100vh;
    margin-right: auto;
    padding-left: 100px;
    width: 80%;
}

.step-inner {
    height: 100%;
}

.step-inner span {
    font-size: 14px;
    color: rgb(166, 166, 166);
    line-height: 2;  
}

.step-inner h2 {
    font-size: 45px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    line-height: 1.444;
    text-transform: capitalize;
}

.step-inner p {
    font-size: 22px;
    color: rgb(16, 26, 37);
}

.donation-form {
    margin-top: 55px;
}

.radio-field {
    display: flex;
    height: 133px;
    align-content: center;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
    position: relative;
}

.radio-field input[type=radio] {
    -webkit-appearance: none;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: auto;
    cursor: pointer;
    border: solid 5px rgb(233, 233, 233);
    border-radius: 6px;
    padding: 35px;
    transition: 0.5s all ease;
}

.radio-field input[type=radio]::before {
    display: block;
    content: "";
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 60px;
    transition: 0.1s all linear;
    height: 60px;
}

.radio-field .op-1::before {
    background-image: url(../images/donate-cause-icon-1.png) !important;
    opacity: 0.3;
}

.radio-field .op-2::before {
    background-image: url(../images/donate-cause-icon-2.png) !important;
    opacity: 0.3;
}

.radio-field .op-3::before {
    background-image: url(../images/donate-cause-icon-3.png) !important;
    opacity: 0.3;
}

.radio-field .op-4::before {
    background-image: url(../images/donate-cause-icon-4.png) !important;
    opacity: 0.3;
}

.radio-field label {
    font-size: 26px;
    color: rgb(37, 50, 98);
    font-weight: bold;
    margin-left: 30px;
    width: 50%;
    margin-left: auto;
    margin-right: 45px;
}

.radio-field input[type=radio]:checked {
    border-color: rgb(41, 164, 202);
}

.radio-field input[type=radio]:checked::before {
    filter: brightness(0) saturate(100%) invert(56%) sepia(99%) saturate(376%) hue-rotate(150deg) brightness(83%) contrast(89%);
    filter: brightness(0) saturate(100%) invert(56%) sepia(99%) saturate(376%) hue-rotate(150deg) brightness(83%) contrast(89%);
}

.next-prev-btn {
    /* margin-top: 40px; */
    display: flex;
    justify-content: space-between;
}

.next-prev-btn button {
    background-color: rgb(41, 164, 202);
    width: 200px;
    height: 69px;
    border-radius: 50px;
    border: 0;
    font-size: 18px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-transform: uppercase;   
}

.next-prev-btn .prev {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 59px 0px rgba(0, 0, 0, 0.24);
    color: rgb(19, 21, 21);
    margin-right: 20px;
}

.select-field {
    margin-bottom: 40px;
}

.select-field label {
    font-size: 14px;
    color: rgb(166, 166, 166);
    display: block;
    margin-bottom: 15px;
}

.select-field input[type=radio] {
    -webkit-appearance: none;
    border: solid 2px rgb(37, 50, 98);
    /* width: 103px; */
    width: 100%;
    height: 80px;
    border-radius: 50px;
    cursor: pointer;
    margin-right: 10px;
    transition: 0.5s all ease;
    position: relative;
}

.select-field input[type=radio]::before {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 80px;
    position: absolute;
    text-align: center;
    font-size: 22.5px;
    color: rgb(37, 50, 98);
    transition: 0.5s all ease;
    font-weight: bold;
}

.select-field .rcj-1::before {
    content: "0";
}

.select-field .rcj-2::before {
    content: "14";
}

.select-field .rcj-3::before {
    content: "28";
}

.select-field .rcj-4::before {
    content: "43";
}

.select-field .rcj-5::before {
    content: "57";
}

.select-field .rcj-6::before {
    content: "70";
}

.select-field .rcj-7::before {
    content: "85";
}

.select-field .rcj-8::before {
    content: "100";
}

.select-field .opt-1-1-1::before {
    content: "Failure";
}

.select-field .opt-1-1-2::before {
    content: "Musculoskeletal injury";
}

.select-field .opt-1-1-3::before {
    content: "Momentum";
}

.select-field .opt-1-1-4::before {
    content: "Muscle energy";
}

.select-field .opt-1-1-5::before {
    content: "Physical motion";
}

.select-field .opt-1-2-1::before {
    content: "Gravity; Energy";
}

.select-field .opt-1-2-2::before {
    content: "Power; Distance";
}

.select-field .opt-1-2-3::before {
    content: "Energy; Object of mass";
}

.select-field .opt-1-2-4::before {
    content: "Distance; Gravity";
}

.select-field .opt-1-2-5::before {
    content: "Object of mass; Distance";
}

.select-field .opt-1-3-1::before {
    content: "Same";
}

.select-field .opt-1-3-2::before {
    content: "Closed to 9.81";
}

.select-field .opt-1-3-3::before {
    content: "Zero";
}

.select-field .opt-1-3-4::before {
    content: "Positive";
}

.select-field .opt-1-3-5::before {
    content: "Negative";
}

.select-field .opt-1-4-1::before {
    content: "1 meter";
}

.select-field .opt-1-4-2::before {
    content: "5 meters";
}

.select-field .opt-1-4-3::before {
    content: "10 meters";
}

.select-field .opt-1-4-4::before {
    content: "7 meters";
}

.select-field .opt-1-4-5::before {
    content: "3 meters";
}

.select-field .opt-1-5-1::before {
    content: "0.12 m";
}

.select-field .opt-1-5-2::before {
    content: "0.3 m";
}

.select-field .opt-1-5-3::before {
    content: "0.45 m";
}

.select-field .opt-1-5-4::before {
    content: "0.6 m";
}

.select-field .opt-1-5-5::before {
    content: "Insufficient information to calculate the distance";
}

.select-field .opt-1-6-1::before {
    content: "2.16 Nm";
}

.select-field .opt-1-6-2::before {
    content: "6.75 Nm";
}

.select-field .opt-1-6-3::before {
    content: "60 Nm";
}

.select-field .opt-1-6-4::before {
    content: "8.1 Nm";
}

.select-field .opt-1-6-5::before {
    content: "1.8 Nm";
}

.select-field .opt-1-7-1::before {
    content: "56.4%";
}

.select-field .opt-1-7-2::before {
    content: "57%";
}

.select-field .opt-1-7-3::before {
    content: "50.6%";
}

.select-field .opt-1-7-4::before {
    content: "43.6%";
}

.select-field .opt-1-7-5::before {
    content: "49%";
}

.select-field .opt-2-2-1::before {
    content: "10 degree";
}

.select-field .opt-2-2-2::before {
    content: "45 degree";
}

.select-field .opt-2-2-3::before {
    content: "30 degree";
}

.select-field .opt-2-2-4::before {
    content: "50 degree";
}

.select-field .opt-2-2-5::before {
    content: "90 degree";
}

.select-field .opt-2-3-1::before {
    content: "0.42 kg; 0.07 m";
}

.select-field .opt-2-3-2::before {
    content: "15 kg; 0.3 m";
}

.select-field .opt-2-3-3::before {
    content: "4.1 kg; 0.07 m";
}

.select-field .opt-2-3-4::before {
    content: "9.81 kg; 0.06 m";
}

.select-field .opt-2-3-5::before {
    content: "0.42 kg; 0.3 m";
}

.select-field .opt-2-4-1::before {
    content: "0.07 m; 0.28 m; 30 degree";
}

.select-field .opt-2-4-2::before {
    content: "0.28 m; 0.3 m; 80 degree";
}

.select-field .opt-2-4-3::before {
    content: "0.36 m; 0.28 m; 45 degree";
}

.select-field .opt-2-4-4::before {
    content: "0.28 m; 0.3 m; 45 degree";
}

.select-field .opt-2-4-5::before {
    content: "0.36 m; 0.07 m; 80 degree";
}

.select-field .opt-2-5-1::before {
    content: "43.6%; 18.82 Nm";
}

.select-field .opt-2-5-2::before {
    content: "43%; 1.22 Nm";
}

.select-field .opt-2-5-3::before {
    content: "57%; 24.7 Nm";
}

.select-field .opt-2-5-4::before {
    content: "57%; 1.22 Nm";
}

.select-field .opt-2-5-5::before {
    content: "43%; 18.82 Nm";
}

.select-field .opt-2-6-1::before {
    content: "9.8 kg";
}

.select-field .opt-2-6-2::before {
    content: "43.6 kg";
}

.select-field .opt-2-6-3::before {
    content: "19.2 kg";
}

.select-field .opt-2-6-4::before {
    content: "1.96 kg";
}

.select-field .opt-2-6-5::before {
    content: "Insufficient information to calculate the distance";
}

.select-field .opt-2-7-1::before {
    content: "67%; 58.49 Nm";
}

.select-field .opt-2-7-2::before {
    content: "50%; 173.3 Nm";
}

.select-field .opt-2-7-3::before {
    content: "21.9%; 55.21 Nm";
}

.select-field .opt-2-7-4::before {
    content: "67%; 77.6 Nm";
}

.select-field .opt-2-7-5::before {
    content: "50%; 58.49 Nm";
}

.select-field .opt-2-8-1::before {
    content: "Fe = 99.29 N; Me = 35.6 Nm";
}

.select-field .opt-2-8-2::before {
    content: "Fe = 11.67 N; Me = 34.3 Nm";
}

.select-field .opt-2-8-3::before {
    content: "Fe = 109.8 N; Me = 35.6 Nm";
}

.select-field .opt-2-8-4::before {
    content: "Fe = 99.29 N; Me = 34.3 Nm";
}

.select-field .opt-2-8-5::before {
    content: "Fe = 109.8 N; Me = 30.1 Nm";
}

.select-field input[type=radio]:checked {
    border-color: rgb(41, 164, 202);
}

.select-field input[type=radio]:checked::before {
    color: rgb(41, 164, 202);
}

.select-field .text-w-icon-field {
    border-radius: 50px;
    border: solid 2px rgb(37, 50, 98);
    width: 250px;
    height: 80px;
    overflow: hidden;
    display: flex;
    transition: 0.3s all ease;
}

.select-field .text-w-icon-field label {
    outline: solid 2px rgb(37, 50, 98);
    width: 87px;
    height: inherit;
    border-radius: 50px;
    text-align: center;
    line-height: 80px;
    font-size: 22.5px;
    color: rgb(37, 50, 98);
    font-weight: bold;
    transform: 0.3s all ease;
}
  
.select-field .text-w-icon-field input[type=text] {
    height: 100%;
    background: transparent;
    border: 0;
    padding-left: 30px;
    padding-right: 20px;
    font-size: 22.5px;
    width: calc(100% - 87px);
    color: rgb(37, 50, 98);
    font-weight: bold;
    transform: 0.3s all ease;
}

#active.focused {
    border-color: rgb(41, 164, 202) !important;
}

#active.focused label {
    outline-color: rgb(41, 164, 202) !important; 
    color: rgb(41, 164, 202) !important; 
}

#active.focused input[type=text] {
    color:  rgb(41, 164, 202) !important;
}

.select-field .text-w-icon-field input[type=text]:focus {
    outline: none;
}

.text-field {
    width: 100%;
    height: 110px;
    margin-bottom: 25px;
    position: relative;
}

.text-field input, .text-field select {
    border: solid 2px rgb(243, 243, 243);
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 70px;
    border-radius: 50px;
    padding-left: 35px;
    transition: 0.3s all ease;
    font-size: 16px;
    font-family: "Roboto";
    color: rgb(189, 189, 189);
}

.text-field select {
    -webkit-appearance: none;
    position: relative;
    cursor: pointer;
}

.text-field select+span::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f063";
    color: rgb(27, 25, 25);
    font-size: 17px;
    top: 55%;
    right: 30px;
    position: absolute;
    z-index: 0;
}

.text-field input:focus, .text-field select:focus {
    outline: none;
}

.text-field label {
    font-size: 18px;
    color: rgb(47, 49, 70);
    margin-bottom: 10px;
    margin-left: 35px;
    height: 30px;
    line-height: 30px;
    transition: 0.3s all ease;
    z-index: 999;
}

.text-field label i {
    display: none;
}

#focused.focused label {
    background-color: rgb(41, 164, 202);
    color: #fff;
    font-weight: 500;
    border-radius: 50px;
    width: fit-content;
    padding: 0 15px;
    position: relative;
    top: 27px;
}

#focused.focused label i {
    display: inline-block;
    font-size: 16px;
    margin-right: 5px;
}

#focused.focused input, #focused.focused select {
    border: solid 2px rgb(41, 164, 202);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 59px 0px rgba(0, 0, 0, 0.24);
}

.donate-button {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.donate-button button {
    background-color: rgb(41, 164, 202);
    width: 273px;
    height: 69px;
    border: 0;
    border-radius: 50px;
    font-size: 11px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-transform: uppercase;
}

.donate-button .custom {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 59px 0px rgba(0, 0, 0, 0.24);
    width: 330px;
    color: rgb(19, 21, 21);
}

.donate-button .custom span {
    margin-left: 15px;
    color:  rgb(41, 164, 202);
}

.donate-button .custom span i {
    margin-right: 8px;
}

/* thankyou-page */
.thankyou-page {
    background-color: rgb(243, 247, 254);
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.thankyou-page-inner {
	background: rgb(255,255,255);
    border-radius: 90px;
    width: 100%;
    position: relative;
    top: 30%;
    /* transform: translateY(50%); */
	text-align: center;
}

.tick {
	position: relative;
}

.done-tick {
	width: 120px;
	height: 120px;
	border: solid 1px transparent;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	border-left-color: rgb(34,208,136);
    animation: rotate-circle 0.5s linear forwards;
    animation-delay: 0.5s;
	border-radius: 50%;
	background-color: transparent;
}

.tick i {
	font-weight: 900;
	font-size: 50px;
	color: rgb(34,208,136);
    position: absolute;
    animation: tick-icon 0.8s linear forwards;
    animation-delay: 0.5s;
    top: 30%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation-delay: 0.5s;
}

.thankyou-page-inner h2 {
    font-size: 45px;
    color: rgb(5, 17, 51);
    margin-top: 20px;
    font-weight: bold;
}

.thankyou-page-inner p {
    font-size: 16px;
    color: rgb(170, 170, 170);
    margin-top: 20px;
}

.thankyou-page-inner .wrapper {
	padding: 80px 290px;
}

.next-prev-btn .back {
    border: 0;
    border-radius: 50px;
    background-color: rgb(41, 164, 202);
    font-size: 17px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-transform: uppercase;
    width: 448px;
    height: 67px;
}

/* scalar bar */
.step-inner .form-part
{
    margin-bottom: 60px;
    padding-bottom: 40px;
    width: 100%;
    /* border-bottom: solid 1px rgb(229, 228, 228); */
}

.sub-article .sub-step-text
{
    font-size: 21px;
    color: rgb(95, 95, 99);
}

.step-inner .sub-article .sub-heading
{
    margin-bottom: 10px;
}

.step-inner .sub-article
{
    margin-bottom: 25px;
}

.step-inner .sub-article .sub-step-text
{
    margin-left: 7%;
}

.sub-heading
{
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.sub-heading .sub-heading-marker
{
    font-weight: 900;
    font-size: 28px;
    background: linear-gradient(47deg, rgb(244,85,26) 0%, rgb(255,143,55) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
}

.sub-heading .sub-heading-text
{
    font-size: 28px;
    color: rgb(47, 49, 70);
    font-weight: bold;
    margin-left: 15px;
    text-transform: capitalize;
}

.range
{
	margin-top: 30px;
    list-style: none;
    padding: 0;
    display: -webkit-inline-box;
    width: 100%;
}

.range li 
{
	/* width: 124px; */
    width: 50%;
    font-size: 18px;
  	background: linear-gradient(47deg, rgb(244,85,26) 0%, rgb(255,143,55) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.range li::after
{
	content: "";
	position: absolute;
	left: 16px;
	right: 0;
    border-radius: 50%;
    z-index: -1;
    background-color: rgb(190, 219, 251); 
    width: 11px;
    height: 11px;
    bottom: -57px;
}

.range li::before
{
	position: absolute;
	background-color: rgb(226, 226, 226);
	width: 2px;
	height: 10px;
	left: 20px;
	right: 0;
	bottom: -27px;
	content: "";
}

.range .zero-value:after, .range .zero-value:before
{
	position: relative;
}

.range-input input[type=range]
{
	-webkit-appearance: none;
	/* width: 660px; */
    width: 100%;
	z-index: 3;
	height: 20px;
	margin-top: 25px;
	display: block;
	cursor: pointer;
    border-radius: 9px;
    background-color: rgb(228, 239, 251);
}

.range-input input[type=range]:focus
{
	border: none;
	box-shadow: none;
}

.range-input input[type=range]::-webkit-slider-thumb
{
	-webkit-appearance: none;
	background: rgb(215, 215, 215);
	height: 26px;
	width: 26px;
	cursor: grab;
	border: 0;
	margin-top: -2px;
	border-radius: 50%;
}

.range-input input[type=range]::-moz-range-thumb
{
	-webkit-appearance: none;
	background: rgb(215, 215, 215);
	height: 26px;
	width: 26px;
	cursor: grab;
	border: 0;
	margin-top: -2px;
	border-radius: 50%;
}

.range-input input[type=range]::-ms-thumb
{
    -webkit-appearance: none;
    background: rgb(215, 215, 215);
	height: 26px;
	width: 26px;
    cursor: grab;
    border: 0;
    margin-top: -2px;
	border-radius: 50%;
}

.range-input h5
{
    margin-top: 10px;
    font-size: 20px;
    color: rgb(47, 49, 70);
    font-weight: bold;
}

.range-input h5 span
{
    font-size: 20px;
    color: rgb(47, 49, 70);
    font-weight: normal;
}

/* modal */
.mod
{
    top: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    overflow: auto;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.4);
}

.mod-header
{
    height: 10%;
    overflow: hidden;
    position: relative;
    background-color: rgb(41, 164, 202);
}

.mod-close
{
    top: 50%;
    right: 0;
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    padding: 0 1em 0 0;
    position: absolute;
    transform: translateY(-50%);
}

.mod-close:hover, .mod-close:focus
{
    cursor: pointer;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.4);
}

.mod-title
{
    top: 50%;
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    padding: 0 0 0 1em;
    position: absolute;
    transform: translateY(-50%);
}

.mod-body
{
    height: 90%;
    display: flex;
    overflow: hidden;
    font-size: 2.5em;
    align-items: center;
    justify-content: center;
}

.mod-content
{
    top: 10%;
    width: 80%;
    height: 80%;
    padding: 0;
    margin: auto;
    position: relative;
    border: 1px solid #888;
    background-color: #fff;
    animation-name: animatetop;
    animation-duration: 0.4s;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@-webkit-keyframes animatetop
{
    from { top: 0; opacity: 0; }
    to { top: 10%; opacity: 1; }
}

@keyframes animatetop 
{
    from { top: 0; opacity: 0; }
    to { top: 10%; opacity: 1; }
}

/* topbar */
.topbar
{
    top: 0;
    position: fixed;
    text-align: center;
    background-color: rgb(246,248,252);
    display: none;
    z-index: 1;
}

.topbar-content
{
    font-size: 1.3em;
    padding: 1.5em 1.5em 1.0em 1.5em;
}

.topbar-toggle
{
    font-size: 1.0em;
    cursor: pointer;
}

/* bottombar */
.bottombar
{
    bottom: 0;
    position: fixed;
    text-align: center;
    background-color: rgb(246,248,252);
    display: none;
    z-index: 1;
}

.bottombar-content
{
    font-size: 1.3em;
    padding: 0.5em 0.5em 0.5em 0.5em;
}

.bottombar-toggle
{
    font-size: 1.0em;
    cursor: pointer;
}

.bottombar-btn-container
{
    font-size: 0.8em;
    margin: 0 0 1.0em 0;
}

.bottombar-btn
{
    margin: 0 1em 0 1em;
    color: rgb(255, 255, 255);
    background-color: rgb(41, 164, 202);
    border-radius: 5px;
    cursor: pointer;
}

/* trackbar */
.rotate-text
{
    transform: rotate(-45deg);
    /* Safari */
    -webkit-transform: rotate(-45deg);
    /* Firefox */
    -moz-transform: rotate(-45deg);
    /* IE */
    -ms-transform: rotate(-45deg);
    /* Opera */
    -o-transform: rotate(-45deg);
    /* Internet Explorer */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}