/*
*
*    Kentucky Petals - Client Interface
*    (c)2019 Kentucky Petals, LLC. All rights reserved.
*    Developer: Trevor D. Brown
*
*    Current file version - 0.1.0.0
*
*    shared.css - common CSS code between multiple pages in the client interface.
*
*/

/* Kentucky Petals Theme*/
.kp-theme{
    background-color: #c7e9f5;
    color: #000000;
}

/* Links */
a:hover{
    text-decoration: none;
}

/* Navigation Bar */
#kp-nav, #kp-nav-collapse{
    width: 100%;
    text-align: center;
}

.kp-sticky-nav{
    position: fixed;
    top: 0px;
    vertical-align: middle;
    z-index: 100;
    width: 100%;
}

.kp-sticky-nav-large{
    line-height: 100px;
}

.kp-nav-logo{
    max-width: 300px;
    height: 100px;
}

/* Hamburger Menu Color Override */
.hamburger-inner, .hamburger-inner:before, .hamburger-inner:after, .hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before{
    background-color: #ffffff;
}

/* Divider elements */
.kp-solid{
    background-color: #ffffff;
    opacity: 1;
}

.kp-unsolid{
    background-color: #ffffff;
    opacity: 0;
}

.kp-divider{
    height: 100px;
    max-height: 100px;
    width: 100%;
}

.kp-input-textarea{
    resize: none;
}

/* Cards */
.kp-card-header{
    height: 50px;
}

/* Formatting for input fields */
.input-icon {
    position: relative;
}

.input-icon > i {
    position: absolute;
    display: block;
    transform: translate(0, -50%);
    top: 50%;
    pointer-events: none;
    width: 25px;
    text-align: center;
    font-style: normal;
}

.input-icon-left > input {
    padding-left: 25px;
    padding-right: 0;
}

.input-icon-right > i {
    right: 0;
}

.input-icon-right > input {
    padding-right: 30px;
}