/*===============================
        Sitewide General Rules 
================================*/

* {
    -webkit-transition: color 0.2s ease-in, background-color 0.2s ease-in;
    transition: color 0.2s ease-in, background-color 0.2s ease-in;
}

body {
    font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    margin: 0;
    background: #FFF;
    font-weight: 300;
}

body.overflow_hidden {
    overflow: hidden;
}

a {
    text-decoration: inherit;
    color: inherit;
}

a:hover {
    text-decoration: underline;
    cursor: pointer;
}

h1 {
    font-family: "Roboto Slab";
    font-weight: normal;
    margin: initial;
}

h2 {
    font-weight: 300;
    margin: initial;
}

button {
    width: 250px;
    font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 14px;
    color: #FFF;
    box-sizing: border-box;
    line-height: 24px;
    border-radius: 5px;
    font-weight: 600;
    border-bottom: 4px solid transparent;
}

label {
    display: block;
}

input {
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    padding: 20px;
    font-size: 16px;
    border: none;
    font-family: "Roboto Slab", "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

ul {
    margin: 0;
    list-style: none;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clear {
    clear: both;
}

.clear_fix {
    overflow: auto;
}

.center {
    margin: 0 auto;
}

.text_center {
    text-align: center;
}

.text_right {
    text-align: right;
}

.text_underline {
    text-decoration: underline;
}

.vertical {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.vertical_horizontal {
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translatey(-50%);
    -moz-transform: translateX(-50%) translatey(-50%);
    transform: translateX(-50%) translatey(-50%);
}

.display {
    display: inline !important;
}

.warning_red {
    color: red;
}

.padding_box {
    padding: 10px;
    box-sizing: content-box;
}

/*===============================
        Sitewide Custom Rules 
================================*/

header nav .main_nav ul li a {
    color: #CBCBCB;
    border-bottom: 2px solid transparent;
    font-family: "Roboto Slab";
    font-weight: 400;
    text-decoration: none;
    padding: 0 5px 28px;
    transition: border-bottom 0.2s ease-in;
}

header nav ul {
    padding: 0;
}

header nav ul li:hover a {
    border-bottom: 2px solid #fff;
    color: #fff;
}

header nav .main_nav ul li:active a {
    border-bottom: 2px solid orange;
    color: orange;
}

header nav .container {
    line-height: 80px;
    height: 80px;
    overflow: hidden;
    border-bottom: 0;
}

header nav .main_nav {
    background-color: #4E4B49;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
    width: 100%;
    z-index: 2;
    position: fixed;
}

header nav .main_nav.dashboard_main_nav .header_logo {
    float: left;
    margin-top: 13px;
    transition: margin-top 0.2s ease-in-out;
    padding-left: 0;
}

header nav .main_nav .header_logo:hover {
    margin-top: 20px;
}

header nav .main_nav .small_talk {
    float: left;
    color: #CACACA;
    background: #5F5F5F;
    line-height: initial;
    margin: 30px 20px;
    padding: 8px 24px;
    border-radius: 5px;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    box-sizing: border-box;
}

/************************
     Dashboard rules
************************/

.screen_overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99;
    display: none;
    overflow: auto;
}

.screen_overlay .popup {
    position: absolute;
    background: #fff;
    text-align: center;
    top: 0;
    left: 50%;
    z-index: 2;
    margin-top: 60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-bottom: 60px;
    display: none;
}

.screen_overlay .popup#domain_validation_rules_popup {
    display: none;
}

.screen_overlay .popup#domain_setup_guide_popup {
    display: none;
}

.screen_overlay .popup .domain_validation_rules {
    display: inline;
    float: left;
    max-width: 600px;
    z-index: 1;
    background: white;
    padding-bottom: 40px;
}

.screen_overlay .popup .domain_setup_guide {
    background: #F3EEEA;
    width: 700px;
    float: left;
}

.screen_overlay .popup .domain_setup_guide .section_header{
    padding: 50px;
    color: white;
    background: #FFB72D;
}

.screen_overlay .popup .domain_setup_guide .section_header h1 {
    font-weight: 600;
}

.screen_overlay .popup .domain_setup_guide .section_header p {
    margin: 0;
    margin-bottom: 20px;
}

.screen_overlay .popup .domain_setup_guide .instructions {
    padding: 25px;
    text-align: left;
}

.screen_overlay .popup .domain_setup_guide .instructions em {
    color: #555555;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
}

.screen_overlay .popup .domain_setup_guide .instructions .pre_instructions_block {
    padding: 0 15px 10px;
}

.screen_overlay .popup .domain_setup_guide .instructions .pre_instructions_block a {
    color: orange;
    font-weight: 600;
    border-bottom: 1px dashed orange;
    text-decoration: none;
}

.screen_overlay .popup button.validate_domain_button {
    width: 100%;
    background: orange;
    border-bottom: 3px solid #DC8F00;
}

.screen_overlay .popup button.validate_domain_button:hover {
    background: #FFAF1C;
}

.screen_overlay .popup .domain_setup_guide .instructions .pre_instructions_block a:hover {
    color: #CB9024;
}

.screen_overlay .popup .domain_setup_guide .instructions .instructions_block {
background: white;
    padding: 50px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.screen_overlay .popup .domain_setup_guide .instructions .instructions_block p {
padding-left: 18px;
    border-bottom: 1px solid #F3EEEA;
    padding-bottom: 20px;
    padding-top: 20px;
    background: #F9F8F7;
    box-sizing: border-box;
    border-top: 1px solid #F3EEEA;
    padding-right: 18px;
}

.screen_overlay .popup .domain_setup_guide .instructions .instructions_block code.values {
    background: white;
    padding: 8px 16px;
    border: 1px solid #E9E9E9;
    color: #A8A66E;
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "Open Sans";
    display: inline-block;
    box-sizing: border-box;
    word-wrap: break-word;
}

.screen_overlay .popup .domain_setup_guide .instructions .instructions_block p img {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    height: auto;
}

.screen_overlay .popup .domain_setup_guide .instructions .instructions_block .instructions_header {
    background: #EF7211;
    padding: 10px 20px;
    color: white;
    font-weight: 600;
    margin: 0;
}

.screen_overlay .popup .domain_setup_guide .instructions .instructions_block .instructions_header span.number_indicator {
    padding: 0px 7px;
    background: white;
    border-radius: 50%;
    color: #EF7211;
    font-weight: bold;
    margin-right: 10px;
}


.screen_overlay .popup .popup_content_holder {
    color: #525252;
    padding: 50px 50px 30px;
    background: #F6F6F6;
    margin: 0 auto;
}

.screen_overlay .popup .domain_setup_guide .popup_content_holder {
    background: #FFF;
}

.screen_overlay .popup .popup_content_holder #special_header {
    max-width: 480px;
    text-align: center;
    font-weight: 600;
    margin: 0 auto;
}

.screen_overlay .popup div.key_content_holder.first {
    margin-top: 50px;
}

.screen_overlay .popup .key_content_holder  {
    padding: 0 40px;
    margin-top: 30px;
}

.screen_overlay .popup .key_content_holder .key_holder {
    max-width: 590px;
    text-align: left;
    margin: 0 auto;
}

.screen_overlay .popup .key_content_holder .key_holder .key_header {
    font-weight: 600;
    color: #9B9B9B;
    font-size: 13px;
    margin-bottom: 8px;
    padding-left: 8px;
}

.screen_overlay .popup .key_content_holder .key_holder .key_value_groups {
    position: absolute;
    margin-top: 21px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    color: #BEBEBE;
    margin-left: 22px;
    line-height: 24px;
    pointer-events: none;
}

.screen_overlay .popup .key_content_holder .key_holder .key_value {
    color: #86A460;
    padding: 20px;
    font-size: 14px;
    letter-spacing: 0.3px;
    word-wrap: break-word;
    border: 1px solid #EDEDED;
    padding-left: 75px;
    line-height: 24px;
}

.screen_overlay i.fa-times {
    position: absolute;
    right: 0;
    top: 0;
    margin: 20px;
    font-size: 25px;
    color: #A7A7A7;
    cursor: pointer;
}

.screen_overlay i.fa-times:hover {
    color: #5F5F5F;
}

.screen_overlay .popup .popup_content_holder p {
    font-size: 20px;
}

.screen_overlay .popup .popup_content_holder p a {
    border-bottom: 1px dashed orange;
    text-decoration: none;
    color: orange;
    font-weight: 500;
}

.screen_overlay .popup .popup_content_holder p a:hover {
    color: #D58F52;
}

.screen_overlay .popup button {
    padding: 15px 20px;
    font-size: 18px;
    font-family: "Roboto Slab";
    margin-top: 8px;
    width: 200px;
}

.screen_overlay .popup button.follow_guide {
    float: left;
    background: #4C4C4C;
    border-bottom: 3px solid #1E1E1E;
}

.screen_overlay .popup button.follow_guide:hover {
    background: #252525;
}

.screen_overlay .popup button.validate_domain_settings {
    float: right;
    background: #F36C1B;
    border-bottom: 3px solid #CE5C17;
}

.screen_overlay .popup button.validate_domain_settings:hover {
    background: #F37A31;
}


.warning_message {
    background: #E33C3C;
    margin: 0 auto;
    padding: 15px;
    color: white;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top: 1px solid #BE3131;
    cursor: pointer;
    top: 0;
    z-index: 1;
    text-decoration: underline;
    transition: top 0.5s ease-in;
    position: absolute;
    width: 100%;
    box-sizing: border-box;
}

#dashboard_container {
    padding: 2em 2em;
    position: relative;
    width: 1180px;
}

/*/////  Search   /////*/

#dashboard_container .search_box {
    border: none;
    border-bottom: 1px solid lightgray;
    background: transparent;
    margin-bottom: 1em;
    font-size: 28px;
    color: #686868;
    font-weight: 300;
    padding-bottom: 8px;
    outline: none;
    font-family: "Roboto Slab";
    border-radius: 0;
    position: fixed;
    width: inherit;
    margin-top: 80px;
    top: 0;
    padding-top: 41px;
    background: white;
    z-index: 10;
}

#dashboard_container #make_new_list_link {
    font-weight: 400;
    font-size: 17px;
    color: #707070;
    font-family: "Roboto Slab";
    padding-left: 7px;
    cursor: pointer;
    margin: 10px 15px 2em 5px;
    border: 1px dashed transparent;
    transition: 0.2s ease-in;
}

#dashboard_container #make_new_list_link:hover {
    color: orange;
    border-bottom: 1px dashed orange;
}

#dashboard_container .lists_holder {
    
}

#dashboard_container .lists_holder ul {
    padding-left: 20px;
    padding-right: 20px;
}


#dashboard_container .lists_holder ul li {
    font-size: 15px;
    color: #878787;
    padding: 20px 0 5px 20px;
    font-family: "Roboto Slab";
    cursor: pointer;
    word-wrap: break-word;
}

#dashboard_container .lists_holder ul li a {
    text-decoration: none;
}

#dashboard_container .lists_holder ul li a.active {
    color: orange;
    font-weight: 600;
    text-decoration: none;
}

#dashboard_container .lists_holder ul li:hover {
    color: orange;
}

#dashboard_container .left_right_side_holder {
    width: inherit;
    top: 0;
    margin-top: 135px;
}

#dashboard_container .left_side_holder {
    position: fixed;
    height: 100%;
    float: left;
    border-right: 1px solid #E4E4E4;
    width: 205px;
    margin-top: 30px;
}

#dashboard_container .right_side_holder {
    width: 100%;
    max-width: 974px;
    display: inline-block;
    float: right;
    padding: 0 20px;
    box-sizing: border-box;
}

#dashboard_container .right_side_holder_filler {
    height: 88px;
}

#dashboard_container .right_side_holder .resizing-input {
    position: fixed;
    width: inherit;
    max-width: 935px;
    border-bottom: 1px solid #e3e3e3;
    padding-top: 40px;
    background: white;
    z-index: 10;
}

#dashboard_container .right_side_holder .list_nav_holder {
    height: 47px;
    border-bottom: 2px solid #DFDFDF;
}

#dashboard_container .right_side_holder .list_name_header_span {
    display: none;
}

#dashboard_container .right_side_holder .list_name_header {
    font-family: "Roboto Slab";
    font-size: 24px;
    margin: 0px 0px 15px;
    float: left;
    padding: 0;
    outline: none;
    font-weight: 300;
    margin-left: 10px;
    margin-right: 10px;
    max-width: 268px;
    color: black;
}

#dashboard_container .right_side_holder ul.list_nav_tabs {
    line-height: 32px;
}
#dashboard_container .right_side_holder ul.list_nav_tabs li {
    display: inline-block;
    float: left;
    padding: 0px 20px;
    font-size: 15px;
    border-right: 1px solid #F0F0F0;
    font-weight: 400;
    font-family: "Roboto Slab";
    border-bottom: 1px solid transparent;
    cursor: pointer;
}

#dashboard_container .right_side_holder ul.list_nav_tabs a {
    text-decoration: none;
}

#dashboard_container .right_side_holder ul.list_nav_tabs a li span {
    transition: border 0.3s ease-in-out;
}

#dashboard_container .right_side_holder ul.list_nav_tabs a:hover li span {
    border-bottom: 1px dashed orange;
}

#dashboard_container .right_side_holder ul.list_nav_tabs a:hover li {
    color: orange;   
}

#dashboard_container .right_side_holder ul.list_nav_tabs a li.active span {
    border-bottom: 1px solid;
    color: orange;  
    font-weight: 600;
}

#dashboard_container .right_side_holder ul.list_nav_tabs a li {
    text-decoration: none;
    color: #BCAA8B;
}

#dashboard_container .right_side_holder ul.list_nav_tabs li a i.alert_notification {
    margin: 3px;
    position: absolute;
    display: none; 
    color: #F03333;
}

#dashboard_container .back_to_top {
    position: fixed;
    background: #E8E8E8;
    width: 60px;
    float: left;
    height: 60px;
    right: 0;
    bottom: 130px;
    margin: 10px 90px;
    border-radius: 8px;
    cursor: pointer;
    display: none;
}

#dashboard_container .back_to_top:hover {
    background: #969696;
}

#dashboard_container .back_to_top i.fa-chevron-up {
    font-size: 34px;
    padding: 5px;
    margin-top: 5px;
    transition: margin-top 0.2s ease-in;
}

#dashboard_container .back_to_top:hover i.fa-chevron-up {
    margin-top: 0;
}

#dashboard_container .right_side_holder .menu_item_bar {
    width: 100%;
    background: #BDCB57;
    overflow: hidden;
    height: 40px;
    overflow: hidden;
    margin-top: 12px;
}

#dashboard_container .right_side_holder .arrow_tooltip_message.landing_page_builder {
    position: absolute;
    right: 0;
    margin-top: 10px;
}

#dashboard_container .right_side_holder .arrow_tooltip_message.landing_page_builder img {
    margin-left: -140px;
}

#dashboard_container .right_side_holder .arrow_tooltip_message.landing_page_builder p {
    color: #594B4B;
    max-width: 270px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Roboto Slab";
    line-height: 0;
    padding: 0px 19px;
}

#dashboard_container .right_side_holder .back_to_tools {
    font-size: 14px;
    color: grey;
    margin-left: 10px;
    transition: margin-left 0.2s ease-in;
}

#dashboard_container .right_side_holder .back_to_tools:hover {
    color: #3F3F3F;
    margin-left: 5px;
}

#dashboard_container .right_side_holder .container.tools_container {
    padding: 0;
    margin: 15px 0 15px;
    overflow: hidden;
    border: 1px solid #EAEAEA;
    position: relative;
    cursor: pointer;
    border-bottom: 3px solid #EAEAEA;
    transition: border 0.2s ease-in-out, margin-left 0.2s ease-in-out;
}

#dashboard_container .right_side_holder .container.tools_container:hover {
    border-bottom: 3px solid orange;
}

#dashboard_container .right_side_holder .container.tools_container h1 span:hover {
    border-bottom: 1px dashed orange;
    color: #5F5D5A;
}

#dashboard_container .right_side_holder .container.tools_container .content_holder.medium_rabbut_content i.fa-arrow-left {
    font-size: 15px;
    opacity: 0;
    position: absolute;
    margin-top: 5px;
    margin-left: 10px;
    transition: margin 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

#dashboard_container .right_side_holder .container.tools_container .content_holder.medium_rabbut_content h1:hover i.fa-arrow-left {
    opacity: 1;
    margin-left: 5px; 
}

#dashboard_container .right_side_holder .container.landing_page_builder {    
    padding: 0;
    border-top: 1px solid #F3F3F3;
    padding-top: 15px;
}

#dashboard_container .right_side_holder .container.landing_page_builder .landing_page_builder_header {       
    padding: 10px 15px;
    background: #f6f2f1;
    position: relative;
}

#dashboard_container .right_side_holder .container.landing_page_builder .landing_page_builder_header em {       
    font-weight: 400;
    color: #868686;
}

#dashboard_container .right_side_holder .container .landing_page_builder_update_notification {       
    position: absolute;
    color: #9D9D9D;
    margin: 35px 117px;
    background: white;
    padding: 5px 20px;
    font-size: 14px;
    min-width: 60px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
}

#dashboard_container .right_side_holder .container.landing_page_builder .landing_page_builder_header .progress_bar {       
    position: absolute;
    background: #DDE7B6;
    height: 3px;
    width: 0%;
    margin-top: 10px;
    max-width: inherit;
    left: 0;
}

#dashboard_container .right_side_holder .landing_page_builder_footer button.activate_update_button{       
    background: #B3D573;
    padding: 10px;
    font-size: 16px;
    border-bottom: 3px solid #95B260;
    float: right;
}

#dashboard_container .right_side_holder .landing_page_builder_footer button.activate_update_button:hover {       
    background: #BBE36F;
}

#dashboard_container .right_side_holder .container.landing_page_builder .landing_page_builder_title {       
    font-size: 13px;
    color: #a9a9a9;
    margin: 0;
}

#dashboard_container .right_side_holder .container.landing_page_builder .landing_page_builder_title i.fa-check {       
    background: white;
    padding: 8px;
    font-size: 12px;
    border-radius: 50px;
    width: 10px;
    height: 10px;
    margin-right: 5px;
}

#dashboard_container .right_side_holder .container.landing_page_builder p {     margin: 0;
    font-size: 12px;
    color: #5D5D5D;
}

#dashboard_container .right_side_holder .container.landing_page_builder .powered_by_rabbut {       
    position: absolute;
    right: 0;
    font-size: 13px;
    color: #34A7FC;
    background: rgba(255, 255, 255, 0.4);
    padding: 4px 12px;
    margin: 53px 170px;
}

#dashboard_container .right_side_holder .container .options_button {
    position: absolute;
    width: 90px;
    border: 1px solid lightgray;
    background: white;
    color: #AEAEAE;
    font-weight: 300;
    letter-spacing: 0.2px;
    font-size: 13px;
    border-radius: 1px;
    right: 0;
    margin: 10px;
    outline: none;
    cursor: pointer;
}

#dashboard_container .right_side_holder .container .options_button:hover {
    background: orange;
    color: white;
}

#dashboard_container .right_side_holder .image_holder {
    width: 207px;
    float: left;
    max-height: 148px;
    border-right: 1px solid #EAEAEA;
}

#dashboard_container .right_side_holder .image_holder img {
    width: 100%;
    min-height: 138px;
}

#dashboard_container .right_side_holder .image_holder .active_state {
    background: rgba(201, 211, 101, 0.8);
    height: 148px;
    position: absolute;
    width: 207px;
    text-align: center;
/*    display: none;*/
}

#dashboard_container .right_side_holder .image_holder .active_state:hover {
    background: rgba(183, 192, 93, 0.8);
}

#dashboard_container .right_side_holder .image_holder .active_state i.fa-bolt {
    color: #FFF;
    font-size: 30px;
    border: 3px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    vertical-align: middle;
    padding: 12px 21px;
    margin-top: 38px;
    box-sizing: border-box;
}

#dashboard_container .right_side_holder .image_holder .active_state i.fa-bolt:hover {
    border: 3px solid #FFF;
    background: #B3D573;
}

#dashboard_container .right_side_holder .image_holder .active_state p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
}

#dashboard_container .right_side_holder .content_holder {
    padding: 30px 30px 10px 40px;
    float: left;
    line-height: 24px;
    width: 580px;
    max-height: 150px;
    box-sizing: border-box;
}

#dashboard_container .right_side_holder .content_holder h1 a {
    font-size: 24px;
    font-weight: 400;
    color: #5F5F5F;
    border-bottom: 1px dashed transparent;
    text-decoration: none;
}

#dashboard_container .right_side_holder .content_holder h1 a:hover {
    border-bottom: 1px dashed #5F5F5F;
}

#dashboard_container .right_side_holder .content_holder p {
    margin-top: 12px;
    color: #9B9B9B;
}

#dashboard_container .right_side_holder .container .background_image {
    background: #f8f8f8;
    overflow: hidden;
}

#dashboard_container .right_side_holder .container .background_image .subscriber_box{
    background: #FFF;
    max-width: 700px;
    margin: 2.5em auto;
    box-shadow: 0 1px 2px rgba(0,0,0,.15),0 0 1px rgba(0,0,0,.15);
    border-radius: 3px;
    box-sizing: border-box;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif;
    letter-spacing: 0;
    font-weight: 300;
    font-style: normal;
    font-size: 30px;
    line-height: 1.2;
    overflow: hidden;
}

#dashboard_container .right_side_holder .container .background_image .subscriber_box .subscriber_box_content_holder {
    display: inline-block;
    padding: 24px;
    max-width: 388px;
}

#dashboard_container .right_side_holder .container .background_image .subscriber_box .medium_subscribe_image_placeholder {
    float: right;
    max-width: 264px;
    height: auto;
}

#dashboard_container .right_side_holder .container .background_image .subscriber_box div#title_input {
    color: rgba(0, 0, 0, 0.7);
    max-height: 72px;
    overflow: hidden;
    transition: outline 0.1s ease-in-out;
    border: 1px dashed #AEAEAE;
}

#dashboard_container .right_side_holder .container .background_image .subscriber_box div#title_input:hover, #dashboard_container .right_side_holder .container .background_image .subscriber_box div#title_input:focus {
    outline: -webkit-focus-ring-color auto 5px;
}

#dashboard_container .right_side_holder .container .background_image p.pro_tip {
    position: absolute;
    margin: -20px 0;
    color: orange;
}

#dashboard_container .right_side_holder .container .background_image div#content_input{
    font-size: 16px;
    font-style: normal;
    margin-bottom: 10px;
    margin-top: 12px;
    line-height: 22px;
    color: rgba(95, 95, 95, 0.8);
    font-weight: 300;
    overflow: hidden;
    max-height: 66px;
    transition: outline 0.1s ease-in-out;
    border: 1px dashed #AEAEAE;
}

#dashboard_container .right_side_holder .container .background_image div#content_input:hover, #dashboard_container .right_side_holder .container .background_image div#content_input:focus{
    outline: -webkit-focus-ring-color auto 5px;
}

#dashboard_container .right_side_holder .container .background_image input{
    border: 2px solid #E5E5E5;
    padding: 18px;
    margin: 25px 0 10px;
    pointer-events: none;
}

#dashboard_container .right_side_holder .container .background_image button.landing_page_builder_subscribe {
    width: 100%;
    background: #ef5e25;
    font-weight: bold;
    font-family: "Roboto Slab";
    padding: 15px;
    font-size: 18px;
    pointer-events: none;
    border-bottom: 3px solid #CA4F1F;
}

#dashboard_container .right_side_holder .container .background_image button.landing_page_builder_subscribe:hover {
   background: #FA7642;
}

#dashboard_container .right_side_holder .supported_logos {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 15px 30px;
    color: #D9D9D9;
}

#dashboard_container .right_side_holder .menu_item_bar .subscriber_count {
    font-size: 14px;
    color: white;
    line-height: 41px;
    font-weight: 400;
    font-family: "Roboto Slab";
    margin-left: 20px;
    float: left;
}

#dashboard_container .right_side_holder .menu_item_bar #export_link {
    float: right;
    color: #fff;
    margin-right: 13px;
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
}

#dashboard_container .right_side_holder .menu_item_bar .status_message .arrow_tooltip_message {
    position: absolute;
    margin-left: 170px;
    margin-top: -18px;
    cursor: default;
    pointer-events: none;
}

#dashboard_container .right_side_holder .menu_item_bar .status_message .arrow_tooltip_message p {
    color: #594B4B;
    max-width: 270px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Roboto Slab";
    line-height: 28px;
    border-left: 3px solid #CF4343;
    padding: 10px 20px;
}

#dashboard_container .right_side_holder .menu_item_bar .status_message .arrow_tooltip_message p.pending {
    color: #594B4B;
    max-width: 270px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Roboto Slab";
    line-height: 28px;
    border-left: 3px solid #FAB950;
    padding: 10px 20px;
}

#dashboard_container .right_side_holder .menu_item_bar .status_message .arrow_tooltip_message p.pending b {
    color: #FAB93E;
}


#dashboard_container .right_side_holder .menu_item_bar .upload_button {
    padding: 0px;
    background: transparent;
    float: right;
    border: 1px solid white;
    border-radius: 0;
    font-family: "Roboto Slab";
    font-weight: 400;
    cursor: pointer;
    width: 120px;
    margin: 4px 5px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    text-align: center;
    height: 30px;
    color: #fff;
    line-height: 28px;
    cursor: pointer;
    z-index: 1;
}

#dashboard_container .right_side_holder .menu_item_bar .upload_button:hover{
    background: #FFCC38;
}

#dashboard_container .right_side_holder .upload_button_span {
    font-family: "Roboto Slab";
    font-weight: 400;
    cursor: pointer;
    display: inline;
    font-size: 26px;
    color: #BBBBBB;
    position: relative;
    border-bottom: 1px dashed #BBBBBB;
    cursor: pointer;
}

#dashboard_container .right_side_holder .collect_email_span {
    font-family: "Roboto Slab";
    font-weight: 400;
    cursor: pointer;
    display: inline;
    font-size: 26px;
    color: #BBBBBB;
    position: relative;
    border-bottom: 1px dashed #BBBBBB;
    text-decoration: none;
}

#dashboard_container .right_side_holder .collect_email_span:hover { 
    color: orange;
    border-bottom-color: orange;
}

#dashboard_container .right_side_holder input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    height: 100%;
}

#dashboard_container .right_side_holder .upload_button_span span {
    cursor: pointer;   
}

#dashboard_container .right_side_holder .upload_button_span:hover span {
    color: orange;
    border-bottom: 1px dashed orange;
}

#dashboard_container .right_side_holder .main_table {
    border-collapse: collapse;
    text-align: left;
    display: inline-block;
    width: 100%;
}

#dashboard_container .right_side_holder tbody#subscriber_list input {
    pointer-events: none;
}

#dashboard_container .right_side_holder tbody#subscriber_list tr {
    border-bottom: 1px solid #ECECEC;
    cursor: pointer;
}

#dashboard_container .right_side_holder tbody#subscriber_list tr.active {
    background: #EDF2FC;
}

#dashboard_container .right_side_holder tbody#subscriber_list tr:hover {
    background: #F5F8F0;
}

#dashboard_container .right_side_holder tbody tr .table_email span {
    border-bottom: 1px dashed transparent;
    transition: border 0.2s ease-in;
}

#dashboard_container .right_side_holder tbody tr .table_email span:hover {
   border-bottom: 1px dashed #686868;
}

#dashboard_container .right_side_holder .main_table thead.menu_nav_bar_holder {
    width: 100%;
    display: inline-block;
    border-top: 1px solid #E4E4E4;
    background: #F9F8F6;
    border-bottom: 1px solid #E4E4E4;
}

#dashboard_container .right_side_holder .main_table thead tr.menu_nav_bar th {
    font-weight: 400;
    font-size: 13px;
    color: #B0B0B0;
}

#dashboard_container .right_side_holder .main_table td, #dashboard_container .right_side_holder .main_table th {
    padding: 8px;
    font-size: 14px;
    color: #8D8D8D;
    font-weight: 400;
}

#dashboard_container .right_side_holder .main_table td.header_cell, #dashboard_container .right_side_holder .main_table th.header_cell {
   width: 36px;
}

#dashboard_container .right_side_holder .main_table td div, #dashboard_container .right_side_holder .main_table th div {
    width: 12px;
    padding: 7px 12px;
    margin: 0;
    white-space: nowrap;
    display: inline-block;
    margin-right: 10px;
}

#dashboard_container .right_side_holder .main_table th.table_email {
    padding-right: 135px;
}

#dashboard_container .right_side_holder .main_table .table_email {
    font-weight: 600;
    color: #686868;
    width: 25%;
}

#dashboard_container .right_side_holder .main_table th.table_referrer {
    padding-right: 195px;
}

#dashboard_container .right_side_holder .main_table .table_referrer {
    width: 50%;
    padding-right: 25px;
}

#dashboard_container .right_side_holder .main_table .table_date {
    width: 100%;
}

#dashboard_container .right_side_holder .main_table .table_name {
    padding-left: 40px;_
    border-left: 1px solid #E4E4E4;
}

#dashboard_container .right_side_holder .main_table th.table_name {
    padding-left: 40px !important;
    border-left: none;
}

#dashboard_container .right_side_holder .empty_list_message {
    text-align: center;
    font-size: 26px;
    color: #D7D7D7;
    display: inline-block;
    margin-top: 40px;
}

#dashboard_container .right_side_holder .empty_list_message.message_continued {
    margin: 0;
    display: inline;
}

#dashboard_container .collect_email_alert {
    padding: 0px 20px;
    background: #E06A4B;
    margin-top: 10px;
    color: white;
    border: 2px solid #EAEAEA;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#dashboard_container .collect_email_alert a {
    font-weight: bold;
    border-bottom: 1px dashed white;
    text-decoration: none;
}

#dashboard_container .collect_email_alert a:hover {
    border-bottom: 1px solid white;
}

#dashboard_container .collect_email_alert a:hover i.fa-arrow-right {
    opacity: 1;
    margin-left: 10px;
}

#dashboard_container i.fa-arrow-right {
    opacity: 0;
    position: absolute;
    margin-left: 5px;
    transition: opacity 0.2s ease-in-out, margin 0.2s ease-in-out;
}

#dashboard_container .right_side_holder .linked_notification {
    padding: 20px;
    background: #FAFAFA;
    text-align: left;
    margin-top: 15px;
    color: #858585;
    border: 1px solid #F2F2F2;
}

#dashboard_container .right_side_holder .linked_notification p {
    display: inline-block;
    margin: 0;
}

#dashboard_container .right_side_holder .linked_notification em {
    font-weight: 500;
    color: #5C9CBC;
}

.footer_activate_blog_to_email {
width: 100%;
    height: 90px;
    border-top: 1px solid #000;
    background: #4E4B49;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    color: white;
    bottom: -220px;
    font-weight: 500;
    font-family: "Roboto Slab";
    font-size: 22px;
    left: 0;
    transition: bottom 0.8s ease-in-out;
}

.footer_activate_blog_to_email button.activate_button {
    padding: 15px;
    font-size: 18px;
    width: 220px;
    margin-top: 16px;
    background: #EF7211;
    cursor: pointer;
    border-bottom-color: #CB600E;
    margin-left: 40px;
    font-family: "Roboto Slab";
}

.footer_activate_blog_to_email button.activate_button:hover {
    background: #F0802A;
}

.integration_popup {
    text-align: center;
    padding: 3em;
    position: absolute;
    max-width: 780px;
    margin: 0 auto;
    box-sizing: border-box;
    background: #FFF;
    display: none;
}

.integration_popup p.instructions {
    margin-top: 8px;
    margin-bottom: 24px;
}

.integration_popup p em {
    font-weight: 400;
    color: #CDA363;
    font-style: initial;
}

.integration_popup h1 {
    font-size: 40px;
    font-weight: 600;
    color: #5E5E5E;
}

.integration_popup ul {
    padding: 0;
}

.integration_popup ul li {
    background: #F3F3F3;
    padding: 0em;
    display: inline-block;
    width: 48%;
    height: 130px;
    text-align: center;
    vertical-align: top;
    margin-bottom: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border 0.2s ease-in-out, background 0.2s ease-in-out;
}

.integration_popup ul li p.RSS_li {
    color: #C4C4C4;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 1px;
    margin-top: 45px;    
    line-height: 18px
}

.integration_popup ul li p.RSS_li span {
    font-size: 14px;
    font-weight: 400;
    color: #D5D5D5;
}

.integration_popup ul li:hover {
    background: #FFF;
    border: 2px solid #D5D5D5;
}



.integration_popup ul li img {
    width: auto;
    padding: 3em;
    box-sizing: border-box;
    margin: 0;
    height: 100%;
}

.landing_page_html {
    width: 100%;
    height: 100%;
    position: absolute;
}

.landing_page_html form {
    height: 100%;
    width: 100%;
}
.landing_page_html .background_image {
    height: 100%;
    width: 100%;
}

.landing_page_html .background_image .subscriber_box{
    max-width: 700px;
    text-align: center;
}

.landing_page_html .background_image .subscriber_box a.back_to_medium{
    position: absolute;
    left: 0;
    top: -100px;
}

.landing_page_html .background_image .subscriber_box div.input_holder{
    max-width: 540px;
    margin: 0 auto;
}

.landing_page_html .background_image .subscriber_box div.h1_input {
    border: 0;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #5F5F5F;
    margin: 0;
    padding: 0;
    max-height: 138px;
    overflow: hidden;
}

.landing_page_html .background_image div.p_input{
    padding: 0 20px;
    margin-top: 10px;
    font-weight: 300;
    font-size: 20px;
    overflow: hidden;
    line-height: 28px;
    margin: 15px auto 10px;
    outline: #FFF auto 5px;
    transition: outline 0.2s ease-in-out;
}


.landing_page_html .background_image input{
    border: 2px solid #E5E5E5;
    padding: 18px;
    margin: 25px 0 10px;
}

.landing_page_html .background_image button {
    width: 100%;
    background: #ef5e25;
    font-weight: bold;
    font-family: "Roboto Slab";
    padding: 18px;
    font-size: 18px;
    border-bottom: 3px solid #CA4F1F;
    cursor: pointer;
}

.landing_page_html .background_image button:hover {
    background: #FA7642;
}


.landing_page_html .powered_by_rabbut {       
    font-size: 13px;
    color: #34A7FC;
    margin: 25px 0;
    padding-top: 20px;
    border-top: 1px solid whitesmoke;
}

.landing_page_html .powered_by_rabbut a {       
    background: #F6F6F6;
    padding: 5px 10px;
}


.landing_page_html i.fa-times {
    position: absolute;
    right: 0;
    top: 0;
    margin: 20px;
    font-size: 25px;
    color: #A7A7A7;
    cursor: pointer;
}

.carrut_top_landing_archive {
    position: fixed;
    width: 100%;
    background: #6DBF78;
    height: 60px;
    text-align: center;
}

.carrut_top_landing_archive img.rabbut_logo {
    margin-left: 40px;
    width: 45px;
    margin-top: 4px;
    float: left;
}

.carrut_top_landing_archive img.rabbut_logo:hover {
    margin-top: 10px;
}

.carrut_top_landing_archive p {
    display: inline-block;
    color: white;
    font-weight: 600;
}

.carrut_top_landing_archive input {
    display: inline-block;
    width: 250px;
    padding: 10px;
    margin-left: 10px;
    border-radius: 3px;
    vertical-align: middle;
    margin-top: 2px;
}

.carrut_top_landing_archive button {
    display: inline-block;
    width: 150px;
    padding: 8px;
    border-bottom: 4px solid #D78011;
    background: #EE9420;
    font-weight: bold;
}

.carrut_top_landing_archive button:hover {
    background: #FFA32C;
}

.landing_page_archive_html {
    padding: 10em 0 6em;
}

.landing_page_archive_html .container {
    max-width: 780px;
}

.landing_page_archive_html .landing_page_archive_header {
    text-align: center;
}

.landing_page_archive_html .landing_page_archive_holder .right {
    color: #1F97E1;
    background: #FAFAFA;
    padding: 3px 10px;
    box-sizing: inherit;
    font-size: 14px;
    text-align: center;
}

.landing_page_archive_html .landing_page_archive_holder .profile_header {
    text-align: center;
}

.landing_page_archive_html .landing_page_archive_holder .profile_header img {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    margin-right: 10px;
    display: inline-block;
    border: 4px solid #EAEAEA;
}

.landing_page_archive_html .landing_page_archive_holder .profile_header .profile_bio{
    margin: 0 auto;
    border-bottom: 1px solid #EBEBEB;
    margin-bottom: 15px;
}

.landing_page_archive_html .landing_page_archive_holder .profile_header .profile_bio .profile_pic{
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background-size: contain !important;
    border: 3px solid #EBEBEB;
    border-radius: 50%;
    margin-bottom: 10px;
    display: inline-block;
}

.landing_page_archive_html .landing_page_archive_holder .profile_header .profile_bio h1 {
    font-family: "Roboto Slab";
    margin: initial;
    color: #6dbf78;
    font-weight: bold;
    font-size: 21px;
}

.landing_page_archive_html .landing_page_archive_holder .profile_header .profile_link {
    display: inline-block;
    vertical-align: top;
    margin: 0;
    color: #A7A7A7;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-size: 13px;
    margin-top: 4px;
}

.landing_page_archive_html .landing_page_archive_holder .profile_header .profile_link a {
    color: #6dbf78;
    font-weight: bold;
    text-decoration: none;
}

.landing_page_archive_html .landing_page_archive_holder ul.medium_post_list_ul {
    padding-left: 0;
    max-width: 660px;
    margin: 0 auto;
}

.landing_page_archive_html .landing_page_archive_holder ul.medium_post_list_ul li {
    display: inline-block;
    width: 49.5%;
    margin-top: 15px;
    max-width: 337px;
    vertical-align: top;
}

.landing_page_archive_html .landing_page_archive_holder .medium_post {
background: #fff;
    border: 1px solid #ECECEC;
    max-width: 320px;
    display: inline-block;
    text-align: left;
}

.landing_page_archive_html .landing_page_archive_holder .medium_post figure {
    margin: 15px 0 12px;
}

.landing_page_archive_html .landing_page_archive_holder .medium_post .content_holder{
    padding: 20px;
}

.landing_page_archive_html .landing_page_archive_holder .medium_post h1 a {
font-size: 20px;
    color: #5C5C5C;
    font-weight: bold;
    border-bottom: 1px dashed transparent;
}

.landing_page_archive_html .landing_page_archive_holder .medium_post h1 a:hover {
    border-bottom: 1px dashed;
}

.landing_page_archive_html .landing_page_archive_holder .medium_post .image_holder {
    overflow: hidden;
    height: 200px;
}

.landing_page_archive_html .landing_page_archive_holder .medium_post img {
    width: 100%;
    height: auto;
}

.landing_page_archive_html .landing_page_archive_holder .medium_post p {
font-weight: 300;
    font-family: "Merriweather";
    font-size: 16px;
    line-height: 32px;
    color: #7D7D7D;
    max-height: 120px;
    margin-top: 8px;
    overflow: hidden;
}

.landing_page_archive_html .landing_page_archive_holder .medium_post a {
    color: orange;
    border-bottom: 1px dashed;
    text-decoration: none;
}

.landing_page_archive_html .landing_page_archive_holder .medium_post a:hover {
    color: #7F7F7F;
}

.landing_page_html i.fa-times:hover {
    color: #5F5F5F;
}

.shareable_link_section {
    background: #fac96a;
    font-family: "Roboto Slab";
    padding: 20px 30px;
    border: 3px solid orange;
}

.shareable_link_section p {
    color: #fff !important;
    font-weight: 500;
    font-size: 18px;
    margin: 0;
}

.shareable_link_section p code{
    background: #FFF;
    padding: 8px 16px;
    color: #727272;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "Open Sans";
    display: inline-block;
    box-sizing: border-box;
    word-wrap: break-word;
    font-weight: 300;
    border-radius: 5px;
    padding: 10px 90px 10px 20px;
    font-size: 14px;
    margin-left: 10px;
    position: relative;
    max-width: 478px;
    width: 100%;
} 

.shareable_link_section p code span.copy_link{
    position: absolute;
    right: 0;
    color: #6868BC;
    padding: 10px 17px;
    top: 0;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
}

.shareable_link_section p code span.copy_link:hover {
    text-decoration: underline;
}

.shareable_link_section button.go_to_page_button {
    background: orange;
    padding: 5px;
    border-bottom: 3px solid #DF9000;
    vertical-align: top;
    margin-top: 12px;
    width: 140px;
    margin-left: 5px;
}

.shareable_link_section button.go_to_page_button:hover {
    background: #FFAC15;
}

.get_code_popup {
    text-align: center;
    padding: 3em;
    border: 2px solid #EEEEEE;
    position: absolute;
    max-width: 780px;
    margin: 0 auto;
    box-sizing: border-box;
    background: #FFF;
}

.get_code_popup h1 {
    font-size: 40px;
    font-weight: 600;
    color: #5E5E5E;
}

.get_code_popup p.medium_message {
    padding: 20px;
    text-align: left;
    border: 3px solid orange;
    background: #FFECE6;
    margin: 0;
}

.get_code_popup .shareable_link_section p code{
    background: #F6F6F6;
    margin-left: 10px;
    min-width: 572px;
}

.get_code_popup .shareable_link_section {
    background: white;
    padding: 10px 0;
    border: 0;
}

.get_code_popup .shareable_link_section p.share_text {
    font-weight: 500;
    color: #747474 !important;
    font-size: 14px;
    text-align: left;
    display: inline-block;
    width: 100%;
    margin-left: 7px;
}

.get_code_popup .header_holder {
    border-bottom: 1px solid #E7E7E7;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.oopsy_rabbut {
    text-align: center;
    padding: 3em;
    border: 2px solid #EEEEEE;
    position: absolute;
    max-width: 580px;
    margin: 0 auto;
    box-sizing: border-box;
    background: #FFF;
    display: none;
}

.oopsy_rabbut h1 {
    color: #606060;
}

.oopsy_rabbut p{
    font-size: 18px;
}

.oopsy_rabbut p.help_message{
    padding: 30px;
    text-align: left;
    background: #DBEDFA;
    margin: 0;
    font-size: 16px;
    margin-top: 40px;
}

.oopsy_rabbut p.help_message b{
    color: #6A6A6A;
    font-weight: 600;
}

.oopsy_rabbut p.help_message a {
    color: orange;
    border-bottom: 1px dashed #7F7F7F;
    text-decoration: none;
}

.oopsy_rabbut p.help_message a:hover {
    color: #7F7F7F;
}

.onoffswitch {
    position: relative; 
    width: 55px;
    display: inline-block;
    float: right;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
    display: block; 
    overflow: hidden; 
    cursor: pointer;
    height: 23px; 
    padding: 0; 
    line-height: 23px;
    border: 2px solid #DDDDDD; 
    border-radius: 23px;
    background-color: #FFFFFF;
    transition: background-color 0.3s ease-in;
}
.onoffswitch-label:before {
    content: "";
    display: block; width: 23px; margin: 0px;
    background: #FFFFFF;
    position: absolute; top: 0; bottom: 0;
    right: 30px;
    border: 2px solid #DDDDDD; border-radius: 23px;
    transition: all 0.3s ease-in 0s; 
}
.onoffswitch-checkbox:checked + .onoffswitch-label {
    background-color: #d0cb44;
}

.onoffswitch-checkbox:checked + .onoffswitch-label:hover {
    background-color: #DFDA58;
}

.onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before {
   border-color: #d0cb44;
}
.onoffswitch-checkbox:checked + .onoffswitch-label:before {
    right: 0px; 
}

.onoffswitch_status {
    float: right;
    margin-right: 10px;
    font-weight: 700;
    color: #D0CB44;
    font-size: 14px;
    line-height: 26px;
}

#other_form_popup {
    display: none;
}

#other_form_popup .header_holder h1 {
    font-size: 2.5em;
    font-weight: bold;
    color: #5F5F5F;
}

#other_form_popup .header_holder h2 {
    margin-bottom: 30px;
    border-bottom: 1px solid #F0F0F0;
    font-size: 20px;
    padding-bottom: 30px;
}

#other_blog_form label {
    text-align: left;
    margin-bottom: 8px;
}

#other_blog_form input {
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border-radius: 5px;
    border: 3px solid #EAEAEA;
    font-family: "Roboto Slab", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

#other_blog_form .submit_lock {
    margin-top: 25px;
    width: 100%;
    padding: 20px 30px;
    background: #F36C1B;
    font-size: 18px;
    border-bottom-color: #CE5C17;
}

#other_blog_form .submit_lock:hover {
    background: #F37A31;
}

#other_blog_form p.help_message {
    padding: 20px;
    text-align: left;
    background: #DBEDFA;
    margin: 0;
    font-size: 16px;
    margin-top: 110px;
    display: none;
}

.other_blog_message {
    max-width: 700px;
    font-size: 18px;
    line-height: 36px;
    margin: 3em auto;
    color: #5D5D5D;
    background: #FAFAFA;
    border: 1px solid #F2F2F2;
    border-left: 5px solid #F07A15;
    padding: 20px 30px;
}

.other_blog_message a {
    color: orange;
    text-decoration: none;
    border-bottom: 1px dashed orange;
}

.other_blog_message a:hover{
    color: #D58F52;
}