﻿.nfldm-topnav {
    width: 100%;
    height: 64px;
    background: rgb(1, 51, 105);
    border-radius: 0px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 10px;
    line-height: 30px;
}

.nfldm-topnavlinks:hover > a {
    color: #ACBAC9 !important;
}

.nfldm-topnavlinks:hover > a:hover {
    color: white !important;
}

.nfldm-toplink {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 3px;
    color: white !important;
    position: relative;
    box-shadow: 0 0px;
    white-space: nowrap;
    font-size: 16px;
}

.nfldm-toplink:hover {
    cursor: pointer;
    text-decoration: none;
}

.nfldm-toplink::before {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-shadow: 0px 4px;
    opacity: 0;
    transition: opacity 150ms;
}

.nfldm-toplink:hover::before {
    opacity: 1;
}

.nfldm-select {
    border-radius: 4px;
    border: 1px solid rgb(204, 204, 204);
    height: 40px;
}

.nfldm-label {
    height: 12px;
    color: rgb(117, 117, 117);
    font-size: 12px;
    line-height: 12px;
    display: block;
}

.nfldm-btn-primary-icon {
    background: #1b48e0 !important;
    border-radius: 4px;
    border: 1px solid rgb(27, 72, 224);
    height: 40px;
    cursor: pointer;
}

.nfldm-btn-primary-icon-red {
    background: #ff0000 !important;
    border-radius: 4px;
    border: 1px solid rgb(27, 72, 224);
    height: 40px;
    cursor: pointer;
}


.nfldm-btn-ghost {
    background: rgb(255, 255, 255) !important;
    color: rgb(27, 72, 224) !important;
    border-radius: 4px;
    border: 1px solid rgb(27, 72, 224) !important;
    height: 40px;
    cursor: pointer;
}

.nfldm-btn-raised {
    background: rgb(255, 255, 255) !important;
    color: rgb(27, 72, 224) !important;
    border-radius: 4px;
    border: 1px solid rgb(255, 255, 255) !important;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
    height: 40px;
    cursor: pointer;
}

.nfldm-text_normal {
    background: rgb(255, 255, 255);
    border-radius: 4px;
    border: 1px solid rgb(204, 204, 204);
    height: 40px;
}

.nfldm-text_normal:focus {
    border: 1px solid rgb(27, 72, 224);
}

.nfldm-textArea_normal {
    background: rgb(255, 255, 255);
    border-radius: 4px;
    border: 1px solid rgb(204, 204, 204);
    height: 110px;
}

.nfldm-checkbox {
    width: 16px;
    height: 16px;
    background: rgb(27, 72, 224);
    border-radius: 0px;
}


/* table styling */
.nfldm-table 
{
    padding: 0px;
    margin: 0px;
}

.nfldm-table > tbody > tr > td {
    border-width: 0px 1px 0px 0px;
    border-style: solid;
    border-image: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 100%);
}

.nfldm-error {
    color: red;
}