html,
body {
    height: 100%;
    border-top: 0px solid transparent;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.2);
    overflow-x: hidden;
    background-color: #262B30;
}

body:before {
    content: '';
    position: fixed;
    bottom: -17%;
    left: -14%;
    width: 40%;
    height: 55%;
    z-index: -1;
    background-image: url('../img/bg-after.svg');
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

body:after {}

body:hover:after {
    opacity: 0.6;
}

body.navOpen {
    overflow: hidden;
}

#app{
    min-height:100vh;
}

/*=================================================== TYPOGRAPHY ===================================================*/

h1 {
    font-size: 3em;
    font-weight: 700;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.9em;
}

#calendarTab h3:nth-child(1) {
    margin-bottom: 0.4em;
    font-size: 1.3em;
    font-weight: 600;
}

p {
    font-size: 1em;
    color: #666;
    font-weight: 100;
}

p strong {
    color: #666;
}

ul {
    color: #666;
    font-weight: 100;
}

hr {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn {
    border: none;
    text-transform: uppercase;
    box-shadow: none !important;
}

.btn-link {
    color: #fff;
}

.btn-link:hover {
    color: inherit;
    text-decoration: underline;
}

.btn-primary {
    background-color: #36a8e0;
}

.btn-primary.btn-lg {
    font-weight: bold;
    line-height: 1.2;
}

.btn-primary.btn-lg small {
    display: block;
    opacity: 0.4;
}

.btn-primary:hover {
    color: #fff;
    background-color: #36a8e0;
    border-color: #36a8e0;
}

.btn-secondary {
    background-color: #31363b;
}

.btn-secondary.dropdown-toggle {
}

.btn-secondary:hover {
    color: #fff;
    background-color: #31363b;
    border-color: #31363b;
}

.btn-clear {
    border: 1px solid #ccc;
    color: #ccc;
}

a {
    outline: none !important;
    color: #fff;
}

a:hover {
    color: inherit;
}

.form-control {
    background-color: #31363b;
    color: #fff;
    border-color: transparent;
    height: calc(2em + .75rem + 2px);
    transition:all 300ms ease-out;
    position: relative;
    z-index: 2;
}

.form-control:disabled, .form-control[readonly] {background-color: #31363b;color: #fff;border-color: transparent;height: calc(2em + .75rem + 2px);opacity: 0.3;}

.form-control::placeholder {
    color: #999;
}

.form-control:focus{
    background-color: #31363b!important;
    border-color: #36a8e0;
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(54, 168, 224, 0.25);
}

input.form-control:not(:placeholder-shown):invalid {
    box-shadow: 0 0 0 1px rgba(228, 31, 31, 0.75);
    border-color: rgba(228, 31, 31, 0.75);
}

input.form-control:invalid + span.form-control-error {
    transform: translateY(100%);
}

.form-control-error{
    background: #d92020;
    color: #f6c6c6;
    font-size: 0.8em;
    padding: 0 0.5em 0.1em;
    border-radius: 0 0 3px 3px;
    float: right;
    line-height: 1.3;
    bottom: 2px;
    position: absolute;
    right: 1px;
    transition: all 300ms ease-in-out;
    z-index: 1;
    transform: translateY(0%);
}

label {
    text-transform: uppercase;
    font-size: 0.8em;
    color: #747474;
}

.card{
    background: #31363a;
    padding: 1em;
    color: #fff;
    border-radius: 0.5em;
}
.faded-50{
    opacity: 0.5;
}

.faded-20{
    opacity: 0.2;
}

/*=================================================== GLOBAL ===================================================*/


/*ALERTS*/

.alertify {}

.alertify .ajs-dimmer {
    opacity: 0.9;
    z-index: 10200;
}

.alertify .ajs-modal {
    z-index: 10300;
}

.ajs-button {
    background: #f1f1f1;
    border: none;
    font-size: 0.9em;
}

.ajs-button.ajs-ok {
    background: #c00;
    color: #fff;
}

.ajs-header,
.ajs-commands {
    display: none;
}

.alertify .ajs-body .ajs-content {
    padding: 0px;
}

.alertify-notifier .ajs-message {
    width: 100vw;
    text-align: center;
    padding: 0.8em 1em !important;
    border-radius: 0em;
    font-size: 0.8em;
    bottom: 0;
    -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.alertify-notifier .ajs-message.ajs-error {
    background: #d7191f;
    color: #fff;
}

.alertify-notifier {
    left: 0;
    bottom: 0;
    font-size: 1.1em;
    text-align: center;
}

.alertify-notifier .ajs-success {
    color: #FFF;
    background: #1cab3e;
}

.form-group {
    position: relative;
}

.help-block.form-error {
    position: absolute;
    bottom: 0;
    right: 0;
    text-transform: uppercase;
    font-size: 0.7em;
    background: #ea0001;
    color: #FFF;
    padding: 0.1em 0.3em;
    border-radius: 2px;
    transform: translateY(59%);
}

.noScrollBar::-webkit-scrollbar {
    display: none;
}

.groupField {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: stretch;
    flex-wrap: wrap;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .3em;
    overflow: hidden;
    transition: box-shadow .15s ease-in;
}

.groupField .groupedInput {
    max-width: 85%;
    border: 0;
    border-radius: 0;
}

.groupField .groupIcon {
    width: 100%;
    max-width: 15%;
    background-color: #F7F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.groupField.focusHere {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.groupField.focusHere .groupIcon {
    background-color: #fff;
}

.groupField .groupIcon img {
    max-width: 70%;
}


/*=================================================== HEADER ===================================================*/

.navbar{background: #1f2327;}

.navbar-toggler-icon {
    color: #fff;
    font-size: 1.2em;
    line-height: 1.5;
}

.navbar-toggler {
    outline: none !important;
}

.navbar .nav-link {
    color: #fff;
    text-transform: uppercase;
    padding: 1rem 1rem !important;
    text-align: center;
}
/*=================================================== MAIN ===================================================*/

main {padding-top: 90px;min-height: calc(100vh - 63px);}
.loading main{
    opacity: 0;
}
main section:first-of-type{
    padding-top: 1em;
}

main section h4{
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

#login {}

#login .custom-control-label {
    font-size: 0.8em;
    line-height: 2;
}

#login .brandLogo {
    text-align: center;
}

.brandLogo .logo {
    max-width: 120px;
}

#login .simpleLink {
    color: #4B515A;
    font-weight: 100;
}

#login .simpleLink.signUp {
    color: #fff;
}

#resetPassword h4 {
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}


#completeProfile{
    padding-top: 3em;
}

#completeProfile h1 {
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 2em;
}

#completeProfile .logo {
    margin: 0 auto 2em;
    display: block;
    height: 7em;
}

/*=================================================== CHART ===================================================*/

.chartDetails{
    text-align: center;
    position: relative;
    overflow: hidden;
}

.chartDetails h1 {
    color: #fff;
    line-height: 1;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 33%;
    font-size: 5em;
}

#dashboard span.text-danger {
    color: #de5753 !important;
}

#dashboard span.text-success {
    color: #4cce59 !important;
}

.chartDetails h1 small {
    display: block;
    font-size: 0.5em;
}

.backupChart {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  width: 80%;
  height: auto;
}

.progressBack{stroke: rgba(0, 0, 0, 0.2901960784313726);stroke-width: 3%;stroke-linecap: round;}

.progressBack.disabled {
    opacity: 0.2;
}

.progressValue {
    stroke-linecap: round;
    transition: 500ms all ease-in-out;
}

.progressValue.progressVideos {
    stroke: #71143f;
}
.textCopy.videos p{
    color: #9a255b;
}

.progressValue.progressPhotos {
    stroke: #CC1E6F;
}
.textCopy.photos p{
    color: #CC1E6F;
}

.progressValue.progressEvents {
    stroke: #254B5F;
}
.textCopy.calendar-events p{
    color: #33657f;
}

.progressValue.progressContacts {
    stroke: #36A8E0;
}
.textCopy.contacts p{
    color: #36A8E0;
}


@-webkit-keyframes progress {
  from {
    stroke-dashoffset: 339.292;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes progress {
  from {
    stroke-dashoffset: 339.292;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/*=================================================== DASHBOARD ===================================================*/

#dashboard{}


#dashboard .backupStatus {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#dashboard .backupStatus h5 {
    color: #fff;
    font-size: 1.4em;
    font-weight: 600;
    text-transform: uppercase;
}

#dashboard .backupStatus h5 small {
    display: block;
    font-weight: 100;
    font-size: .6em;
    opacity:0.2;
}

#dashboard .backupStatus .deviceList {

}

#dashboard .backupStatus .deviceList .dropdown-menu {
    background: #545b62;
    z-index: 9999;
    max-height: 53vh;
    overflow: auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

#dashboard .backupStatus .deviceList .dropdown-item {
    color: #fff;
    text-align: left;
    line-height: 1;
    text-transform: uppercase;
    transition: .3s all;
    padding-top: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    outline: none;
}

#dashboard .backupStatus .deviceList .dropdown-item.active {
    background-color: #2e93c5;
}

#dashboard .backupStatus .deviceList .dropdown-item:last-child{
    border:none;
}

#dashboard .backupStatus .deviceList .dropdown-item small {
    display: block;
    opacity: 0.2;
}

#dashboard .backupStatus .deviceList .dropdown-item:hover {
    opacity: 1;
    background: transparent;
}

#dashboard .backupStatus .deviceList .btn:after {
    display: none;
}


.backupChartWrapper .btn-primary {
    display: block;
    line-height: 1.2;
    margin: -2em auto 0;
    font-size: 1.2em;
    font-weight: bold;
    padding: 0.5em;
}
.backupChartWrapper .btn-primary small {
    display: block;
    font-weight: 100;
    opacity: 0.5;
}

.backupCardWrapper {}

.backupCardWrapper .backupCard {
    display: flex;
    align-items: flex-start;
    background-color: #31353b;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    padding: 1em;
    margin-bottom: 1em;
    transition: all .3s ease-in;
}

.backupCardWrapper .backupCard .cardIcon {
    width: 0%;
}

.backupCardWrapper .backupCard .cardIcon .icon {
    font-size: 1.5em;
}

.cardDetail {
    width: 100%;
}

.cardDetail table {
    width: 100%;
}

.cardDetail table.disabled {
    opacity: 0.3;
}

.cardDetail table.disabled p {
    font-weight: 100;
}

.cardDetail table tr td {
    padding: 0.4em 0;
}

.cardDetail table tr:not(:last-child) td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cardDetail table tr td.itemSize {
    text-align: right;
    color: #fff;
    font-size: 0.9em;
}

.cardDetail table tr td .btn-icon {
    margin-top: -0.5em;
}
.cardDetail table tr:first-child td.itemSize{
    vertical-align: bottom;
}
.cardDetail table tr:first-child td small{
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
}
.cardDetail table tr td.itemSize .textCopy{
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.cardDetail table tr td.itemSize .downloadIcon{
    width: 15px;
}

.icon-contacts:before { content: '\e807'; } /* '' */
.icon-calendar-events:before { content: '\e801'; } /* '' */


.cardDetail table p {
    /* color: #fff; */
    font-weight: 700;
    /* font-size: 1.2em; */
    margin-bottom: 0;
}


.cardDetail table .usedSpace p{
    font-size: 1.5em;
}

.cardDetail table .title td h2 {
    line-height: 1;
    text-transform: uppercase;
    font-size: 1em;
    margin: 0;
}

.cardDetail table .title td h1 {
    color: #fff;
    font-size: 2em;
    line-height: 1;
}

.cardDetail table .title td h1 .icon {
    color: #4cce59;
}


.cardDetail table p small {
    display: block;
    line-height: 1;
    font-weight: 100;
    font-size: 0.7em;
    color: rgba(255, 255, 255, 0.8);
}

.itemDescription .textCopy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.itemDescription .textCopy .icon {
    margin-right: .5em;
    font-size: 1.2em;
}

.cardDetail table .itemDescription .textCopy p {
    margin-bottom: 0;
    line-height: 1.2;
}



/*=================================================== PROFILE ===================================================*/
#profile {

}

#profile .personalDetails{
    padding-bottom: 1.5em;
    margin-bottom: 2.5em;
    border-bottom: 1px solid #707070;
}


#profile  label{
    text-transform: capitalize;
}

#profile .btn{
    font-size: .9em;
}


#profile .changePassword .btn.btn-secondary{
    color: rgba(255, 255, 255, 0.5);
}

.tooltip .arrow::before{
    border-bottom-color: rgba(241, 241, 241, 0.1);
}

.tooltip-inner{
    background-color: rgba(241, 241, 241, 0.1)!important;
    border-radius: .3em;
}

/*=================================================== FOOTER ===================================================*/

footer{
    background: #202327;
    font-size: 0.7em;
    min-height: 20px;
    text-align: center;
    margin-top: 30px;
}

footer a {
    color: #525457;
}

/*=================================================== THEME ===================================================*/

.theme-media .cardDetail table .title td h2{
    /* color: #cc1e6f; */
}

.theme-personal-info .cardDetail table .title td h2{
/*     color: #7ac4e9; */
}

