﻿/* Standard HTML Tags */
:root {
  /*brand - colors*/
  --color-blue: #003055;
  --color-dark-blue: #01243f;
  --color-light-blue: #335977;
  
  --color-aqua: #50b4c2;
  --color-dark-aqua: #2b8b99;

  --color-green: #92d240;
  --color-dark-green: #6ca820;

  --color-orange: #ef473a;
  --color-light-orange: #f37c73;
  --color-dark-orange: #f93425;

  /*supporting colors*/
  --color-cyan: #0888ca;
  --color-light-cyan: #eaf4f4;
  --color-dark-cyan:#0a6fa3;

  --color-white: #FFFFFF;
  --color-soft-white: #fdfdfd;
  
  --color-black: #111111;
  
  --color-gray: #dcdcdc;
  --color-light-gray: #f9f9f9;
  --color-dark-gray: #989898;
  
  --color-red: #CC0000;
}

:hover, 
:focus {
    transition:all .35s ease 0s;
}

/* for off screen HTML that still needs to be read as part of the flow */
.off_screen {
    position:absolute !important; /* Outside the DOM flow */
    height:1px; width: 1px; /* Nearly collapsed */
    overflow:hidden;
    clip:rect(1px 1px 1px 1px); /* IE 7+ only support clip without commas */
    clip:rect(1px, 1px, 1px, 1px); /* All other browsers */
}

html, body {
    width:100%;
    height:100%;
}

html {
    font-family:'Open Sans', sans-serif;
    font-size:14px;
    font-weight:400;
}

body {
	margin:0px;
    padding:0px;
    min-width:1200px;
    line-height:1.6em;
    color:#111111;
    position:relative;

    background: #022789;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, var(--color-cyan), var(--color-blue));  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, var(--color-cyan), var(--color-blue)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-attachment:fixed;
    background-repeat:no-repeat;
    background-size:cover;
}

h1 {
	margin-top:0px;
    font-size:1.8em;
    font-weight:600;
    line-height:normal;
}

h2 {
    margin:1em 0px;
    font-size:1.4em;
    font-weight:600;
    line-height:normal;
}

h3 {
    font-size:1.2em;
    font-weight:600;
    line-height:normal;
}

ul {
    list-style-type:square;
    margin:0px;
    padding:0px 0px 0px 1.1em;
}

    li {
	    margin:0px 0px .75em 0px;
    }

hr {
	background-color:#e7e7e7;
	height:1px;
	border:0px;
    margin:14px 0px;
}

form {
	margin:0px;
    height:100%;
}

a {
	color:var(--color-cyan);
	text-decoration:none;
}

    a:hover,
    a:focus {
	    color:var(--color-dark-cyan);
        text-decoration:underline;
    }

img	{
	border:0px;
}

input[type="button"],
input[type="submit"],
input[type="text"],
input[type="file"],
select,
textarea {
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;

    -ms-box-sizing:content-box;
    -moz-box-sizing:content-box;
    -webkit-box-sizing:content-box; 
    box-sizing:content-box;
}

input[type='text'],
input[type='password'],
input[type='file'],
select,
textarea {
    padding:.8em;
	outline:none;
    font-size:1em;

    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;

    -ms-box-sizing:content-box;
    -moz-box-sizing:content-box;
    -webkit-box-sizing:content-box; 
    box-sizing:content-box;

    border:1px #dcdcdc solid;
    background-color:#FFFFFF;
}

select {
    border-radius:0px;
    background-image:linear-gradient(-135deg, transparent 50%, black 50%), linear-gradient(135deg, black 50%, transparent 50%), linear-gradient(to right, #FFF, #FFF);
    background-position:calc(100% - 10px) calc(1em + 0px), calc(100% - 10px) calc(1em + 5px), calc(100% - -140px) 0.5em;
    background-size:5px 5px,5px 5px,1px 2em;
    background-repeat:no-repeat;
    cursor:pointer;
}

    select::-ms-expand {
        display:none;
    }

input[disabled='disabled'],
input[disabled],
textarea[disabled='disabled'],
textarea[disabled],
textarea.aspNetDisabled,
select.aspNetDisabled,
input[type=text]:read-only
{
	color:#333 !important;
	background-color:#f1f1f1 !important;
}

/*---------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------*/
/* SECONDARY STYLES */
/*-----------------------------*/

.search_box {
    background-position:calc(100% - 4px) center;
    background-repeat:no-repeat;
    background-image:url('https://eu2azurecdn.blob.core.windows.net/websites/kimcorealty_com/www/webimages/common/icons/i_icon_search.png');
    background-size:18px;
    padding-right:24px !important;
}

.pointer {
    cursor:pointer;
}

.clear  {
    clear:both;
}

.left {
	text-align:left;
}

.right {
	text-align:right;
}

.center {
	text-align:center;
}

.bold {
	font-weight:600 !important;
}

.italic {
	font-style:italic;
}

ul.horizontal_list {
    margin:0px;
    padding:0px;
    list-style:none;
}

    ul.horizontal_list li {
        margin:0px 5px 0px 0px;
        padding:0px;
        display:inline-block;
    }

ul.vertical_list {
    margin:0px;
    padding:0px;
    list-style:none;
}

    ul.vertical_list li {
        margin:0px 0px 10px 0px;
        padding:0px;
    }

/* buttons */
.link_as_button {
	padding:10px 30px;
}

.input_button {
	padding:13px 30px;
}

.link_as_button,
.input_button {
    display:inline-block;
	cursor:pointer;
    font-size:1em;
    font-weight:600;
    border-radius:5px;

    background-color:var(--color-cyan);
    color:#FFFFFF;
    border:0px;
}

    .link_as_button:hover,
    .link_as_button:focus,
    .input_button:hover,
    .input_button:focus {
        color:#FFFFFF;
        background-color:var(--color-dark-cyan);
        text-decoration:underline;
    }

    .delete_button {
        background-color:#ef473a;
    }

        .delete_button:hover,
        .delete_button:focus {
            background-color:var(--color-orange);
        }

    .disabled,
    .input_button:disabled {
        background-color:#535353;
        cursor:default;
    }

        .disabled:hover,
        .disabled:focus {
            text-decoration:none;
        }

.red_button { background-color:var(--color-red); }

#button_add_new {
    position:fixed;
    top:80px;
    right:0px;
    color:#0888ca;
    z-index:1;
    background-color:#FFFFFF;
    padding:2px;
    line-height:initial;
}

    #button_add_new .material-icons {
        font-size:3em;
    }

        #button_add_new:hover .material-icons,
        #button_add_new:focus .material-icons {
	        color:#0a608c;
        }

.close {
    display:inline-block;
    position:relative;
    width:32px;
    height:20px;
    margin:0em 0em 0em .5em;
    opacity:0.6;
}

    .close:hover {
      opacity:1;
    }

        .close:before, .close:after {
          position:absolute;
          left:15px;
          content:' ';
          height:33px;
          width:2px;
          background-color:var(--color-cyan);
        }

            .close:before {
              transform:rotate(45deg);
            }

            .close:after {
              transform:rotate(-45deg);
            }

/* ---- tables --- */
table {
	border-collapse:collapse;
}

    td {
	    vertical-align:top;
        padding:0px;
    }


table {
    width:100%;
	border-collapse:collapse;
}

    tbody tr {
        border-bottom:1px #eeeeee solid;
    }

        tbody td {
            padding:2px;
        }

        tbody td p:first-child {
            margin-top:0px;
        }

        tbody td p:last-child {
            margin-bottom:0px;
        }

    .header td {
        border-bottom:3px #000000 solid;
        font-weight:600;
        border-right:none !important;
        border-left:none !important;
        text-transform:uppercase;
        background-color:#FFFFFF;
    }

    .sub_header {
        border-bottom:3px #000000 solid;
        font-weight:600;
    }

    /*-- card --*/
    .card {
        background-color:#f9f9f9;
    }

        .card tbody td:first-child {
            border-left:1px #eeeeee solid;
        }

        .card tbody td:last-child {
            border-right:1px #eeeeee solid;
        }

        .card td {
            padding:12px;
            vertical-align:top;
        }

            .card .header td {
                padding:36px 12px 12px 12px;
            }

        .card_columns td:nth-child(1):not(.header) {
            width:15%;
            min-width:150px;
            font-weight:600;
        }

        .card_columns td:nth-child(2) {
            width:85%;
        }

    /*-- grid --*/
    .grid {

    }

        .grid thead tr,
        .grid tr.header {
            font-weight:600;
            border-bottom:1px #e7e7e7 solid;
            color:#111111;
            font-size:.8em;
        }

            .grid thead td,
            .grid tr.header td {
                vertical-align:middle;
                padding:6px;
            }

        .grid tr.sub_sub_header {
            font-weight:600;
            border-bottom:1px #111111 solid;
            color:#111111;
            font-size:.8em;
        }

        .grid tbody tr:hover:not(.no_hover):not(.header):not(.sub_header):not(.sub_sub_header),
        .grid tbody tr:focus {
            background-color:#f0f9ff;
        }

        .grid tbody tr:nth-child(even):not(.header):not(.sub_header):not(.sub_sub_header) {
            background-color:#fbfbfb;
        }

            .grid tbody td {
                position:relative;
	            vertical-align:top;
                padding:6px;
            }

                .grid tbody td .link_as_button_option {
                    margin:0px 1px;
                }

            .grid tbody tr.sub_header {
                font-weight:600;
                margin-top:10px;
            }

/* ---- */
        
.message {
    clear:both;
}

    .message .material-icons {
	    font-size:1.2rem;
        margin-right:10px;
        color:#FFFFFF;
        vertical-align:middle;
    }

    .message .ok,
    .message .warning,
    .message .error,
    .message .nothing_defined {
        padding:14px;
        color:#FFFFFF;
    }

        .message .error { 
            background:#cb2d3e;
            background:-webkit-linear-gradient(to left, #ef473a, #cb2d3e);
            background:linear-gradient(to left, #ef473a, #cb2d3e);
        }

        .message .warning { 
            background:#FFB75E;
            background:-webkit-linear-gradient(to left, #FFB75E, #ED8F03);
            background:linear-gradient(to left, #FFB75E, #ED8F03);
         }

        .message .ok { 
            background:#56ab2f;
            background:-webkit-linear-gradient(to left, #a8e063, #56ab2f);
            background:linear-gradient(to left, #a8e063, #56ab2f);
        }

        .message .nothing_defined { 
            background:#8e9eab;
            background:-webkit-linear-gradient(to right, #eef2f3, #8e9eab);
            background:linear-gradient(to right, #eef2f3, #8e9eab);
        }

    .float_message {
        position:absolute;
        top:0px;
        right:0px;
        left:0px;
        z-index:999;
    }
    
.message_debug {
	clear:both;
	background-color:#fdf3e3;
}

    .message_debug_content {
	    padding:2px;
        color:#000000;
    }

.required {
    position:absolute;
    top:0px;
    right:0px;
    background-color:#ef473a;
    padding:4px 8px;
	color:#FFFFFF;
	font-size:.9rem;
    z-index:5;
} 

.expired { background-color:#cb2d3e; color:#FFFFFF; padding:2px 6px; font-size:10px; line-height:1; }

.hide {
    display:none;
}

/* float boxes */
.float_box {
    clear:both;
}

    .float_box:after {
        display:block;
        clear:both;
        content:'';
    }

    .box_5 { width:5%; }
    .box_10 { width:10%; }
    .box_15 { width:15%; }
    .box_20 { width:20%; }
    .box_25 { width:25%; }
    .box_30 { width:30%; }
    .box_35 { width:35%; }
    .box_40 { width:40%; }
    .box_45 { width:45%; }
    .box_50 { width:50%; }
    .box_55 { width:55%; }
    .box_60 { width:60%; }
    .box_65 { width:65%; }
    .box_70 { width:70%; }
    .box_75 { width:75%; }
    .box_80 { width:80%; }

.float_left {
    float:left;
}

.float_right {
    float:right;
}

/* flex boxes */
/* used to divide a container_row_content into two floating boxes.*/
.flex_box {
    display:flex;
    justify-content:center;
    position:relative;
}

    .flex_box .container_row_content {
        padding-right:0px;
        padding-left:0px;
    }

    .flex_box .box {
        width:50%;
        background-size:cover;
        background-repeat:no-repeat;
    }

        .flex_box .box:nth-child(odd) {
            text-align:right;
        }

        .flex_box .box_row {
            width:100%;
            max-width:800px;
            margin:0px auto;
            display:inline-block;
        }

            .flex_box .box_content {
                text-align:left;
                padding:0px 5px;
                position:relative;
            }

/* form box */
/* used for tabular form layouts (standard) */
.form_box {
    clear:both;
}

    .form_box h2 {
        margin:0px 0px 4px 0px;
        padding:0px;
        font-size:1.2em;
    }

        .form_box h2:not(:first-of-type) {
            margin-top:20px;
        }

    .form_box .section {
        display:table;
        width:100%;
    }

        .form_box .row {
            display:table-row;
            position:relative;
        }

            .form_box .column {
                display:table-cell;
                vertical-align:top;
                padding:2px;
                position:relative;
            }

                .form_box .column:nth-child(1) {
                    width:20%;
                    padding-left:0px;
                    font-weight:600;
                }

                .form_box .column:nth-child(2) {
                    width:80%;
                    padding-right:0px;
                }

    .form_box .option_section {
        padding:30px 0px 0px 0px;
        text-align:center;
    }

        .form_box .option_section .input_button {
            font-weight:600;
        }

/* column box */
/* similar to form box, but no widths specified and its only one row */
.column_box {
    clear:both;
}
    .column_box .section {
        display:block;
        width:100%;
        position:relative;
    }

        .column_box .section h2 { font-weight:800; text-transform:uppercase; letter-spacing:1px; border-bottom:2px var(--color-black) solid; margin-bottom:20px; padding-bottom:0px;  }
        .column_box .section:not(:first-of-type) h2 { margin-top:20px; }

        .column_box .row {
            margin-bottom:10px;
            position:relative;
        }

            .column_box .column {
                vertical-align:top;
                position:relative;
            }

            .column_box .column:first-child {
                font-size:.8em;
                font-weight:600;
                text-transform:uppercase;
            }

/* form view */
.form_view ul {
    margin:0px;
    padding:0px;
    list-style:none;
}

    .form_view li {
        margin:0px 0px 10px 0px;
        padding:0px;
        display:inline-block;
    }

    .form_view li:nth-child(odd) {
        width:20%;
        max-width:140px;
    }

    .form_view li:nth-child(even) {
        width:78%;
    }

/*content settings */

.content_mod {
    display:table;
    width:100%;
}

    .content_mod .column_box {
        padding:20px 40px;
    }

        .content_mod h2 {
            font-size:1.2em;
            border-bottom:2px #111111 solid;
        }

    .content_mod_settings {
        display:table-cell;
        background-color:#f7f7f7;
        width:25%;
    }

    .content_mod_body {
        display:table-cell;
        width:75%;
    }

/* standard widths */

.control_small_width {
    width:10%;
    min-width:100px;
}

.control_quarter_width {
    width:25%;
}

.control_half_width {
    width:50%;
}

.control_three_quarters_width {
    width:75%;
}

.control_full_width {
    width:calc(100% - 1.6em);
}

.search_bar {
    position:relative;
    padding-bottom:20px;
}

    .search_bar ul {
        margin:0px;
        padding:0px;
        list-style:none;
    }

        .search_bar li {
            margin:0px 5px 0px 0px;
            display:inline-block;
            vertical-align:middle;
        }

    .search_bar .link_as_button { position:absolute; top:0px; right:0px; }

/* ------------------------------ */
/* ------------------------------ */
/* MASTER AND HOME PAGE WRAPPERS AND CONTAINERS */
/* ------------------------------ */

#container_responsive_button {
    display:none;
}

/*************/
/* Site Container Styles */
/*************/

/* environments */
.environment_dev,
.environment_qa,
.environment_prod {
    position:absolute;
    bottom:0px;
    right:0px;
    left:0px;
    color:#FFFFFF;
    padding:4px;
}

.environment_dev { background-color:#CC0000; }
.environment_qa { background-color:#dc8c0e; }
.environment_prod { background-color:#40ac3f; }

/* search  */
.no_search_results {
    position:relative;
    padding-top:40px;
    min-height:80vh;
}

    .no_search_results p {
        font-size:1.4em;
        line-height:1.4em;
        font-weight:200;
        width:40%;
    }

    .no_search_results img {
        position:absolute;
        top:60px;
        right:40px;
        width:40%;
        opacity:.5;
    }

/*-----------------------------*/
/* MAIN BODY ROWS */
/*-----------------------------*/

#content {
    clear:both;
    padding:60px 0px;
    position:relative;
}

    .wrapper_row {
        clear:both;
        position:relative;
        max-width:1600px;
        min-height:80vh;
        margin:0px auto;
        background-color:var(--color-light-gray);
        overflow:auto;
        -webkit-box-shadow: 20px 20px 0px -10px #00b6c4; box-shadow: 20px 20px 0px -10px var(--color-blue);
    }

    .no_minimum_height {
        min-height:initial;
    }

    .wrapper_row:not(:first-of-type) { margin-top:60px;}

        .width_400 { max-width:400px; }
        .width_600 { max-width:600px; }
        .width_800 { max-width:800px; }
        .width_1000 { max-width:1000px; }
        .width_1200 { max-width:1200px; }
        .width_1400 { max-width:1400px; }

        .container_row {
            clear:both;
            overflow:auto;
            position:relative;
        }

            .container_row_content {
                padding:30px 40px;
            }

                .container_row_content p:last-of-type { margin-bottom:0px; padding-bottom:0px; }

        /*option row */
        .container_options {
            clear:both;
            border-bottom:1px var(--color-gray) solid;
        }

            .option_row { display:flex; align-items:center; padding:14px 40px; color:var(--color-white); background-color:var(--color-blue); }
            .option_row .box { width:50%; }
            .option_row .box h1 { margin:0px; padding:0px; line-height:1; letter-spacing:1px; color:var(--color-white); }
            .option_row .box .close:before,
            .option_row .box .close:after { background-color: var(--color-white); }

            .option_row .box:nth-child(1) { text-align:left; }
            .option_row .box:nth-child(2) { text-align:right; }

            .search_row { padding-bottom:20px; margin-bottom:20px; border-bottom:1px var(--color-gray) solid; }
            .search_row ul { display:flex; align-items:center; gap:4px; margin:0px; padding:0px; list-style:none; }
            .search_row ul li { margin:0px; padding:0px; } 

        /* container settings view */
        .container_settings_view {
            background-color:#f7f7f7;
        }

            .container_settings_view_content {
                padding:40px;
            }

                .container_settings_view_content ul.horizontal_list li {
                    border:1px #b7b7b7 solid;
                    padding:6px 10px;
                    margin:5px 10px 5px 0px;
                }
/*---------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------*/
/* HEADER */
/*-----------------------------*/

#wrapper_header {
    clear:both;
    background-color:var(--color-soft-white);
    padding-top:4px;
    display:flex;
}

    #wrapper_header:after {
        content:'';
        display:block;
        clear:both;
    }

    #wrapper_header a {
        display:block;
        padding:10px 20px;
        color:var(--color-blue);
        text-transform:uppercase;   
        letter-spacing:1px;
        font-size:.9rem;
    }

        #wrapper_header a.no_hover:hover {
            text-decoration:none;
        }

        #wrapper_header a.selected { background-color:var(--color-blue); color:var(--color-white); font-weight:600; }

    #menu_box_1 {
        width:35%;
    }

    #menu_box_2 {
        width:65%;
    }

        #menu_box_1 ul,
        #menu_box_2 ul {
            padding:0px;
            margin:0px;
            list-style:none;
            position:relative;
            display:flex;
            align-items:center;
            column-gap:1px;
        }

        #menu_box_1 ul { margin-left:10px; }
        #menu_box_2 ul { margin-right:10px; }

        #menu_box_2 ul {
            justify-content:flex-end;
        }

        #menu_box_1 li,
        #menu_box_2 li { margin:0px; padding:0px; }

.wrapper_sub_header {
    clear:both;
    background-color:var(--color-blue);
    border-bottom:1px var(--color-white) solid;
    display:flex;
    color:var(--color-white);
}

    .wrapper_sub_header ul { display:flex; align-items:center; margin:0px; padding:8px; list-style:none; column-gap:8px; }
    .wrapper_sub_header ul li { margin:0px; }
    .wrapper_sub_header ul li a { display:block; padding:4px 6px; color:var(--color-white); text-transform:uppercase; letter-spacing:1px; }
    .wrapper_sub_header ul li a.selected { font-weight:600; color:var(--color-green); }
    .wrapper_sub_header ul li a.selected .material-icons {  color:var(--color-green); }
    .wrapper_sub_header ul li .material-icons { display:none; color:var(--color-white); font-size:14px; vertical-align:middle; margin-right:2px; }

/*---------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------*/
/* SUB HEADER */
/*-----------------------------*/

#wrapper_sub_header {
    clear:both;
    background-color:#1d2025;
}

    #wrapper_sub_header ul {
        margin:0px;
        padding:0px 0px 0px 34px;
        list-style:none;
    }

        #wrapper_sub_header li {
            display:inline-block;
            margin:0px 10px 0px 0px;
            padding:0px;
        }

            #wrapper_sub_header a {
                display:block;
                padding:.75em 2em 1em 2em;
                color:#FFFFFF;
                border-bottom:4px #1d2025 solid;
            }

            #wrapper_sub_header a:hover,
            #wrapper_sub_header a.selected {
                border-bottom-color:#059d5e;
            }

/*-----------------------------*/
/* STANDARD PAGES */
/*-----------------------------*/

/* welcome ---------------------------------------------------------------------------------------------------*/

#welcome {
    margin:100px auto;
    box-shadow: 20px 20px 0px -10px var(--color-dark-blue);
}

    #welcome .container_row_content {
        padding:60px 40px;
    }

        #welcome .logo {
            margin-bottom:20px;
        }

            #welcome .logo img {
                height:30px;
            }
    
    #welcome a { color:var(--color-cyan); text-decoration:underline; }

/* error ---------------------------------------------------------------------------------------------------*/

#error {
    margin:100px auto;
}

    #error .container_row_content {
        padding:60px 40px;
    }

        #error .logo {
            margin-bottom:20px;
        }

            #error .logo img {
                height:30px;
            }

#accessibility {

}

    #accessibility .container_row_content {
        padding:40px;
    }

/*-----------------------------*/
/* CUSTOM PAGES */
/*-----------------------------*/

/* cms external home ---------------------------------------------------------------------------------------------------*/

#cms_external_home h2 {
    margin:0px 0px 10px 0px;
    padding:0px;
}

/* cms website ---------------------------------------------------------------------------------------------------*/

#cms_websites {

}

    #cms_websites ul {
        display:grid;
        grid-template-columns:repeat(4, 1fr);
        margin:0px;
        padding:0px;
        list-style:none;
        gap:10px;
    }

        #cms_websites li {
            position:relative;
            padding:20px;
            border:1px var(--color-gray) solid;
            border-radius:5px;
            background-color:#FFFFFF;
        }

            #cms_websites h2 {
                margin:0px;
                padding:0px;
                font-size:1.2em;
                line-height:1;
                position:relative;
                display:inline-block;
            }

            #cms_websites .sk_status {
                position:absolute;
                top:0px;
                right:0px;
                display:inline-block;
                color:#FFFFFF;
                padding:8px 12px;
                font-size:.8em;
                line-height:1; 
                border-top-right-radius:5px;
                text-transform:uppercase;
            }

            #cms_websites .sk_pending { background-color:#b42d46; }
            #cms_websites .sk_cms_only { background-color:#1873b1; }

/* cms dashboard ---------------------------------------------------------------------------------------------------*/

#cms_website_dashboard_modules {
    position:fixed;
    bottom:0px;
    right:0px;
    left:0px;
    border-top:1px var(--color-gray) solid;
}


    #cms_website_dashboard_modules ul {
        margin:0em;
        padding:0em;
        width:100%;
        list-style:none;
    }

        #cms_website_dashboard_modules li {
            margin:0px;
            padding:0px;
            width:11%;
            display:inline-block;
            box-sizing:border-box;
            text-align:center;
            background-color:#00888ca;
        }

            #cms_website_dashboard_modules li:nth-child(1) { background-color:#0593dc; width:12%; }
            #cms_website_dashboard_modules li:nth-child(2) { background-color:#0382c3; }
            #cms_website_dashboard_modules li:nth-child(3) { background-color:#0371a9; }
            #cms_website_dashboard_modules li:nth-child(4) { background-color:#015a88; }
            #cms_website_dashboard_modules li:nth-child(5) { background-color:#0371a9; }
            #cms_website_dashboard_modules li:nth-child(6) { background-color:#0382c3; }
            #cms_website_dashboard_modules li:nth-child(7) { background-color:#0593dc; }
            #cms_website_dashboard_modules li:nth-child(8) { background-color:#0382c3; }
            #cms_website_dashboard_modules li:nth-child(9) { background-color:#0371a9; }

            #cms_website_dashboard_modules a {
                display:block;
                padding:20px 0px;
                font-size:1rem;
                text-transform:uppercase;
                color:#FFFFFF;
                background-color:transparent;
            }

                #cms_website_dashboard_modules a .material-icons {
                    display:block;
                    margin-bottom:10px;
                    text-align:center;
                    font-size:1.4em;
                    color:#FFFFFF;
                }

                #cms_website_dashboard_modules a.selected,
                #cms_website_dashboard_modules a:hover, 
                #cms_website_dashboard_modules a:focus {
                    background-color:#01324b;
                }

#cms_website_home_page {
    clear:both;
}

    #cms_website_home_page ul {
        margin:0px;
        padding:0px;
        list-style:none;
    }

        #cms_website_home_page li {
            margin:00px 0px 40px 0px;
            padding:40px;
            padding:0px;
            position:relative;
        }

            #cms_website_home_page li .box_title {
                position:absolute;
                top:2px;
                left:2px;
                padding:4px 10px;
                background-color:#FFFFFF;
                font-weight:600;
            }

            #cms_website_home_page li .box {
                padding:20px 40px 40px 40px;
                background-color:#eeeeee;
            }
    
        #cms_website_home_page .container_row_content .link_as_button,
        #cms_website_home_page .container_row_content .link_as_button:hover,
        #cms_website_home_page .container_row_content .link_as_button:focus {
            background-color:transparent;
            border:1px #111111 solid;
            cursor:default;
            color:#111111;
            text-decoration:none;
            margin:0px;
        }

        #cms_website_home_page .container_row_content h2 {
            text-transform:uppercase;
            font-size:2em;
            font-weight:700;
            color:#535353;
        }

/* cms photos ---------------------------------------------------------------------------------------------------*/

#cms_photos {

}

    #cms_photos .photo_grid ul.horizontal_list li {
        margin:0px;
        width:20%;
        position:relative;
    }

        #cms_photos .search_box {
            width:80%;
        }

        #cms_photos ul.keywords_list {
            width:96%;
            margin:0px;
            padding:0px 0px 10vh 0px;
            list-style:none;
            overflow-y:scroll;
            height:70vh;
        }

            #cms_photos .keywords_list li {
                margin:1px;
                padding:0px;
                display:inline-block;
                border:1px #eeeeee solid;
            }

                #cms_photos .keywords_list li a {
                    padding:8px 10px;
                    display:block;
                    color:#111111;
                    background-color:#FFFFFF;
                }

                .highlight_search {
                    background-color:#FFB75E;
                }

        #photo_library_total {
            position:fixed;
            bottom:0px;
            right:0px;
            background-color:#111111;
            padding:4px 24px;
            color:#FFFFFF;
            z-index:10;
        }

        #cms_photos .photo_grid {
            height:80vh;
            padding-bottom:10vh;
            overflow-y:scroll;
        }

        #cms_photos .photo_grid a {
            display:block;
        }

        #cms_photos .photo_grid li img {
            width:100%;
            display:block;
        }

        #cms_photos .photo_grid .photo_id {
            position:absolute;
            top:0px;
            left:0px;
            background-color:#111111;
            color:#FFFFFF;
            padding:4px 8px;
            font-size:.9em;
            display:inline-block;
            z-index:1;
        }

        #cms_photos .photo_grid .photo_overlay_text_alignment {
            position:absolute;
            background-color:#ef473a;
            color:#FFFFFF;
            padding:4px 8px;
            font-size:.9em;
            display:inline-block;
            z-index:1;
        }

            .align_ml {
                top:60px;
                left:5px;
            }

            .align_mc {
                top:60px;
                left:0px;
                right:0px;
                margin:0px auto;
                width:60px;
                text-align:center;
            }

            .align_mr {
                top:60px;
                right:5px;
            }

/* cms photos mod ---------------------------------------------------------------------------------------------------*/

#cms_photos_mod .photo {
    margin-top:20px;
    width:100%;
    display:block;
}

    #hero_photo_preview {
        position:relative;
    }

        #preview_overlay_text_alignment {
            position:absolute;
            top:170px;
            right:0px;
            left:0px;
            z-index:10;
        }

            #preview_overlay_text_alignment h2 {
                color:#FFFFFF;
                font-family:'Palanquin Dark', sans-serif;
                font-size:3rem;
                font-weight:600;
                text-transform:uppercase;
                margin-bottom:.3rem;
                line-height:3rem;
                text-shadow:2px 2px #565454;
            }

            #preview_overlay_text_alignment h3 {
                color:#FFFFFF;
                font-family:'Palanquin Dark', sans-serif;
                font-size:1.4rem;
                font-weight:400;
                text-transform:uppercase;
                margin:0px;
                text-shadow:2px 2px #565454;
            }

            .preview_align_ {
                display:none;
            }

            .preview_align_ml {
                text-align:left;
            }

                .preview_align_ml #preview_overlay_text_alignment_content {
                    float:left;
                    max-width:50%;
                    padding-left:40px;
                }

            .preview_align_mc {
                text-align:center;
            }

                .preview_align_mc #preview_overlay_text_alignment_content {
                    margin:0px auto;
                    max-width:50%;
                }

            .preview_align_mr {
                text-align:right;
            }

                .preview_align_mr #preview_overlay_text_alignment_content {
                    float:right;
                    max-width:50%;
                    padding-right:40px;
                }

/* cms announcement ---------------------------------------------------------------------------------------------------*/

.announcement_box {
    clear:both;
}

    .announcement_box img {
        width:90%;
        margin:20px auto;
        display:block;
    }

    .announcement_view_info li:not(:nth-child(2)) {
        font-weight:600;
        font-style:italic;
    }

        .announcement_view_info li:not(:last-child) {
            margin-right:10px;
            padding-right:10px;
        }

        .announcement_view_info .material-icons {
            font-size:1.4rem;
            margin-right:4px;
            vertical-align:middle;
        }

.announcement_status_key_1 { color:#cb2d3e; }

#cms_announcements_past {
    background-color: #f7f7f7;
    margin-top: 40px;
}

/* cms wcag reference ---------------------------------------------------------------------------------------------------*/

#wcag_reference li > ul { 
    margin:5px 0px 0px 5px;
}

/* cms account ---------------------------------------------------------------------------------------------------*/

#specific_websites { padding:10px 0px 0px 20px; }

/* brand ---------------------------------------------------------------------------------------------------*/

.brand_bg_light_gray { background-color:#fafbfb; }

.brand_shadow_blue_bottom_right { -webkit-box-shadow: 30px 30px 0px -10px #003055; box-shadow: 30px 30px 0px -10px #003055; } 
.brand_shadow_cyan_bottom_right { -webkit-box-shadow: 30px 30px 0px -10px #00b6c4; box-shadow: 30px 30px 0px -10px #00b6c4; } 
.brand_shadow_green_bottom_right { -webkit-box-shadow: 30px 30px 0px -10px #7ed600; box-shadow: 30px 30px 0px -10px #7ed600; } 
.brand_shadow_yellow_bottom_right { -webkit-box-shadow: 30px 30px 0px -10px #f0b300; box-shadow: 30px 30px 0px -10px #f0b300; } 

.brand_shadow_and_background_with_offset {  -webkit-box-shadow: 11px 11px 0px 0px var(--color-light-baby-blue); box-shadow: 11px 11px 0px 0px var(--color-light-baby-blue); background-image:linear-gradient(#eaf4f4, #eaf4f4); background-position:left 10px top 10px; background-repeat:no-repeat; }

/* stores */
#cms_stores ul.tags { display:flex; align-items:center; margin:0px; padding:0px; list-style:none; column-gap:4px; row-gap:4px; }
#cms_stores ul.tags li { margin:0px; padding:6px 20px; border:1px var(--color-gray) solid; border-radius:5px; }

#cms_store_graphics img.preview { display:inline-block; object-fit:contain; width:100%; max-width:40px; max-height:40px; margin:0px 0px 0px 10px; vertical-align:middle; }

/* custom checkbox */
.toggle_button_row input[type=checkbox] { margin:0px 0px 8px 0px; padding:0px; display:none; }

.toggle_button_row input[type=checkbox]:disabled + label { background-image:url(https://eu2allwebext.blob.core.windows.net/kimcorealty/www/resources/images/common/icons/i_toggle_off_disabled.png); }
.toggle_button_row label { background-image:url(https://eu2allwebext.blob.core.windows.net/kimcorealty/www/resources/images/common/icons/i_toggle_off.png); background-repeat:no-repeat; padding-left:40px; cursor:pointer; }

.toggle_button_row input[type=checkbox]:checked + label { background-image:url(https://eu2allwebext.blob.core.windows.net/kimcorealty/www/resources/images/common/icons/i_toggle_on.png); }
.toggle_button_row input[type=checkbox]:checked:disabled + label { background-image:url(https://eu2allwebext.blob.core.windows.net/kimcorealty/www/resources/images/common/icons/i_toggle_on_disabled.png); }

.delete_store_row { margin-top:20px; text-align:center; }

.warning_text { color:var(--color-red); }

/* flex row start */
.is_flex { display:flex; align-items:center; gap:var(--spacing-2S); }
.is_flex li.divider { line-height:1; }
.is_flex li.divider:before {content: " | ";}

.is_grid { display:grid; grid-template-columns:repeat(2, 1fr); gap:var(--spacing-0); }
/* flex box end */

ul.no_bullets,
ol.no_bullets { margin:0px; padding:0px; list-style:none; }

ul.no_bullets > li,
ol.no_bullets > li { margin:0px; padding:0px; }

.is_dev { position:absolute; top:0px; right:0px; padding:10px 20px; color:var(--color-white); background-color:var(--color-red); z-index:100; }

/* locatization */
.language_group { grid-template-columns:1fr; gap:1rem; } 