/* Dropdown Button */
.dropbtn {
    background-color: var(--color-primary);
    color: white;
    padding: 8px 24px;
    font-size: 12px;
    border: none;
    cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover,
.dropbtn:focus {
    opacity: 0.8;
}

/*  */

.float-right {
    position: fixed;
    right: 16px;
    bottom: 16px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    padding-top: 12px;
    padding-bottom: 12px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
    display: block;
}

.hide {
    display: none;
}

/* position dropdown-content */
.dropdown-content-right {
    right: 0;
}

/* col */
.column {
    float: left;
    width: 33.33%;
}

.block {
    display: block;
    width: 100%;
    border: none;
    cursor: pointer;
    text-align: center;
}

.left {
    width: 85%;
}

.right {
    width: 15%;
}

/* Clear floats after the columns */
/* row */
.row {
    overflow: hidden;
    position: relative;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* text align */
.text-center {
    text-align: center;
}

/* end text align */

/* list */
.listType01 li {
    position: relative;
    padding: 10px 16px 20px 16px;
    border-bottom: 1px solid #ccc;
}

.arrow-right {
    height: 85px;
    right: -50px;
    position: absolute;
    top: -50px;
    width: 85px;
    -webkit-transform: rotate(45deg);
}

.arrow-right span p {
    color: #f5f5f5;
    font-size: 1rem;
    left: -40px;
    top: -6px;
    position: absolute;
    width: 80px;
    -webkit-transform: rotate(45deg);
}

.arrow-right span {
    color: #f5f5f5;
    font-size: 1.005em;
    left: 25px;
    top: 40px;
    position: absolute;
    width: 80px;
    -webkit-transform: rotate(-45deg);
}

.arrow-right span a {
    text-decoration: none;
}

.arrow-right span a i {
    color: #333;
}

/* lean Modal */
#lean_overlay {
    position: fixed;
    z-index: 10000;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: #000;
    display: none;
}

#modalApproval {
    padding: 30px;
    display: none;
    background: #FFF;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    position: relative;
    width: 80%;
}


.modal_close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: block;
    width: 14px;
    height: 14px;
    color: #333;
    z-index: 2;
    text-decoration: none;
}

.modal_close:hover {
    color: #dadada;
    transition: .3s ease-in-out;
}

/* end lean */

/* wrap */
.wrap {
    padding-bottom: 62px !important;
}

/* end wrap */

/* Class Colors */

.bg-primary {
    background-color: var(--color-primary);
}

.bg-approve {
    background-color: var(--color-secondary);
}

.bg-reject {
    background-color: var(--color-danger);
}

.bg-mute {
    background-color: var(--color-muted);
}

.text-dark {
    color: var(--color-dark);
}

/* end Class color */

/* Colors */
:root {
    --color-primary: #008c8c !important;
    --color-secondary: #005f5f !important;
    --color-danger: #d70d3f !important;
    --color-muted: #b3bebe !important;
    --color-dark: rgb(26, 26, 26) !important;
    --color-dark-grey: #333 !important;
}

/* end Colors */