﻿@charset "utf-8";
/* CSS Document */

:root {
    --primarycolor: #217A93;
    --secondarycolor: #1E5975;
}

p {
    margin-bottom: 0;
}

.btn {
    padding: 10px 20px;
    border-radius: 0px;
    outline: none;
    text-transform: uppercase;
}

    .btn:focus {
        outline: none;
    }

.btn-primary {
    color: #fff;
    background-color: var(--primarycolor);
    border-color: transparent;
    font-size: 1rem;
    font-weight: normal;
}

    .btn-primary:hover {
        color: var(--primarycolor);
        background-color: #fff;
        border-color: var(--primarycolor);
    }

    .btn-primary.focus, .btn-primary:focus {
        color: var(--secondarycolor);
        background-color: #fff;
        border-color: var(--secondarycolor);
        box-shadow: 0 0 0 0.2rem rgba(33, 122, 147,.25);
    }

    .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
        color: var(--secondarycolor);
        background-color: #fff;
        border-color: var(--secondarycolor);
    }

        .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(33, 122, 147,.25);
        }

.form-control {
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: #222;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border-radius: 2px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

    .form-control:focus {
        color: #495057;
        background-color: #fff;
        border-color: var(--primarycolor);
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(33, 122, 147,.25);
    }

.form-group {
    margin-bottom: 0;
    display: inline-block;
    padding-right: 10px;
    margin-top: 20px;
    position: relative;
}
/*Theme two code override starts here*/
.theme-two .btn {
    padding: 6px 10px;
    outline: none;
    border-radius: 0.125rem;
    text-transform: capitalize;
    font-size: 0.875rem;
}

    .theme-two .btn:focus {
        outline: none;
    }

.theme-two .btn-primary {
    color: #fff;
    background-color: var(--primarycolor);
    border-color: transparent;
    font-size: 1rem;
    font-weight: bold;
}

    .theme-two .btn-primary:hover {
        color: var(--primarycolor);
        background-color: #fff;
        border-color: var(--primarycolor);
    }

    .theme-two .btn-primary.focus, .theme-two .btn-primary:focus {
        color: var(--secondarycolor);
        background-color: #fff;
        border-color: var(--secondarycolor);
        box-shadow: 0 0 0 0.2rem rgba(33, 122, 147,.25);
    }

    .theme-two .btn-primary i {
        font-size: 0.75rem;
        position: relative;
        top: -2px;
    }

    .theme-two .btn-primary:not(:disabled):not(.disabled).active, .theme-two .btn-primary:not(:disabled):not(.disabled):active, .theme-two .show > .btn-primary.dropdown-toggle {
        color: var(--secondarycolor);
        background-color: #fff;
        border-color: var(--secondarycolor);
    }

        .theme-two .btn-primary:not(:disabled):not(.disabled).active:focus, .theme-two .btn-primary:not(:disabled):not(.disabled):active:focus, .theme-two .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(33, 122, 147,.25);
        }
/*Theme three code override starts here*/
.theme-three .btn {
    padding: 16px 32px;
    outline: none;
    border-radius: 50px;
    font-size: 0.875rem;
    text-transform: capitalize
}

    .theme-three .btn:focus {
        outline: none;
    }

.theme-three .btn-primary {
    line-height: 1;
    color: #fff;
    background: var(--primarycolor); /* Old browsers */
    background: -moz-linear-gradient(top, var(--primarycolor) 0%, var(--secondarycolor) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, var(--primarycolor) 0%,var(--secondarycolor) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, var(--primarycolor) 0%,var(--secondarycolor) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--primarycolor)', endColorstr='var(--secondarycolor)',GradientType=0 );
    font-size: 1rem;
    font-weight: bold;
    border: none;
}

    .theme-three .btn-primary:hover {
        color: #fff !important;
        /* background-color: #fff; */
        border-color: var(--primarycolor);
    }

    .theme-three .btn-primary.focus, .theme-three .btn-primary:focus {
        color: #fff;
        background-color: #fff;
        border-color: var(--secondarycolor);
        box-shadow: 0 0 0 0.2rem rgba(33, 122, 147,.25);
    }

    .theme-three .btn-primary i {
        font-size: 0.75rem;
        position: relative;
        top: -2px;
    }

    .theme-three .btn-primary:not(:disabled):not(.disabled).active, .theme-three .btn-primary:not(:disabled):not(.disabled):active, .theme-three .show > .btn-primary.dropdown-toggle {
        color: var(--secondarycolor);
        background-color: #fff;
        border-color: var(--secondarycolor);
    }

        .theme-three .btn-primary:not(:disabled):not(.disabled).active:focus, .theme-three .btn-primary:not(:disabled):not(.disabled):active:focus, .theme-three .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(33, 122, 147,.25);
        }

.form-control {
    height: 40px;
}
/*Inventory page code Starts here*/
#alm-inventory .form-control {
    height: 50px;
}
/*Inventory page code ends here*/
/*Contact page code Starts here*/
#alm-contact .form-control {
    height: 50px;
}
/*Contact page code ends here*/
