body {
  font-family: 'Inter', sans-serif;
  background-color: #001f40;

}

p {
  color: #888;
  font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Roboto", sans-serif;
}

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #007da9;
}

h5{
	font-size: 18px !important;
}

a:hover {
  text-decoration: none !important;
}

.content {
  padding: 7rem 0;
}

h1 {
  font-size: 38px;
}


h2 {
  font-size: 20px;
}

h6 {
  font-size: 15px;
  font-weight: 500;
}

.half {
  /* height: 80vh; */
  margin-top: 30px;
}

.half p {
  color: #fff !important;
  font-weight: 400;
}

.container p {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.5;
  color: #888 !important;
}

@media (max-width: 991.98px) {
  .half .bg {
    border-bottom-left-radius: unset;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: unset !important;
    padding: 30px 30px 40px 25px !important;
  }

  .half .contents {
    width: unset;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-top-right-radius: unset !important;
    padding-bottom: 20px;
  }

  .device-rounded-wrapper {
    transform: scale(0.7);
  }

  .client-details-wrapper {
    padding: 15px 10px !important;
  }

  .footer-text div {
    width: 100%;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 10px;
    text-align: center;
  }

}

@media screen and (max-width: 600px) {
  .device-rounded-wrapper {
    width: 60px !important;
    height: 60px !important;
    padding: 6px !important;
  }

  .compatible-item-wrapper {
    min-height: 85px;
  }
}

.half .contents {
  width: 50%;
  background-color: #fff;
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
}

.half .bg {
  width: 50%;
  background-color: #fff;

}

@media (max-width: 1199.98px) {

  .half .contents,
  .half .bg {
    width: unset !important;
    background-color: #fff;
  }
}

.half .contents .form-group,
.half .bg .form-group {
  margin-bottom: 0;
  padding: 10px 0;
  border-bottom: none;
}

.half .contents .form-group.first,
.half .bg .form-group.first {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

.half .contents .form-group.last,
.half .bg .form-group.last {
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}

.half .contents .form-group label,
.half .bg .form-group label {
  font-size: 12px;
  display: block;
  color: #b3b3b3;
}

.half .contents .form-control,
.half .bg .form-control {
  border: none;
  padding: 0;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #dfdede;
  padding: 0 15px;
  height: 40px;
}

.half .contents .form-control:active,
.half .contents .form-control:focus,
.half .bg .form-control:active,
.half .bg .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.half .bg {
  width: 50%;
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
  color: #fff;
  padding: 40px 80px;
}

.half a {
  color: #007da9 !important;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
}

.form-validation {
  font-size: 11px;
  color: #d24b21;
  float: right;
  line-height: 2.5;
}

.input-validation{
	border: 1px solid #d24b21 !important;
}

.input-validation-alert{
	visibility: hidden;
}

.half .btn {
  height: 44px;
  padding-left: 30px;
  padding-right: 30px;
}

.half .forgot-pass {
  position: relative;
  top: 2px;
  font-size: 13px;
  text-decoration: none;
}

.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 13px;
}

.v-center {
  margin: 0;
  position: fixed;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.control .caption {
  position: relative;
  top: .2rem;
  color: #888;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
  border-radius: 4px;
}

.control--radio .control__indicator {
  border-radius: 50%;
}

.control:hover input~.control__indicator,
.control input:focus~.control__indicator {
  background: #ccc;
}

.btn {
  background: #007da9 !important;
  border-color: #007da9 !important;
}

.control input:checked~.control__indicator {
  background: #007bff;
}

.control:hover input:not([disabled]):checked~.control__indicator,
.control input:checked:focus~.control__indicator {
  background: #007bff;
}

.control input:disabled~.control__indicator {
  background: #e6e6e6;
  opacity: 0.9;
  pointer-events: none;
}

.control__indicator:after {
  font-family: 'icomoon';
  content: '\e5ca';
  position: absolute;
  display: none;
  font-size: 16px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.control input:checked~.control__indicator:after {
  display: block;
  color: #fff;
}

.control--checkbox .control__indicator:after {
  top: 50%;
  left: 50%;
  margin-top: -1px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.control--checkbox input:disabled~.control__indicator:after {
  border-color: #7b7b7b;
}

.control--checkbox input:disabled:checked~.control__indicator {
  background-color: #7e0cf5;
  opacity: .2;
}

.client-details-wrapper {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  /* width: 100%; */
  border-radius: 10px;
  padding: 10px 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.client-details-wrapper strong {
  font-weight: 600;
}

.client-details-wrapper span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  opacity: 0.6;
}

.client-details-wrapper .p-2 {
  font-size: 13px;
}

.device-rounded-wrapper {
  width: 50px;
  height: 50px;
  padding: 10px;
  text-align: center;
  margin-bottom: 5px;
  border-radius: 150px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.device-rounded-wrapper:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.device-rounded-wrapper img{
	width: 28px;
}

.ml-auto a {
  color: #007da9 !important;
}

.space-between {
  margin-top: 10px;
}

.compatible-item-wrapper {
  width: 100%;
  padding: 10px 15px;
  border-radius: 15px;
  border: 1px solid #ecf0f5;
  background-color: #f2f7fa;
}

.compatible-item-wrapper img{
	margin-top: 5px;
}

.compatible-item-wrapper h6 {
  line-height: 1.6;
  font-weight: 600;
  color: #50535f;
  margin-bottom: 0;
  font-size: 14px;
}

.compatible-item-wrapper p {
  font-size: 11px;
  color: #7e8390;
  margin-bottom: 0;
}

.main {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 13px;
  color: #888;
  font-family: "Inter", sans-serif;
}


/* Hide the default checkbox */
input[type=checkbox] {
  visibility: hidden;
}

/* Creating a custom checkbox
based on demand */
.geekmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #f2f7fa;
  border: 1px solid rgb(202, 198, 198);
  border-radius: 4px;
}

/* Specify the background color to be
shown when hovering over checkbox */
.main:hover input~.geekmark {
  background-color: #ECEDF5;
}

/* Specify the background color to be
shown when checkbox is checked */
.main input:checked~.geekmark {
  background-color: #007bff;
}

/* Checkmark to be shown in checkbox */
/* It is not be shown when not checked */
.geekmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Display checkmark when checked */
.main input:checked~.geekmark:after {
  display: block;
}

/* Styling the checkmark using webkit */
.main .geekmark:after {
  left: 6px;
  bottom: 5px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.footer-text {
  font-size: 12px;
  line-height: 3;
  color: #fff;
}

.btn-primary:hover {
  background-color: #00A8A9 !important;
  border-color: #009c9c !important;
  cursor: pointer;  
}


.versionNumber:hover{
	cursor: none !important;
}

.strength0{	
  font-size: 11px;
  color: #FBA1B3;
  float: right;
  line-height: 2.5;
  font-weight: bold;
}

.strength1{	
  font-size: 11px;
  color: #ff5f5f;
  float: right;
  line-height: 2.5;
  font-weight: bold;
}

.strength2{	
  font-size: 11px;
  color: #4dcd00;
  float: right;
  line-height: 2.5;
  font-weight: bold;
}

.strength3{	
  font-size: 11px;
  color: #399800;
  float: right;
  line-height: 2.5;
  font-weight: bold;
}


.dijitToggleButtonIconChar {
    display: none!important;
}

.dijitOffScreen {
    position: absolute;
    left: 50%;
    top: -10000px;
}

.version-number{
	color: #007da9 !important;
}


.browser-drop{
	visibility: hidden;
	-webkit-transition: visibility 0.2s linear;
	-moz-transition: visibility 0.2s linear;
	-o-transition: visibility 0.2s linear;
}

@media only screen and (max-width: 600px) {
 .alert.alert-danger .icon, 
 .alert.alert-danger .icon:after{
 	display: none;
 }
}

/* Alerts */

.alert-success {
    border-color: #dddddd;
    border-left: 5px solid #00986a;
    background-color: #fff;
    color: #888;
}

.alert-info {
    border-color: #dddddd;
    border-left: 5px solid #00b3c8;
    background-color: #fff;
    color: #888;
}

.alert-info ul li {
    font-size: 11px;
    font-family: 'Roboto', sans-serif;
}

.alert-warning {
    border-color: #dddddd;
    border-left: 5px solid #f9af2c;
    background-color: #fff;
    color: #888;
}

.alert-danger {
    border-color: #dddddd;
    border-left: 5px solid #c82630;
    background-color: #fff;
    color: #888;
}

.alert-danger h6{
	font-weight: 600;
	color: #c82630 !important;
	margin-bottom: 0px !important;
}
.alert-danger p{
	font-size: 11px !important;
	color: #d24b21 !important;
}
@media (min-width: 768px) {
    .form-group .alert {
        padding-left: 15px !important;
        font-size: 12px;
    }

    .alert {
        font-family: "Inter", sans-serif;
        border-radius: 6px;
        display: table;
        width: 100%;
        padding-left: 78px;
        position: relative;
        padding-right: 60px;
        border: 1px solid #dddddd;
    }

    .alert p {
        font-size: 12px;
        font-family: 'Roboto', sans-serif;
    }

    .alert .close {
        color: #888;
        opacity: 1;
        float: none;
        position: absolute;
        right: 18px;
        top: 50%;
        margin-top: -12px;
        font-size: 25px;
        cursor: pointer;
    }

    .alert .icon {
        text-align: center;
        width: 58px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border: 1px solid #bdbdbd;
        padding-top: 15px;
        border-radius: 6px 0 0 6px;
    }



    .alert .icon img {
        font-size: 20px;
        color: #fff;
        left: 18px;
        margin-top: -10px;
        position: absolute;
        top: 50%;
    }
}

/*  Alert colors  */

.alert.alert-success .icon,
.alert.alert-success .icon:after {
    border-color: none;
    background: #00986a;
}

.alert.alert-info .icon,
.alert.alert-info .icon:after {
    border-color: none;
    background: #00b3c8;
}

.alert.alert-warning .icon,
.alert.alert-warning .icon:after {
    border: none;
    background: #f9af2c;
}

.alert.alert-danger .icon,
.alert.alert-danger .icon:after {
    border-color: none;
    background: #c82630;
}

.floating-alert{
	position: relative;
}

.ml-auto .tooltip-new  {
  visibility: hidden;
  width: auto;
  color: #fff;
  text-align: center;
  z-index: 9999;
  color: #666;
  font-size: 11px;
  text-align: left;
  position: absolute;
  right: 0px;
  top: 28px;
  color: #0c5460;
  background-color: #d1ecf1;
  border: 1px solid #bee5eb;
  padding: 5px 10px;
  border-radius: 3px;
}

.ml-auto:hover .tooltip-new{
	visibility: visible;
}


.text-black {
  color: #000 !important;
}

.text-gray {
  color: #999 !important;
}

.custom-width {
  width: 50px;
  margin: 0 10px;
}

.link-text {
  color: #007da9 !important;
}

.text-center p{
	color: #000 !important;
}

/* Social Media Icons */

.social{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	margin: 0 auto;
	padding-left: 0 !important;
}

.social ul{
	padding-left: 0px;
}

.social li{
	list-style-type: none;
	display: inline-block;
	width: 32px;
	height: 32px;
	cursor: pointer;
	margin-left: 10px;
	transition: ease .3s;
	opacity: 0.6;
}

.social li:hover {
	opacity: 1;
}

