/* Color Theme Swatches in Hex */
.Yellow-Grey-Red-1-hex { color: #BB2020; }
.Yellow-Grey-Red-2-hex { color: #06111C; }
.Yellow-Grey-Red-3-hex { color: #BEC7C7; }
.Yellow-Grey-Red-4-hex { color: #FFEB4D; }
.Yellow-Grey-Red-5-hex { color: #121317; }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    font-family: 'Nunito';
    background:#0e0e0e;
    color:#fff;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
header{
    padding:45px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media(max-width:767px){
    header{
        padding:12px 15px;
        justify-content: center;
        position: relative;
    }
    header:before{
        content:"";
        height:100%;
        width:calc(100% - 30px);
        left:15px;
        top:0;
        background: #FFEB4D;
        position: absolute;
        z-index: -1;
        border-radius:0 0 100px 100px;
    }
}
header h1 a{
    text-transform:uppercase;
    font-weight: 700;
    letter-spacing: -0.5px;
    color:#fff;
    text-decoration: none;
}
@media(max-width:767px){
    header h1 a{
        color:#000;
    }
}
@media(max-width:767px){
    .primary_meu{
        display: none;
    }
}
.primary_meu a{
    padding-left:10px;
    color:#fff;
    font-size:10px;
    text-decoration: none;
}
.primary_meu a:hover{
    color: #FFEB4D;
}
.content_wrap{
    padding:30px;
}
@media(max-width:767px){
    .content_wrap{
        padding:15px 13px;
    }   
}
.week_table{
    display:flex;
    justify-content: space-between;
    padding: 0 8px;
}
@media(max-width:767px){
    .week_table{
        padding:0;
        flex-direction: column;
    }
}
.week_day{
    padding:0 8px 0 8px;
    width:calc(20% - 10px);
    font-size:15px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow:hidden;
}
@media(max-width:767px){
    .week_day{
        padding:5px 5px 10px 5px;
        width:100%;
        margin-bottom:30px;
    }
}
.week_day h2{
    font-size:15px;
    margin-bottom:15px;
}
.week_day .title{
    margin-bottom:15px;
    font-size:25px;
    font-weight:700;
    text-transform: uppercase;
    color: #FFEB4D;
    text-decoration:none;
}
.week_day:before{
    content:"";
    width:calc(100% - 16px);
    height:5px;
    background: #FFEB4D;
    position:absolute;
    left:8px;
    bottom:0;
}
.week_day:after{
    content:"";
    width:calc(100% - 16px);
    height:5px;
    background: #FFEB4D;
    position:absolute;
    left:8px;
    bottom:0;
}
@media(max-width:767px){
    .week_day:after, .week_day:before{
        width:calc(100% - 10px);
        left:5px;   
    }
}
.shopping_list_wrap{
    display:flex;
    flex-direction:column;
    margin-top:80px;
    padding:0 15px;
}
.shopping_list_wrap textarea{
    height:185px;
}
.shopping_list_wrap h3{
    font-size:25px;
    font-weight:700;
    text-transform: uppercase;
    text-align:center;
    margin-bottom:20px;
}
.shopping_list_wrap .button{
    background:#FFEB4D;
    padding:10px;
    cursor:pointer;
    display:block;
    max-width:200px;
    border:0;
    margin-top:10px;
    font-size:12px;
    text-align:center;
    color:#000;
    text-decoration:none;
    transition:background 0.35s ease;
}
.shopping_list_wrap .button:hover{
    background:#fff;
}
.home_title{
    font-size:25px;
    font-weight:700;
    text-transform: uppercase;
    margin-bottom:20px;
    color: #FFEB4D;
}
.home_wrap{
    padding:0 15px;
}
.all_recipes_list_item{
    text-decoration: none;
    line-height: 1.5em;
    transition:all 0.35s ease;
    padding-left:10px;
    position: relative;
}
.all_recipes_list li{
    margin-bottom:2px;
}
.all_recipes_list a:before{
    content:"";
    width:2px;
    height:100%;
    position:absolute;
    left:0;
    top:0;
    background:#FFEB4D;
}
.all_recipes_list_item:hover{
    color:#fff;
}
.select2-container--default .select2-results__option{
    color:#000;
}
.popup{
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    opacity:0;
    visibility: hidden;
    transition:all 0.35s ease;
}
.popup.active{
    opacity:1;
    visibility: visible !important;
}
.popup_overlay{
    background:rgba(0,0,0,0.6);
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
}
.popup_inner_wrap{
    position:absolute;
    top:50%;
    left:50%;
    width:calc(100% - 30px);
    max-width:400px;
    margin:0 auto;
    transform:translate(-50%, -50%);
    background:#fff;
    padding:30px;
    box-sizing: border-box;
}
.create_recipe_form{
    max-width:500px;
    width:100%;
    padding:30px;
    border:1px solid #fff;
}
.form_field_wrap{
    padding-bottom:20px;
}
.form_field_wrap p{
    margin-bottom:4px;
}
.form_field_wrap input{
    width:calc(100% - 8px);
    padding:4px;
    border:0;
}

.added_ingredient{
    padding:10px;
    margin-bottom:15px;
    background:#332020;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.added_ingredient span:nth-child(1){
    width:100%;
}
.select2{
    margin-bottom:20px;
}
.added_ingredient .added_ingredient_remove_button{
    padding-left:10px;
}
.day_ingredients{
    flex-grow:1;
    padding-bottom:20px;
}
.day_ingredients strong{
    font-weight:700;
    color:#fff;
}
.day_ingredients_bottom_menu a{
    width:36px;
    margin-right:5px;
    background:#FFEB4D;
    color:#000;
    text-align:center;
    padding:10px;
    box-sizing: border-box;
    cursor:pointer;
    font-weight:700;
    margin-top:15px;
}

.week_day.transition_in:after{
    -webkit-animation-name: animation_transition_in;
            animation-name: animation_transition_in;
    -webkit-animation-duration: 0.35s;
            animation-duration: 0.35s;
    height:100%;
}
.week_day.transition_out:after{
    -webkit-animation-name: animation_transition_out;
            animation-name: animation_transition_out;
    -webkit-animation-duration: 0.35s;
            animation-duration: 0.35s;
    bottom:unset;
}
@-webkit-keyframes animation_transition_in{
    0%   {
        height:5px;       
    }
    100% {
        height:100%;
    }
}
@keyframes animation_transition_in{
    0%   {
        height:5px;       
    }
    100% {
        height:100%;
    }
}
@-webkit-keyframes animation_transition_out{
    0%   {
        height:100%;
    }
    100% {
        height:0;
    }
}
@keyframes animation_transition_out{
    0%   {
        height:100%;
    }
    100% {
        height:0;
    }
}
.day_ingredients_bottom_menu{
    display:flex;
    justify-content: flex-start;
}
.recipe_search_form{
    position: absolute;
    bottom: 0;
    left: 0;
    background: #0e0e0e;
    width:100%;
    flex-grow:1;
    opacity: 0;
    height:0;
    transition: all 0.35s ease;
    overflow:hidden;
}
.recipe_search_form_inner_wrap{
    display:flex;
    flex-direction:column;
    width:100%;
    padding: 9px;
    box-sizing: border-box;
}
.recipe_search_form.active{
    height:100%;
    opacity: 1;
}
.recipe_search_form_header{
    width:100%;
    background:#FFEB4D;
    height:36px;
    display:flex;
}
.recipe_search_form_icon{
    width:36px;
    height:36px;
    position: relative;
}
.recipe_search_form_icon i{
    font-size:15px;
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    color:#000;
}
.recipe_search_form_input{
    border:0;
    background:transparent;
    flex-grow:1;
}
.recipe_search_form_input:focus{
    outline: none;
}
.recipes_search_form_results_stage_outter_wrap{
    overflow:scroll;
    flex-grow:1;
}
.recipes_search_form_results_stage{
    padding:10px 0;
    width:100%;
}
.replace_recipe{
    display: block;
    padding:8px 0;
    cursor:pointer;
    color:#fff;
    text-decoration: none;
}
.close_recipe_search_form{
    cursor:pointer;
}