﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

:root {
    --header-height: 12vh;
    --footer-height: 03vh;
    --contant-height: 85vh;
}

html {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    min-height: 100vh;
    min-width: 100vw;
    margin: 0;
    padding: 0;
    color: darkslategrey;
    background-color: #DAE9F8;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#content {
    flex: 1;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    color: darkslategrey;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

#header {
    height: 12vh;
    max-height: 12vh;
    width: 100vw;
    max-width: 100vw;
    padding: 1px 10px;
    background-color: #153D64;
    border-bottom: thick inset #00B0F0;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#frmMain {
    width: 100%;
    max-width: 100%;
    height: 86vh;
    max-height: 86vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#footer {
    width: 100%;
    max-width: 100%;
    height: 4vh;
    height: 4vh;
    background-color: #153D64;
    color: darkslategrey;
    border-top: inset thick #00B0F0;
}

.container {
    width: 15%;
    max-width: 15%;
    height: 84vh;
    max-height: 84vh;
    margin-top: 5px;
    margin-left: 10px;
    margin-bottom: 10px;
    padding: 5px 5px;
    background-color: #153D64;
    border: 2px inset white;
    border-radius: 8px;
    float: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.displaing {
    width: 84%;
    max-width: 84%;
    height: 84vh;
    max-height: 84vh;
    margin: 5px 10px 10px 10px;
    padding: 5px 5px;
    font-size: 12px;
    background-color: #153D64;
    border: 2px inset white;
    border-radius: 8px;
    float: right;
}

.links {
    width: 95%;
    max-width: 200px;
    height: 20px;
    max-height: 20px;
    float: none;
    display: block;
    margin-top: 10px;
    margin-left: 5px;
    margin-bottom: 10px;
    font-size: 12px;
}

    .links a {
        display: block;
        margin-bottom: 5px;
        color: whitesmoke;
        text-decoration: none;
        border: 1px solid #ccc;
        padding: 5px;
        border-radius: 5px;
        border-style: outset;
        background: #0070C0;
        transition: background 0.3s, border-color 0.3s;
    }

        .links a:hover {
            background: #e2e2f9;
            border-color: #7a7af0;
        }

    .links .active {
        background: #ffcc00;
        border: 2px inset white;
        color: darkblue;
        font-weight: bold;
    }


.wrapper {
    height: 83vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #DAE9F8;
}

.loginContainer {
    border-radius: 7px;
    width: 70vw;
    max-width: 70vw;
    height: 70vh;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border: 1px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: white;
    background-color: #153D64;
    gap: 5px;
}

.WrapperA {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: flex-start;
    padding: 10px;
}

.LogincontainerA {
    border-radius: 25px;
    background-color: #fff;
    width: 70vw;
    max-width: 70vw;
    height: 75vh;
    max-height: 75vh;
    padding: 15px 15px;
    border: 1px solid #eee;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 20px;
}

.form-control {
    width: 200px;
    height: 25px;
    padding: 2px 2px;
    border: 1px inset gainsboro;
    background-color: whitesmoke;
    border-radius: 3px;
    font-family: Courier New, Courier, monospace;
    font-weight: bold;
    font-size: 10px;
}

.form-control-me {
    display: block;
    width: 20vw;
    max-width: 20vw;
    height: 4.2vh;
    padding: 10px;
    font-size: 11px;
    font-weight: 400;
    color: black;
    background-color: whitesmoke;
    border-radius: 5px;
    border-style: inset;
    border-width: 2px;
    border-color: gainsboro;
    margin: 1px 0;
}

.btn-Login, .btn-Register {
    display: block;
    width: 20vw;
    height: 4.2vh;
    font-size: 11px;
    color: white;
    padding: 2px 2px;
    border-radius: 5px;
    border-style: inset;
    margin: 1px 0;
    border: none;
    cursor: pointer;
}

.btn-Login {
    background-color: royalblue;
}

    .btn-Login:hover {
        background-color: darkorange;
    }

.btn-Register {
    background-color: forestgreen;
}

    .btn-Register:hover {
        background-color: darkorange;
    }


#lblHeadTitle {
    font-size: 2rem;
    font-family: "Stencil Std", Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
    text-align: left;
    margin-top: 5px;
    margin-left: 20px;
    color: #A6C9EC;
}


#lblSubtitlea {
    font-size: 1rem;
    font-family: "Stencil Std", Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
    text-align: left;
    margin-top: 5px;
    margin-left: 20px;
    color: cornflowerblue;
}

.h1-style {
    margin-top: 5px;
    margin-left: 20px;
    color: cornflowerblue;
}

.h2-style {
    margin-top: 5px;
    margin-left: 20px;
    color: #A6C9EC;
}

h1 {
    font-size: 1rem;
    font-family: "Stencil Std", Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
    text-align: left;
}


h2 {
    font-size: 2rem;
    font-family: "Stencil Std", Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
    text-align: left;
}

h3 {
    font-size: 0.75rem;
    font-family: Courier New, Courier, monospace;
    text-align: center;
    vertical-align: top;
    color: lightcyan;
}

.nav-link.active {
    font-weight: bold;
    color: #007bff;
    background-color: #e9ecef;
    border-radius: 4px;
}

.imgHead {
    float: right;
    height: 70px;
    width: 70px
}

#tbHead {
    width: 100%;
    height: 100%;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0
}

.sidebar {
    width: 220px;
    background-color: antiquewhite;
    color: white;
    padding: 20px;
    overflow-y: auto;
    border-radius: 10px;
    height: 83vh;
}

    .sidebar ul {
        list-style-type: none;
        padding: 0;
    }

        .sidebar ul li {
            margin-bottom: 10px;
        }

            .sidebar ul li a {
                color: #ccc;
                text-decoration: none;
                display: block;
                padding: 8px;
                border-radius: 5px;
            }

                .sidebar ul li a:hover {
                    background-color: #444;
                    color: white;
                }

.main-content {
    flex: 1;
    padding: 30px;
    background-color: #333;
}

.profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.profile-image {
    border-radius: 20px;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid #999;
}

.info-cards-mp {
    display: flex;
    Gap: 10px;
    height: 100%;
    width: 100%;
    background-color: #333;
    color: aqua;
}

.home-dashboard {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: #f9f9f9;
    border: 2px inset white;
}

.profile-box {
    width: 230px;
    max-width: 230px;
    height: 78vh;
    max-height: 78vh;
    background-color: #544e4e;
    padding: 5px 5px;
    color: white;
    float: left;
    margin-left: 10px;
    margin-top: 10px;
    border-radius: 10px;
    border: 2px inset white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .profile-box img {
        width: 180px;
        height: 240px;
        border-radius: 10px;
    }

    .profile-box .welcome {
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 10px;
    }


.Display-box {
    width: calc(100% - 260px);
    max-width: calc(100% - 260px);
    height: 78vh;
    max-height: 78vh;
    background-color: #544e4e;
    color: white;
    float: right;
    margin-top: 10px;
    margin-right: 10px;
    border-radius: 10px;
    border: 2px inset white;
    padding: 10px 10px;
}

.info-cards-mp {
    display: flex;
    Gap: 10px;
    height: 100%;
    width: 100%;
    background-color: #333;
    color: aqua;
}

.info-card-mp {
    height: 100%;
    padding: 5px 10px;
    border-radius: 8px;
    background-color: #333;
    overflow: auto;
    font-size: 0.65em;
    color: aqua;
}

    .info-card-mp h4 {
        margin: 0 0 4px 0;
        font-size: 1.50em;
        color: aqua;
    }

.info-cards {
    display: flex;
    gap: 10px;
    height: 100%;
    width: 100%;
    background-color: #333;
    color: aqua;
}

.info-card {
    height: 100%;
    padding: 5px 10px;
    border-radius: 8px;
    background-color: #333;
    overflow: auto;
    font-size: 0.65em;
    color: aqua;
}

    .info-card h4 {
        margin: 0 0 4px 0;
        font-size: 1.50em;
        color: aqua;
    }

.doc-button {
    display: block;
    width: 95%;
    margin: 5px 5px 5px 5px;
    padding: 10px;
    border: 2px ridge WhiteSmoke;
    background-color: transparent;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

    .doc-button a:hover {
        background-color: yellow;
        color: #1f1f1f;
    }

.control_form {
    height: 23px;
    padding: 3px 5px;
    border: 2px inset whitesmoke;
    border-radius: 5px;
    font-size: 11px;
    color: black
}

.lable_control {
    color: black;
    padding: 5px 5px;
    border: 2px inset whitesmoke;
    border-radius: 5px;
    font-size: 10px;
    text-align: left;
}

.btnB {
    padding: 4px 4px;
    color: white;
    cursor: pointer;
    width: 16%;
    height: 30px;
    border-radius: 5px;
    border: 2px ridge white;
    color: cornflowerblue;
}

    .btnB:hover {
        opacity: 0.6;
    }

.custom-file-upload {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    font-weight: normal;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 150px;
    height: 30px;
    border: 1px inset lightgray;
    padding: 5px 5px
}

    .custom-file-upload:hover {
        background-color: #45a049;
    }

#uplImage {
    display: none;
}

.file-name {
    margin-left: 10px;
    font-style: italic;
    color: #444;
}

#upload-div {
    width: 150px;
    height: 30px;
}

.emplImage {
    width: 120px;
    height: 180px;
    border: 2px inset lightgray;
}

#lbl-div {
    width: 100%;
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: red;
}

#Head-Titel {
    height: 10%;
    width: 100%;
    margin-bottom: 40px;
}

#Port-Div {
    width: 100%;
    height: 100%;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: inset 1px lightgreen;
}


.Danger-Text {
    color: red;
    background-color: yellow;
    font-size: 12px;
    font-weight: bolder;
}

.table-in {
    width: 100%;
    height: 200px;
    max-height: 200px;
}

    .table-in .tr {
        height: 22px;
        max-height: 40px;
        width: 100%;
    }

    .table-in .td {
        width: 25%;
        max-width: 25%;
        height: 100%;
        max-height: 22px;
        padding: 0;
        margin: 0;
        text-align: left;
    }

#MainFormDiv {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

#pdfIframe {
    width: 99%;
    height: 490px;
    border-radius: 8px;
}

.translation-panel {
    margin: 30px auto;
    max-width: 850px;
    padding: 25px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.tbTexts {
    width: 100%;
    height: 75%;
    margin-top: 5px;
    border-style: inset;
    border-radius: 15px;
    border-color: aliceblue;
    color: black;
    background-color: ghostwhite;
}

.tra {
    width: 100%;
    height: 20px;
    border-style: solid;
    border-color: aliceblue;
    border-width: thin;
    background-color: transparent;
}

.trb {
    width: 100%;
    height: 400px;
    border-style: solid;
    border-color: aliceblue;
    border-width: thin;
    background-color: transparent;
}

.tda {
    width: 25%;
    vertical-align: top;
    padding: 10px;
}

.tbFiles {
    width: 100%;
    height: 80px;
    margin-top: 10px;
    border-style: solid;
    border-width: thin;
    border-radius: 15px;
    border-color: aliceblue;
    color: black;
    background-color: ghostwhite;
}

    .tbFiles .tr {
        height: 20px;
    }

.radio-group {
    color: lightpink;
    margin-left: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.translation-button {
    padding: 5px 20px;
    font-size: 14px;
    background-color: royalblue;
    color: white;
    border-radius: 5px;
}

.get-file-button {
    padding: 5px 20px;
    font-size: 14px;
    background-color: transparent;
    color: darkblue;
    border-radius: 5px;
}

.Trns-form-control-me {
    height: 23px;
    padding: 3px 3px;
    border-radius: 5px;
    border-style: inset;
    border-width: 2px;
    border-color: white;
    font-size: 10px;
    color: black;
}

.Tax_Code {
    width: 40%;
    float: left;
    height: 23px;
    padding: 3px 5px;
    border-radius: 5px;
    border-style: inset;
    border-width: 2px;
    border-color: white;
    font-size: 11px;
    color: black
}

.Tax_Validation {
    width: 58%;
    float: right;
    height: 23px;
    padding: 3px 5px;
    border-radius: 5px;
    border-style: inset;
    border-width: 2px;
    border-color: white;
    font-size: 11px;
    color: black
}

.ENG_Control {
    width: 100%;
    height: 23px;
    padding: 3px 5px;
    border-radius: 5px;
    border-style: inset;
    border-width: 2px;
    border-color: white;
    font-size: 11px;
    color: black;
    direction: ltr;
}


.ENGB_Control {
    width: 100%;
    height: 23px;
    padding: 3px 5px;
    border-radius: 5px;
    border-style: inset;
    border-width: 2px;
    border-color: white;
    font-size: 11px;
    color: black;
    direction: ltr;
    text-transform: none !important;
}

.ARB_Control {
    width: 100%;
    height: 23px;
    padding: 3px 5px;
    border-radius: 5px;
    border-style: inset;
    border-width: 2px;
    border-color: white;
    font-size: 11px;
    color: black;
    direction: rtl;
}

.PhonCode {
    width: 40%;
    float: left;
    height: 23px;
    padding: 3px 5px;
    border-radius: 5px;
    border-style: inset;
    border-width: 2px;
    border-color: white;
    font-size: 11px;
    color: black
}

.PhonText {
    width: 58%;
    float: right;
    height: 23px;
    padding: 3px 5px;
    border-radius: 5px;
    border-style: inset;
    border-width: 2px;
    border-color: white;
    font-size: 11px;
    color: black
}

.PhonNmbr {
    height: 23px;
    border-radius: 5px;
    border-style: inset;
    border-width: 2px;
    border-color: white;
    font-size: 10px;
    color: black;
}

.profile-image {
    border-radius: 15px;
    width: 60px;
    height: 90px;
    border: 2px inset #999;
}

.gridWrapper {
    border-radius: 10px;
    border: 2px inset whitesmoke;
}

.FaceStyle {
    width: calc(100% - 258px);
    max-width: calc(100% -258px);
    height: 78vh;
    max-height: 78vh;
    background-color: #333;
    padding: 5px 5px;
    color: white;
    float: right;
    margin-right: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#pbiBox {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.iframStyle {
    border: inset 2px gray;
    border-radius: 10px;
    background-color: transparent;
    width: 1152px;
    height: 580px;
}

.tt-date-input {
    width: 160px;
    background: #DAE9F8;
    color: darkblue;
    border: 1px solid #3a3a3a;
    border-radius: 5px;
    height: 20px;
    padding: 5px
}

.btnA {
    width: 200px;
    height: 25px;
    padding: 5px 5px;
    cursor: pointer;
    border: 2px ridge white;
    border-radius: 5px;
    background: transparent;
    color: white;
    font-family: Courier New, Courier, monospace;
    font-size: 12px
}

    .btnA:hover {
        opacity: 0.6;
    }

#registerMain {
    width: 100%;
    max-width: 100%;
    height: 85vh;
    max-height: 85vh;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    gap: 10px
}

#registerLeft {
    width: 47%;
    height: 82vh;
    border: 2px inset white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 5px 5px
}

#registerRigt {
    width: 52%;
    height: 82vh;
    border: 2px inset white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 5px
}

.registerBlock {
    width: 100%;
    height: 30px;
    border: 2px inset white;
    border-radius: 5px;
    display: flex;
    gap: 5px;
    margin: 2px 0px 0px 0px;
    align-items: center;
    padding: 5px 5px;
}

.registerCalender {
    width: 100%;
    border: 2px inset white;
    border-radius: 5px;
    display: flex;
    gap: 10px;
    margin: 5px 0;
    align-items: center;
    padding: 5px
}

.registerLable {
    width: 200px;
    height: 24px;
    color: black;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 10px;
    text-align: left;
}

.tt-date-input {
    width: 160px;
    background: #DAE9F8;
    color: darkblue;
    border: 1px solid #3a3a3a;
    border-radius: 5px;
    height: 24px;
    padding: 5px;
    cursor: pointer;
}

#registerMain, #registerLeft, .registerCalender {
    overflow: visible;
}

#imageBlock {
    width: 100%;
    height: 200px;
    border: 2px inset white;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin: 5px 0;
    padding: 5px
}

#imgUserPict {
    width: 120px;
    height: 180px;
    border: 2px inset white;
    border-radius: 5px;
    background-color: cornflowerblue;
}

.userPict {
    width: 80px;
    height: 120px;
    border: 2px inset white;
    border-radius: 5px;
    background-color: cornflowerblue;
}

.img_Get {
    display: block;
    width: 100px;
    height: 25px;
    padding: 5px 5px;
    background-color: #f8f9fa;
    border: 1px inset white;
    border-radius: 5px;
    font-size: 9px;
    text-align: center;
    cursor: pointer;
    color: #007bff;
    transition: all 0.3s ease-in-out;
}

    .img_Get:hover {
        background-color: #e9f5ff;
        border-color: #0056b3;
        color: #0056b3;
    }

    .img_Get:focus {
        outline: none;
        border-color: #0056b3;
        box-shadow: 0 0 5px #007bff;
    }


.link-contrast {
    width: 95%;
    max-width: 200px;
    height: 28px;
    color: #fff;
    text-decoration: none;
    margin-top: 5px;
    padding: 2px 4px;
    transition: background .15s, border-color .15s, box-shadow .15s;
    background-color: #0070C0;
    border: 1px solid white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: normal;
    font-size: 11px
}

    .link-contrast:hover,
    .link-contrast:focus {
        background: rgba(255,255,255,.15);
        border-bottom-color: #fff;
    }

    .link-contrast:visited {
        color: #fff;
    }

    .link-contrast:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(255,255,255,.35);
    }

    .link-contrast.aspNetDisabled {
        opacity: .6;
        pointer-events: none;
    }

    .link-contrast.active {
        background: #ffcc00;
        border: 2px inset white;
        color: darkblue;
        font-weight: bold;
    }


#entryBar {
    height: 35px;
    max-height: 35px;
    width: 100%;
    max-width: 100%;
    margin: 5px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px inset white;
    border-radius: 5px;
}

    #entryBar #btnAddn {
        width: 20%;
        background-color: darkBlue;
        height: 30px;
        color: white;
    }

    #entryBar #btnEdit {
        width: 20%;
        background-color: darkgreen;
        height: 30px;
        color: white;
    }

    #entryBar #btnUndo {
        width: 20%;
        background-color: lime;
        height: 30px;
        color: white;
    }

    #entryBar #btnSave {
        width: 20%;
        background-color: orange;
        height: 30px;
        color: white;
    }

    #entryBar #btnDele {
        width: 20%;
        background-color: red;
        height: 30px;
        color: white;
    }

    #entryBar #btnPrnt {
        width: 20%;
        background-color: DarkSlateGray;
        height: 30px;
        color: white;
    }



/* Wrapper (outer) */
.company-combo {
    display: block;
    max-width: 250px; /* adjust to your layout */
    --combo-h: 24px; /* control height variable */
}

    /* Input area */
    .company-combo .rcbInner {
        min-height: var(--combo-h);
        border: 1px solid #c9c9c9;
        border-radius: 8px;
        background: #fff;
        transition: border-color .15s ease, box-shadow .15s ease;
    }

    .company-combo .rcbInput {
        padding: 6px 36px 6px 10px; /* room for arrow */
        font: 500 14px/1.2 "Segoe UI", Tahoma, Arial, sans-serif;
        color: #222;
    }

    .company-combo .rcbEmptyMessage { /* placeholder style */
        color: #888 !important;
        font-weight: 400;
    }

    /* Arrow button */
    .company-combo .rcbArrow {
        width: 28px;
        right: 6px; /* keep arrow inside rounded area */
        border-left: 0;
        opacity: .75;
    }

        .company-combo .rcbArrow:before { /* optional: use a ▼ glyph */
            content: "▾";
            position: absolute;
            left: 8px;
            top: 50%;
            transform: translateY(-50%);
        }

    /* Hover / focus states */
    .company-combo .rcbHovered .rcbInner,
    .company-combo .rcbFocused .rcbInner {
        border-color: #3b82f6; /* blue border */
        box-shadow: 0 0 0 3px rgba(59,130,246,.15);
    }

    /* Disabled */
    .company-combo .rcbDisabled .rcbInner {
        background: #f5f5f5;
        color: #999;
        border-color: #e0e0e0;
    }

/* Dropdown panel (popup) */
.company-combo-dd {
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    overflow: hidden; /* clip rounded corners */
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    min-width: 600px;
    max-width: 800px;
}

    /* Items */
    .company-combo-dd .rcbList {
        max-height: 260px; /* scroll after this height */
    }

    .company-combo-dd .rcbItem,
    .company-combo-dd .rcbHovered {
        padding: 8px 10px;
        font-size: 14px;
    }

    .company-combo-dd .rcbHovered { /* on mouse hover */
        background: #f0f6ff;
    }

    .company-combo-dd .rcbSelected { /* when selected in list */
        background: #e6f0ff;
        font-weight: 600;
    }

html[dir="rtl"] .company-combo .rcbInput {
    padding: 6px 10px 6px 36px;
}

html[dir="rtl"] .company-combo .rcbArrow {
    left: 6px;
    right: auto;
}
