:root {
    --cbiDarkGray: #4d4d4d;
    --cbiLightGray: #d1d1d1;
    --cbiGold: #ffb000;
    --cbiBlue: #001b4d;
    --fieldColor: #000;
    --buttonColor: #000;
    --sliderColor: #000;
    --cbiDLightGray: #d1d1d1;
    --LightBlue: #a8b4e5;
    --cbiGrey: #d8dee9;
}
/*********************************************************
CORE CSS
**********************************************************/
body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
footer {
    margin-top: auto;
}
.ck-editor__editable_inline {
    min-height: 250px;
}
.autocomplete-suggestions {
    border: 1px solid #999;
    background: #fff;
    overflow: auto;
    cursor: pointer;
}
.autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
    font-size: 45px;
}
.autocomplete-selected {
    background: #f0f0f0;
}
.autocomplete-suggestions strong {
    font-weight: normal;
    color: #3399ff;
}
.autocomplete-group {
    padding: 2px 5px;
}
.autocomplete-group strong {
    display: block;
    border-bottom: 1px solid #000;
}
.autocomplete-no-suggestion a {
    color: #9a9a9a;
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
    font-size: 45px;
}
.autocomplete-no-suggestion a:hover {
    text-decoration: none;
    color: #333333;
    opacity: 0.7;
}
.fa-notification {
    font-size: 2.5rem !important;
    position: absolute;
    top: -10px;
    right: 5px;
}
.fa-rotate {
    transform: rotate(180deg);
}
progress {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    appearance: none;
    height: 0.5rem;
    overflow: hidden;
    border: 0;
    border-radius: 0.25rem;
    background-color: var(--cbiGrey);
    color: var(--cbiBlue);
    width: 160px;
}
progress::-moz-progress-bar {
    background-color: var(--cbiBlue);
}
progress::-webkit-progress-value {
    background-color: var(--cbiBlue);
}
::-webkit-progress-bar {
    background-color: var(--cbiGrey);
}
#toast-container>div {
    opacity: 1;
    font-family: "Roboto", sans-serif;
    border: 2px solid #ccc !important;
}
/*********************************************************
DATATABLES
**********************************************************/
th.dtr-control:before,
td.dtr-control:before {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    border: unset !important;
    box-shadow: unset !important;
    height: 1.1em !important;
    width: 1.1em !important;
}
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
    content: "\f107";
    line-height: 1.2em;
}
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th.dtr-control:before {
    content: "\f106";
    line-height: 1.1em;
}
div.dataTables_wrapper div.dataTables_info {
    white-space: unset;
}
.dataTables_info {
    margin-left: auto;
}
.dt-buttons {
    float: right;
}
.dt-buttons .dt-button {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.dt-buttons .dt-button {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.dt-buttons .dt-button:hover {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37;
}
div.dataTables_wrapper div.dataTables_length select {
    margin: 0 8px;
}
table.dataTable {
    margin-top: 0 !important;
}
.tableActionsColumn {
    width: 0px;
    white-space: nowrap;
}
.dataTables_length {
    display: inline-block;
    margin-right: 1.5rem;
}
.ajax-file-upload-progress,
.ajax-file-upload-filename {
    width: 100% !important;
}
.ajax-file-upload-statusbar {
    padding: 10px;
    max-width: 100% !important;
    margin: 0;
}
/** DatePicker **/
.form-control.datepicker {
    height: 41px;
    width: 100%;
    margin: 0;
}
/*!********************************************************
AJAX Loader
**********************************************************/
.ajax_loader2 {
    display: none;
}
.ajax_loader2 .animation {
    display: inline-block;
}
.ajax_loader2 .label {
    color: #343434;
    display: inline-block;
    font-weight: bold;
    font-size: 1.5rem;
    vertical-align: middle;
    margin-top: -80px;
    padding-left: 10px;
}
.ajax_loader2 .lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.ajax_loader2 .lds-ripple div {
    position: absolute;
    border: 4px solid #343434;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.ajax_loader2 .lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}
/*!********************************************************
ANIMATIONS
**********************************************************/
.fade-in {
    animation: 1.6s fadeIn
}
@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}
/*********************************************************
FORM RADIO/CHECKBOX
**********************************************************/
input.form-control[type="radio"],
input.form-control[type="checkbox"] {
    display: none;
    margin: 0;
}
input.form-control[type="radio"]+label:before {
    border-radius: 100%;
}
input.form-control[type="radio"]+label:before,
input.form-control[type="checkbox"]+label:before {
    content: "";
    background: #f4f4f4;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    position: relative;
    margin: -2px 0.8rem 0 0;
    vertical-align: middle;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
    margin-top: -2px;
}
input.form-control[type="radio"]:checked+label:before,
input.form-control[type="checkbox"]:checked+label:before {
    background-color: var(--fieldColor);
    box-shadow: inset 0 0 0 4px #f4f4f4;
}
input.form-control[type="radio"]:focus+label:before,
input.form-control[type="checkbox"]:focus+label:before {
    outline: none;
    border-color: var(--fieldColor);
}
input.form-control[type="radio"]:selected:disabled+label:before,
input.form-control[type="checkbox"]:selected:disabled+label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}
input.form-control[type="radio"]+label:empty:before,
input.form-control[type="checkbox"]+label:empty:before {
    margin-right: 0;
}
.cursor-pointer {
    cursor: pointer;
}
.copy-button {
    font-size: 12px;
    padding: .3rem .75rem;
}
.public_redirect {
    font-size: 1.2;
    color: #000;
}
.public_redirect:hover {
    color: var(--cbiBlue);
    text-decoration: none;
}
.resume-modal {
    height: 94vh;
}

@charset "utf-8";
/*********************************************************
RESETS
**********************************************************/
:root {
    --PMTMblue: #8bb5ba;
    --PMTMpurple: #4b062c;
    --mediumGrey: #545b62;
    --lightGrey: #eaeaea;
}
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(7, 72, 128, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(7, 72, 128, 1);
    -webkit-box-shadow: inset 0 0 6px rgba(7, 72, 128, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(7, 72, 128, 0.1);
}
html,
body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    background-repeat: no-repeat;
    background-position: top center;
}
body {
    background-color: #ffffff;
    line-height: 1.5;
    color: #555;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}
p,
h1,
h2,
h3,
h4 {
    margin: 0;
    padding: 0;
}
.row {
    margin-left: 0;
    margin-right: 0;
}
.container {
    padding: 0 15px;
    width: 1400px;
    max-width: 100%;
}
img {
    max-width: 100%;
}
.no-padding {
    padding: 0;
}
.no-padding-left {
    padding-left: 0;
}
.no-padding-right {
    padding-right: 0;
}
.mainBody {
    padding: 2em 0;
}
/*********************************************************
DEFAULTS
**********************************************************/
p {
    font-family: "Roboto", sans-serif;
    color: #5a5a5a;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}
a {
    color: var(--PMTMblue);
    font-family: "Lato", sans-serif;
}
a:hover {
    color: var(--PMTMpurple);
    text-decoration: none;
}
h1 {
    font-size: 2rem;
    color: #111111;
    font-weight: 700;
}
h2 {
    font-size: 1.2rem;
    transition: 0.3s;
    text-align: center;
}
h3 {
    font-size: 1rem;
    max-width: 100%;
    font-weight: 700;
    text-transform: uppercase;
}
h3.alt {
    background: var(--PMTMpurple);
}
h4 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    padding: 0;
    text-transform: uppercase;
    color: var(--PMTMblue);
    font-weight: bold;
}
.main-container {
    padding: 2em 15px;
    background: #fff;
}
.dataTable {
    width: 100% !important;
}
.panel {
    margin-top: 2.5rem;
    box-shadow: 0px 0px 10px 2px rgba(7, 72, 128, 0.09);
}
.bg-black {
    background-color: #000;
}
/*********************************************************
BUTTONS
**********************************************************/
.btn {
    font-size: 1.5rem;
    position: relative;
    padding: 0.4rem 1.5rem;
    transition: 0.3s;
    text-transform: uppercase;
}
.btn .fas {
    margin-right: 5px;
}
.btn-primary {
    color: #fff;
    background: var(--PMTMblue);
}
.btn-secondary {}
.btn-slim {
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
    margin-left: 0.5rem;
}
.btn-slim:hover {
    border-color: var(--PMTMpurple);
}
.btn-form {
    font-size: 2rem;
    padding: 0.5rem 5rem;
    margin: 0.5rem 0;
    border: 3px solid var(--PMTMpurple);
    color: var(--PMTMpurple);
    background: none;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
}
.btn-form:after {
    content: "";
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.btn-form-primary {
    overflow: hidden;
}
.btn-form-primary:after {
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    background: var(--PMTMpurple);
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.btn-form-primary:hover,
.btn-form-primary:active {
    color: #fff;
}
.btn-form-primary:hover:after {
    height: 260%;
    opacity: 1;
}
.btn-form-primary:active:after {
    height: 400%;
    opacity: 1;
}
.btn-default {
    background-color: transparent;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    padding: 0.6em 3em;
    transition: 0.3s;
    min-width: 185px;
    border: 2px solid #000000;
    color: #000000;
    letter-spacing: 1px;
}
.btn-default:hover {
    background-color: #000;
    color: #fff;
    border: 2px solid #000000;
    transition: 0.3s;
}
.btn-black {
    background-color: #000;
    border: 2px solid #000;
    color: #fff;
    border-radius: 23px;
    font-weight: normal;
}
.btn-black:hover {
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
}
.btn-black:hover>img {
    transition: 0.3s;
    filter: invert(100%) sepia(48%) saturate(9%) hue-rotate(56deg) brightness(99%) contrast(100%);
}
.invert-svg {
    filter: invert(50%) sepia(48%) saturate(9%) hue-rotate(56deg) brightness(99%) contrast(100%);
}
.download-resume {
    vertical-align: text-bottom;
}
.w-49 {
    width: 49%;
}
/*********************************************************
NAV
**********************************************************/
.navbar-internal {
    background-image: url(/assets/img/grey-box.jpg);
    background-position: top right;
    background-repeat: no-repeat;
}
.navbar-logo {
    position: absolute;
    top: 12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.navbar-collapse {
    position: absolute;
    top: 80px;
    background-color: white;
    z-index: 999;
    padding: 20px;
    min-width: 280px;
    border: 1px solid #707070;
}
/*********************************************************
HEADER
**********************************************************/
.navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    padding: 0.5rem 1rem;
    background-color: transparent;
}
.navbar a,
.navbar-light .navbar-nav .nav-link {
    color: #070707;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}
.navbar .fa-search {
    color: #070707;
    font-size: 20px;
}
.bg-nav-gray {
    background-color: #f6f6f6;
}
.model-nav {
    margin: 0 -20px;
    padding: 10px 20px 5px 20px;
}
/*********************************************************
FOOTER
**********************************************************/
footer h6 {
    color: #a7a7a7;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 1px;
}
footer h6 a {
    color: #a7a7a7;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 1px;
}
/*********************************************************
FORMS
**********************************************************/
label {
    font-size: 12px;
    font-family: "Roboto", sans-serif;
    margin: 0 0.5rem 1rem 0rem;
    color: #5a5a5a;
    font-weight: 500;
    letter-spacing: 2px;
}
.upload-label {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    margin: 0 0.5rem 0.5rem 0rem;
    color: #5a5a5a;
    font-weight: 500;
}
.uplaod-input {
    border-radius: 28px;
    text-align: center;
    padding-bottom: 10px;
}
.uplaod-input::placeholder {
    font-size: 12px;
    font-family: "Roboto", sans-serif;
    color: #5a5a5a;
    font-weight: 500;
}
.form-control {
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    color: #5a5a5a;
    font-weight: 500;
    background-color: #f5f5f5;
    border: unset;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #5a5a5a;
}
.select2.select2-container {
    width: 100% !important;
}
.select2-container .select2-selection--single {
    height: calc(1.5em + 0.75rem + 2px) !important;
}
.select2-selection.select2-selection--single {
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    color: #5a5a5a;
    font-weight: 500;
    background-color: #f5f5f5;
    border: unset;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 80%;
}
.select2-container .select2-selection--single {
    height: auto;
    padding: 0.5rem;
}
.select {
    padding: 0.7rem;
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    width: 100%;
}
#status_select {
    display: inline-block;
    width: auto;
}
#status_filter {
    display: inline-block;
}
#status_filter label {
    font-weight: normal;
}
.ajax-upload-dragdrop {
    border: unset;
    color: #5a5a5a;
    text-align: center;
    vertical-align: middle;
    width: 600px;
    background-color: #f5f5f5;
    border-radius: 28px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
}
.ajax-file-upload {
    all: unset;
    display: inline-block;
    vertical-align: text-top;
    margin: 0 5px;
    display: none;
}
.label-big {
    font-size: 16px;
}
.upload-browse {
    color: #5a5a5a;
    margin-right: 10px;
    font-size: 20px;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 0px 0 20px;
}
.upload-browse:hover {
    color: #000;
}
.upload-browse i {
    vertical-align: text-bottom;
}
.upload-browse span {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 12px;
}
.upload-browse span i {
    font-size: 16px;
}
.modeltalentImg img {
    aspect-ratio: 2/3;
    object-fit: cover;
    object-position: center;
    width: 100%;
}
/*********************************************************
AUTOCOMPLETE
**********************************************************/
.autocompleteMenuContainer {
    width: 400px;
    margin: 0;
    padding: 0;
    position: relative;
}
.ui-menu {
    list-style: none;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    max-height: 250px;
    overflow-y: scroll;
    border: none;
}
.ui-widget.ui-widget-content {
    border: none;
}
.ui-menu-item {
    font-size: 1.3em;
    background-color: var(--PMTMpurple);
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    font-weight: normal;
    width: 100%;
    transition: 0.3s;
}
.ui-menu-item:hover {
    background-color: var(--PMTMblue);
    cursor: pointer;
}
.ui-menu .ui-menu-item-wrapper {
    padding: 0.3em 0.8em;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: none;
    background: var(--PMTMblue);
    font-weight: normal;
    color: #ffffff;
    margin: 0;
    transition: 0.3s;
}
/*********************************************************
CUSTOM CHECKS AND RADIOS
**********************************************************/
/* Radio and checkmark container */
.form-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 1rem;
    margin-right: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    float: left;
}
/* Hide the browser's default radio button */
.form-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
/* Create a custom radio button */
.form-radio {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}
/* Create a custom checkbox */
.form-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}
/* On mouse-over, add a grey background color */
.form-container:hover input~.form-checkmark,
.form-container:hover input~.form-radio {
    background-color: #ccc;
}
/* When the radio button is checked, add a blue background */
.form-container input:checked~.form-checkmark,
.form-container input:checked~.form-radio {
    background-color: var(--PMTMpurple);
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.form-checkmark:after,
.form-radio:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the indicator (dot/circle) when checked */
.form-container input:checked~.form-checkmark:after,
.form-container input:checked~.form-radio:after {
    display: block;
}
/* Style the indicator (dot/circle) */
.form-container .form-radio:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
/* Style the checkmark/indicator */
.form-container .form-checkmark:after {
    left: 10px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*********************************************************
CUSTOM SEARCH AND TEXT INPUTS
**********************************************************/
.input {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 1rem 0.5rem;
    max-width: 100%;
    width: calc(100% - 2em);
    vertical-align: top;
    font-size: 1.5rem;
}
.input__field {
    position: relative;
    display: block;
    float: right;
    padding: 0.8em;
    width: 60%;
    border: none;
    border-radius: 0;
    background: #f0f0f0;
    color: #aaa;
    font-weight: 400;
    -webkit-appearance: none;
    /* for box shadows to show on iOS */
}
.input__field:focus {
    outline: none;
}
.input__label {
    display: inline-block;
    float: right;
    margin: 0;
    padding: 0 1em;
    width: 40%;
    color: #696969;
    font-weight: bold;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.input__label-content {
    position: relative;
    display: block;
    padding: 1.6em 0;
    width: 100%;
}
.input__label-content span {
    font-weight: normal;
}
.graphic {
    position: absolute;
    top: 0;
    left: 0;
    fill: none;
}
.icon {
    color: #ddd;
    font-size: 150%;
}
/* Makiko */
.input--makiko {
    overflow: hidden;
    background: var(--PMTMpurple);
    border: 1px solid var(--PMTMpurple);
}
.input__field--makiko {
    width: 100%;
    background: transparent;
    color: var(--PMTMblue);
    z-index: 10;
    font-weight: 500;
}
.input__label--makiko {
    position: absolute;
    width: 100%;
    text-align: left;
    pointer-events: none;
    color: #fff;
}
.input__label--makiko::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    top: 45%;
    left: 20px;
    background: url("/img/search.svg") no-repeat center center;
    background-size: 100%;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.input__label-content--makiko {
    display: block;
    padding: 1.5em 0 0 4rem;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.input__field--makiko:focus+.input__label--makiko::before,
.input--filled .input__label--makiko::before {
    -webkit-transform: scale3d(38, 38, 1);
    transform: scale3d(38, 38, 1);
}
.clearBtn {
    display: none;
}
.input--filled .clearBtn {
    display: block;
    color: #fff;
    position: absolute;
    font-size: 2rem;
    top: 0;
    right: 0;
    height: 100%;
    width: 60px;
    text-align: center;
    vertical-align: middle;
    line-height: 215%;
    cursor: pointer;
    z-index: 400;
}
/* Hoshi */
.input--hoshi {
    overflow: hidden;
}
.input__field--hoshi {
    margin-top: 1em;
    padding: 0.85em 0.15em;
    width: 100%;
    background: transparent;
    color: #595f6e;
}
.input__label--hoshi {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 0.25em;
    width: 100%;
    height: calc(100% - 1em);
    text-align: left;
    pointer-events: none;
}
.input__label-content--hoshi {
    position: absolute;
}
.input__label--hoshi::before,
.input__label--hoshi::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 10px);
    border-bottom: 1px solid #b9c1ca;
}
.input__label--hoshi::after {
    margin-top: 2px;
    border-bottom: 4px solid red;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}
.input__label--hoshi-color-1::after {
    border-color: var(--PMTMpurple);
}
.input__label--hoshi-color-2::after {
    border-color: hsl(160, 100%, 50%);
}
.input__label--hoshi-color-3::after {
    border-color: hsl(20, 100%, 50%);
}
.input__field--hoshi:focus+.input__label--hoshi::after,
.input--filled .input__label--hoshi::after {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.input__field--hoshi:focus+.input__label--hoshi .input__label-content--hoshi,
.input--filled .input__label-content--hoshi {
    -webkit-animation: anim-1 0.3s forwards;
    animation: anim-1 0.3s forwards;
}
.ajax-upload-dragdrop {
    width: 100% !important;
}
#search .form-group {
    margin-bottom: 0.5rem;
}
#search .form-control {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    color: #333;
    font-weight: 400;
    background-color: #f5f5f5;
    border: unset;
    border-radius: 0;
    height: calc(2.2em + 0.75rem + 2px);
}
#search h5 {
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    color: #5a5a5a;
    font-weight: 400;
}
#subcategory {
    border-radius: 21px;
    padding: 5px 50px;
    text-align: center;
}
.internal-main .cat-label {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    color: #5a5a5a;
    font-weight: 500;
    letter-spacing: 2px;
}
@-webkit-keyframes anim-1 {
    50% {
        opacity: 0;
        -webkit-transform: translate3d(1em, 0, 0);
        transform: translate3d(1em, 0, 0);
    }
    51% {
        opacity: 0;
        -webkit-transform: translate3d(-1em, -40%, 0);
        transform: translate3d(-1em, -40%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, -40%, 0);
        transform: translate3d(0, -40%, 0);
    }
}
@keyframes anim-1 {
    50% {
        opacity: 0;
        -webkit-transform: translate3d(1em, 0, 0);
        transform: translate3d(1em, 0, 0);
    }
    51% {
        opacity: 0;
        -webkit-transform: translate3d(-1em, -40%, 0);
        transform: translate3d(-1em, -40%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, -40%, 0);
        transform: translate3d(0, -40%, 0);
    }
}
/*********************************************************
Homepage
**********************************************************/
.instagram-feed {
    background-color: #f6f6f6;
}
.home-main {
    background-image: url("/assets/img/PMTM_Stacked_Black.png");
    background-position: top right;
    background-attachment: fixed;
    background-repeat: no-repeat;
    margin-top: -107px;
    padding-top: 225px;
}
.home-main h6,
.home-main h6 a {
    color: #070707;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.home-main .carousel-indicators li {
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #070707;
    width: unset;
    padding: 16px 0;
    background-color: transparent;
}
.home-slider-control {
    padding-top: 27%;
    white-space: nowrap;
}
.instagram-feed span {
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    vertical-align: bottom;
}
.instagram-feed img {
    vertical-align: text-bottom;
}
/*********************************************************
INTERNAL
**********************************************************/
.internal-main {
    min-height: 87vh;
}
.internal-main h1 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 35px;
    font-weight: normal;
    color: #111111;
}
.internal-main h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 28px;
    font-weight: normal;
    color: #111111;
}
.internal-main h4 {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #5a5a5a;
}
.internal-main h6 a {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #070707;
    letter-spacing: 0.8px;
}
.open-call.internal-main h1 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 45px;
    font-weight: bold;
    color: #16bac5;
}
.new-auditions.internal-main h1 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 45px;
    font-weight: bold;
    color: #16bac5;
}
.new-auditions.internal-main p {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #000;
}
.new-auditions.internal-main h5 {
    font-family: "caflisch-script-pro", sans-serif;
    font-size: 28px;
    font-weight: normal;
    color: #16bac5;
    line-height: 1;
}
.new-auditions.internal-main h6 {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #5a5a5a;
}
.new-auditions.internal-main .auditions-new p {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #5A5A5A;
}
.new-auditions.internal-main .auditions-new h5 {
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    font-weight: bold;
    font-style: italic;
    color: #2CC0CB;
    line-height: 1;
}
.new-auditions.internal-main .auditions-new h6 {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #000;
}
.new-auditions.internal-main .auditions-new h1 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 35px;
    font-weight: 900;
    color: #2CC0CB;
}
.audition-form-bg {
    background-color: rgba(20, 20, 20, 0.81);
    padding: 25px;
    border-radius: 12px;
    position: absolute;
    bottom: 0;
}
.auditions-new .form-control {
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-weight: 400;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 4px;
}
.auditions-new .btn-default {
    background-color: #4CDAE5;
    border: 2px solid #4CDAE5;
    color: #fff;
}
.modelSlider img {
    height: 260px;
}
.favoritesSlider img {
    height: 385px;
    width: auto !important;
}
/*********************************************************
CLIENTS
**********************************************************/
.client-left {
    padding-left: 90px;
}
.client-right {
    padding-left: 160px;
}
/*********************************************************
ABOUT US
**********************************************************/
.internal-main.about-us {
    min-height: unset;
}
.about-us h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 28px;
    font-weight: normal;
    color: #111111;
}
/*********************************************************
AUDITIONS
**********************************************************/
.auditions h6 {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #111111;
}
/*********************************************************
TALENT
**********************************************************/
.modeltalentImg {
    transition: 0.3s;
    margin-bottom: 0.77em;
    padding: 0 0.4em;
}
.hoverBox {
    position: relative;
}
.modelInfoBox {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    transition: 0.3s;
    transition: all 0.2s ease-in-out;
    height: 100%;
    width: 100%;
    transform: scale(0);
    margin: auto;
}
.modelInfoBox p {
    color: #fff;
}
.modeltalentImg:hover .modelInfoBox {
    transition: 0.3s;
    transform: scale(1);
    color: #ffffff;
}
.modelInfoBox h6 {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: normal;
    color: #fff;
}
.model-profiles h4 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #5a5a5a;
}
.model-stats h6 {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #989898;
}
.model-stats h6 span {
    color: #5a5a5a;
}
.model-stats p {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #989898;
}
.model-stats p a {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #070707;
}
.model-stats p a:hover {
    text-decoration: underline;
}
.profile-back {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #5a5a5a;
}
.slick-dots li button:before {
    color: #b8b8b8;
    font-size: 13px;
}
.slick-dots li.slick-active button:before {
    color: #6b6b6b;
}
.slick-list {
    padding-bottom: 10px;
}
.profile-nav .nav-item {
    width: 100%;
}
.profile-nav a {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #989898;
    cursor: pointer;
}
.profile-nav a.active {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #5a5a5a;
}
.profile-nav img {
    vertical-align: text-bottom;
    margin-right: 15px;
    width: 22px;
}
.aboutBottomSlider {
    margin-top: 4rem;
}
.families.model-profiles img {
    object-fit: unset;
    object-position: center center;
    aspect-ratio: unset;
    width: 100%;
}
.youtube-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.slick-slider-init {
    visibility: hidden;
}
.marquee {
    overflow: hidden;
}
.marquee img {
    width: auto;
    height: 250px;
}
.tall-marquee img {
    width: auto;
    height: 400px;
}
#cat-nav {
    position: absolute;
    top: 5px;
    left: 0px;
    border: 2px #000 solid;
    z-index: 999;
    background-color: #fff;
    padding: 10px 40px 10px 20px;
}
#cat-nav ul {
    padding-left: 0px;
    list-style: none;
    margin-bottom: 0;
}
#cat-nav ul li {
    padding: 5px 0;
}
#cat-nav ul li a {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #5a5a5a;
}
.cat-nav {
    letter-spacing: 1px;
    cursor: pointer;
}
#downloadModal p {
    font-family: "Roboto", sans-serif;
    color: #989898;
    font-weight: 500;
    font-size: 16px;
}
#search_filter input {
    background-color: transparent;
    border: 1px solid #707070;
    border-radius: 21px;
    padding: 10px 20px;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
}
#search_filter input::placeholder {
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
}
#filter-nav {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: rgba(255, 255, 255, .95);
    z-index: 999;
    border: 1px solid #707070;
    padding: 20px;
    border-radius: 9px;
}
.filter-nav {
    color: #5A5A5A;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    vertical-align: middle;
}
.filter-nav img {
    vertical-align: bottom;
    width: 28px;
}
#search_filter label {
    color: #707070;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    letter-spacing: 0;
}
#search_filter .clear-filter {
    color: #707070;
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
}
#search_filter .checkbox {
    margin: 0.5rem;
}
#search_filter .checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}
#search_filter .checkbox input[type="checkbox"]+.checkbox-label:before {
    content: "";
    background: #f4f4f4;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    position: relative;
    margin-right: .75rem;
    vertical-align: bottom;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}
#search_filter .checkbox input[type="checkbox"]:checked+.checkbox-label:before {
    background-color: #707070;
    box-shadow: inset 0 0 0 3px #f4f4f4;
}
#search_filter .checkbox input[type="checkbox"]:focus+.checkbox-label:before {
    outline: none;
    border-color: var(--fieldColor);
}
#search_filter .checkbox input[type="checkbox"]:disabled+.checkbox-label:before {
    box-shadow: inset 0 0 0 3px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}
#search_filter .checkbox input[type="checkbox"]+.checkbox-label:empty:before {
    margin-right: 0;
}
.cart-icon {
    width: 31px;
}
.cart-number {
    position: absolute;
    bottom: 0px;
    right: -12px;
    border-radius: 50%;
    border: 1px solid #000;
    background-color: #fff;
    text-align: center;
}
.cart-number p {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 10px;
    line-height: 1.5;
    width: 17px;
    height: 17px;
}
.favorites-divider {
    border-bottom: 1px solid #E8E8E8;
    width: 100%;
}
.favorites-cart h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 2px;
    color: #5A5A5A;
}
.delete_item {
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 22px;
    background-color: #fff;
    left: unset;
    padding: 2px 6px;
    border-radius: 50%;
    border: 1px solid black;
}
.delete_item i {
    background: radial-gradient(white 50%, transparent 50%);
    color: #be6868;
    height: 1rem;
    width: 1rem;
    font-size: 1rem;
    font-weight: 100;
    text-align: center;
}
.fa-trash-alt:before {
    content: "\f2ed";
}
#favoritesModal h2 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 35px;
    font-weight: normal;
    color: #111111;
    text-transform: uppercase;
}
.shared-link {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #5A5A5A;
    background-color: #F6F6F6;
    border: 1px solid #707070;
    text-align: left;
    padding: 15px;
    position: relative;
    cursor: pointer;
}
.shared-link i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
    font-size: 25px;
}
.favorites h3 {
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #000000;
}
.favorites .model-stats h6 {
    color: #5A5A5A;
    font-weight: 500;
}
.favorites .slick-next,
.favorites .slick-prev {
    display: flex;
    justify-content: center;
    align-items: center;
}
.favorites .slick-prev:before,
.favorites .slick-next:before {
    color: #000;
    font-size: 30px;
}
.favorite_item {
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, .5);
    left: unset;
    padding: 3px 3px;
    border-radius: 50%;
}
.favorite_item i {
    background: transparent;
    color: #fff;
    font-size: 20px;
    text-align: center;
}
.profile-fav .favorite_item {
    cursor: pointer;
    position: absolute;
    top: -35px;
    right: 2px;
    background-color: rgba(0, 0, 0, .5);
    left: unset;
    padding: 3px 3px;
    border-radius: 50%;
}
.favorite_modal {
    cursor: pointer;
}
.tips-bg {
    position: relative;
}
.zoom-info {
    position: relative;
    padding: 75px 155px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 999;
}
.zoom-box {
    border: 4px solid #1aebff;
}
.zoom-box-border {
    border-right: 1px solid #1AEBFF;
}
.zoom-info-box {
    background-color: #1aebff;
}
.zoom-box h3 {
    font-family: 'Lato', sans-serif;
    color: #060606;
    font-size: 20px;
    font-weight: 900;
}
.zoom-box .btn-default {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: bold;
    padding: 5px 30px;
}
.zoom-info-box h4 {
    font-family: 'Roboto', sans-serif;
    color: #0e0e0e !important;
    font-size: 26px;
    font-weight: normal;
    line-height: 1;
}
.zoom-info h5 {
    font-family: 'Roboto', sans-serif;
    color: #e63946;
    font-size: 30px;
    font-weight: 600;
}
.zoom-info h1 {
    font-family: "brush-script-std", sans-serif;
    color: #E63946;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
}
.zoom-info p {
    font-family: "Lato", sans-serif;
    color: #060606;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
}
.zoom-right {
    margin-left: auto;
    display: flex;
    max-width: 100%;
    position: absolute;
    top: 0;
    right: 0;
}
.zoom-left {
    margin-right: auto;
    display: flex;
    max-width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.audition-tips {
    background-color: #f9f9f9;
}
.tips-logos img {
    width: 100%;
    max-width: 250px;
}
.green-box {
    border: 4px solid #1aebff;
    padding: 30px 40px;
}
.audition-tips h3 {
    font-family: 'Lato', sans-serif;
    color: #e63946;
    font-size: 20px;
    font-weight: 900;
}
.audition-tips p {
    font-family: 'Lato', sans-serif;
    color: #060606;
    font-size: 16px;
    font-weight: 600;
}
.audition-tips .text-blue {
    color: #29CFDF;
}
.good-luck {
    padding: 0 8%;
}
.good-luck h2 {
    font-family: "brush-script-std", sans-serif;
    color: #E63946;
    font-size: 70px;
    font-weight: 400;
    line-height: .8;
}
.good-luck h6 {
    font-family: 'Lato', sans-serif;
    color: #060606;
    font-size: 28px;
    font-weight: 900;
}
.favorite-video {
    border: unset;
    background-color: unset;
}
.favorite-video i {
    font-size: 40px;
    color: #000;
}
.kids-tips .zoom-info h1 {
    font-family: "caflisch-script-pro", sans-serif;
    color: #004e98;
    font-size: 80px;
    font-weight: bold;
    line-height: .8;
}
.kids-tips .zoom-info h5 {
    font-family: 'Roboto', sans-serif;
    color: #004e98;
    font-size: 30px;
    font-weight: 600;
}
.kids-tips .zoom-box h3 {
    font-family: 'Roboto', sans-serif;
    color: #004e98;
    font-size: 30px;
    font-weight: 600;
}
.kids-tips.audition-tips h3 {
    font-family: 'Roboto', sans-serif;
    color: #004e98;
    font-size: 30px;
    font-weight: 600;
}
.kids-tips.good-luck h2 {
    font-family: "caflisch-script-pro", sans-serif;
    color: #004e98;
    font-size: 80px;
    font-weight: bold;
    line-height: .8;
}
.orange-box {
    border: 4px solid #ff6700;
    padding: 30px 40px;
}
.kids-tips .zoom-box {
    border: 4px solid #ff6700;
}
.kids-tips .zoom-info-box {
    background-color: #ff6700;
}
.selectpicker_dark .ts-control {
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-weight: 400;
    background-color: transparent !important;
    border: unset;
    border-radius: 4px;
}
.selectpicker_dark.focus .ts-control {
    border: unset;
    box-shadow: unset;
    outline: 0;
}
.selectpicker_dark .ts-control input {
    display: none !important;
}
.selectpicker_dark.ts-wrapper .ts-control,
.selectpicker_dark.ts-wrapper .ts-control input {
    cursor: pointer !important;
}
.articles-grid h2 {
    text-align: left;
    color: #343434;
    font-weight: bold;
    font-size: 25px;
    line-height: 1.2;
}
.articles-grid time {
    font-size: 12px;
    color: #343434;
    font-weight: bold;
}
.articles-grid p {
    font-size: 18px;
    color: #343434;
    font-weight: 400;
}
.featured-right img {
    width: 200px;
}
.featured-left h2 {
    font-size: 35px;
}
@media (min-width: 2500px) {
    .home-main {
        padding-top: 325px;
    }
}
@media (max-width: 1900px) {}
@media (max-width: 1500px) {
    .home-main .carousel-indicators li {
        font-size: 14px;
    }
}
@media (max-width: 1400px) {
    .client-mid {
        padding: 2rem 3rem 2rem 3rem;
    }
    .home-main h6,
    .home-main h6 a {
        font-size: 14px;
    }
    .home-main .carousel-indicators li {
        font-size: 14px;
    }
    .home-main .carousel-indicators {
        margin: 0;
    }
    .profile-nav a,
    .profile-nav a.active {
        font-size: 14px;
    }
    .client-right {
        padding-left: 50px;
    }
    .zoom-info h1,
    .kids-tips .zoom-info h1 {
        font-size: 34px;
    }
    .zoom-info h5,
    .kids-tips .zoom-info h5 {
        font-size: 25px;
    }
    .zoom-box h3 {
        font-size: 25px;
    }
    .zoom-info-box h4 {
        font-size: 22px;
    }
    .zoom-info {
        padding: 75px 75px;
    }
}
@media (max-width: 1250px) {
    .audition-form-bg {
        position: relative;
    }
}
@media (max-width: 1200px) {
    .container {
        width: 1170px;
    }
    .home-main {
        background-image: unset;
    }
    .navbar-internal {
        background-image: unset;
    }
    .model-stats h6 {
        font-size: 14px;
    }
    .favoritesSlider img {
        height: 350px;
        width: auto !important;
    }
    .zoom-box-border {
        border-right: unset;
    }
}
@media (max-width: 1100px) {
    .hblk {
        padding: 0 5em;
    }
    .client-mid {
        padding: 1rem 1rem 1rem 1rem;
    }
    .kids-tips.audition-tips h3 {
        font-size: 25px;
    }
    .audition-tips h3 {
        font-size: 18px;
    }
}
@media (max-width: 992px) {
    .container {
        width: 970;
    }
    .navbar-light .navbar-nav .nav-link {
        color: #000;
    }
    .nav-item {
        text-align: center;
        border-top: 1px solid #eee;
    }
    .nav-item:first-child {
        border-top: 0;
    }
    .top-navbar ul li>a i.fa-search {
        color: #000;
    }
    .dropdown-menu {
        text-align: center;
    }
    .dropdown-menu .dropdown-item {
        border-top: 1px solid #eee;
    }
    .dropdown-menu .dropdown-item:first-child {
        border-top: 0;
    }
    .client-left {
        padding-left: 15px;
    }
    .profile-nav .nav-item {
        text-align: left;
    }
    .client-right {
        padding: 0 200px;
    }
    .favoritesSlider img {
        height: 300px;
        width: auto !important;
    }
    .good-luck h6 {
        font-size: 18px;
    }
    .good-luck h2,
    .kids-tips.good-luck h2 {
        font-size: 60px;
    }
}
@media (max-width: 768px) {
    .container {
        width: 750px;
    }
    #homeSlide .col-3 {
        padding: 0;
    }
    .blk2 {
        margin-top: 4em;
    }
    .home-main {
        padding-left: 0;
        padding-right: 0;
    }
    .home-main row {
        margin-left: -15px;
        margin-right: -15px;
    }
    #audition-form .row {
        margin-left: 0px;
        margin-right: 0px;
    }
    .internal-main h1 {
        font-size: 25px;
    }
    .open-call.internal-main h1 {
        font-size: 28px;
    }
    .new-auditions.internal-main h1 {
        font-size: 28px;
    }
    .new-auditions.internal-main p {
        font-size: 14px;
    }
    .new-auditions.internal-main h6 {
        font-size: 14px;
    }
    .new-auditions.internal-main h5 {
        font-size: 20px;
    }
    .internal-main p,
    .about-us p {
        font-size: 14px;
    }
    .internal-main h3,
    .kids-tips.internal-main h3 {
        font-size: 25px;
    }
    .internal-main h6 a {
        font-size: 14px;
    }
    .btn-default {
        font-size: 14px;
    }
    .navbar-logo {
        width: 115px;
        top: 25px;
    }
    .auditions.internal-main,
    .global.internal-main {
        min-height: 75vh;
    }
    #carouselExampleIndicators .row {
        margin-left: 0px;
        margin-right: 0px;
    }
    .home-main h6,
    .home-main h6 a {
        font-size: 14px;
    }
    .select2-selection.select2-selection--single {
        font-size: 12px;
    }
    .form-control {
        font-size: 12px;
    }
    .modal-content {
        min-height: 60vh;
        border: unset;
    }
    .stats-border {
        border-right: 1px solid #e8e8e8;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .stats-no-border {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .stats-border h6,
    .stats-no-border h6 {
        margin-bottom: 0 !important;
    }
    .client-right {
        padding: 0 100px;
    }
    .modelSlider img {
        height: 210px;
    }
    .instagram-feed span {
        font-size: 16px;
    }
    .instagram-feed img.social-icon {
        width: 20px;
    }
    #search_filter .checkbox input[type="checkbox"]+.checkbox-label:before {
        margin-right: .5rem;
    }
    #search_filter .checkbox {
        margin-right: 0;
    }
    .favoritesSlider img {
        height: 275px;
        width: auto !important;
    }
    .zoom-info h1,
    .kids-tips .zoom-info h1 {
        font-size: 60px;
    }
    .kids-tips.good-luck h2 {
        font-size: px;
    }
    .good-luck h2 {
        font-size: 50px;
    }
    .zoom-info p {
        font-size: 18px;
        line-height: 22px;
    }
    .good-luck {
        padding: 0;
    }
    .good-luck h6 {
        font-size: 26px;
    }
    .zoom-info {
        padding: 50px 50px;
    }
    .featured-right img {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .client-right {
        padding: 0 0px;
    }
    .modelInfoBox h6 {
        font-size: 11px;
    }
    .delete_item i {
        height: .7rem;
        width: .7rem;
        font-size: .7rem;
    }
    .favoritesSlider img {
        height: 225px;
        width: auto !important;
    }
    .good-luck h6 {
        font-size: 16px;
    }
    .kids-tips.good-luck h2 {
        font-size: 60px;
    }
    .good-luck h2 {
        font-size: 50px;
    }
    .zoom-info h1,
    .kids-tips .zoom-info h1 {
        font-size: 48px;
    }
}
@media (max-width: 500px) {
    .zoom-info h5,
    .kids-tips .zoom-info h5 {
        font-size: 20px;
    }
    .zoom-info h1,
    .kids-tips .zoom-info h1 {
        font-size: 41px;
    }
    .zoom-info p {
        font-size: 16px;
        line-height: 20px;
    }
    .audition-tips p {
        font-size: 16px;
        line-height: 20px;
    }
}
@media (max-width: 450px) {
    .zoom-info h1,
    .kids-tips .zoom-info h1 {
        font-size: 37px;
    }
    .zoom-info h5,
    .kids-tips .zoom-info h5 {
        font-size: 16px;
    }
    .zoom-info h3 {
        font-size: 20px;
    }
    .zoom-info-box h4 {
        font-size: 18px;
    }
    .zoom-info {
        padding: 35px 35px;
    }
    .kids-tips.audition-tips h3 {
        font-size: 22px;
    }
    .audition-tips h3 {
        font-size: 18px;
    }
}
@media (max-width: 390px) {
    .zoom-info h1,
    .kids-tips .zoom-info h1 {
        font-size: 35px;
    }
}
