﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select{
    max-width: 280px;
}
#changeAccount a{
    text-decoration:none;
}

.borderTopGreen {
    border-top: solid var(--secondary--Color) 2px
}

.passwordEyeContainer {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    right: 2.4rem;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.passwordEyeContainer i {
    color: #8b8b8b;
}



.menu {
    position: fixed;
}

.toggle {
    display: none;
}


.toggle + .style {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%) scale(1);
    display: block;
    background: var(--secondary--Color);
    color: #fff;
    text-align: center !important;
    -webkit-transition: all .8s;
    -moz-transition: all .8s;
    -o-transition: all .8s;
    -ms-transition: all .8s;
    transition: all .8s;
    line-height: 59px;
}


.menu p {
    text-align: center;
    line-height: 70px;
}

.toggle + .style:hover {
    -webkit-box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, .7);
    -moz-box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, .7);
    -ms-box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, .7);
    -o-box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, .7);
    box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, .7);
}

.toggle:checked + .style {
    transform: translate(-50%, -50%) scale(.5);
}



.toggle:checked + .style:before, .toggle:checked + .style:after {
    transform: rotate(135deg);
}

.toggle ~ .tab {
    position: absolute;
    background: var(--primary--Color);
    color: #fff;
    width: 70px;
    height: 70px;
    left: 0px;
    top: 0px;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.3s;
    opacity: 0;
    border-radius: 50%;
}

.toggle:checked ~ .tab {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.menu > .toggle:checked ~ .tab:nth-of-type(1) {
    top: -80px;
    left: 0px;
    transition-delay: 0s;
}

.menu > .toggle:checked ~ .tab:nth-of-type(2) {
    top: -160px;
    left: 0px;
    transition-delay: 0.125s;
}

.menu > .toggle:checked ~ .tab:nth-of-type(3) {
    top: -240px;
    left: 0;
    transition-delay: 0.25s;
}

