/******* CHANGE LOGIN TO BUTTON - start *******/
.WaGadgetLoginForm .loginContainer.authenticated.loginContainer.authenticated .loginLink {
width: 150px;
height: 50px;
}
.WaGadgetLoginForm .loginContainer.authenticated.loginContainer.authenticated .loginLink:before {
   font: normal 25px/50px 'Tahoma';
content: 'Profile';
}
.WaGadgetLoginForm .loginContainer.loginContainer .loginLink {
width: 150px;
height: 50px;
}
.WaGadgetLoginForm .loginContainer.loginContainer .loginLink:before {
font: normal 25px/50px 'Tahoma';
   content: 'Login';
}
/******* LOGIN BUTTON - COLORS *******/
/* Login button */
.WaGadgetLoginButton .loginLink, .WaGadgetLoginForm .loginLink {
    background: #34495e !important;
    color: white !important;
}
/* Login button on hover */
.WaGadgetLoginButton .loginLink:hover, .WaGadgetLoginForm .loginLink:hover {
    background: #4b5763 !important;
}
/* Logout button */
.WaGadgetLoginButton .authenticated .loginLink, .WaGadgetLoginForm .authenticated .loginLink {
    background: #34495e !important;
    color: white !important;
}
/* Logout button on hover */
.WaGadgetLoginButton .authenticated .loginLink:hover, .WaGadgetLoginButton .authenticated .loginLink.hover, .WaGadgetLoginForm .authenticated .loginLink:hover, .WaGadgetLoginForm .authenticated .loginLink.hover {
    background: #34495e !important;
    color: white !important;
}
/******* CHANGE LOGIN TO BUTTON - end *******/
.boxInfoContainer h5
{ display: none;}
.WaGadgetRecentBlogPosts .gadgetStyleBody ul li .author {
 display: none;
}
/* This is ID for specific row background to do rounded corners */
#id_GdARoaE
{
border-radius: 25px;
}

/* This is ID for specific TEXT BOX background to do rounded corners */
#id_fGmGtlH
{
border-radius: 20px;
}
/* This is ID for specific ROW 50/50 background to do rounded corners */
#id_rKdXqTl
{
border-radius: 25px;
}
/* This is ID for specific TEXT BOX background to do rounded corners */
#id_v4vJEJN
{
border-radius: 20px;
border-style: solid;
border-color: red;
}
/* This is ID for second specific ROW 50/50 background to do rounded corners */
#id_7tzBpAV
{
border-radius: 25px;
}
/* This is ID for specific TEXT BOX background to do rounded corners */
#id_wmjaW3q
{
border-radius: 20px;
border-style: solid;
border-color: red;
}
/* CSS to remove margin in footer */
.zoneWAbranding {
    margin: 0px 0 0;
}
/* START=Accordion Menu CSS */
.accordionMenu{
    width: 500px;
    margin: 0 auto;
}
.accordionMenu input[type=radio]{
    display: none;
}
.accordionMenu label{
    background: #2c97de;
    font-size: 18px;
    color: #fff;
    position: relative;
    cursor: pointer;
    display: block;
    height: 50px;
    line-height: 47px;
    padding: 0 25px 0 10px;
    border-bottom: 1px solid #e6e6e6;
    border-radius: 4px;
}
.accordionMenu label::after{
    display: block;
    content: "";
   border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    width: 0;
    height: 0;
    right: 10px;
    top: 20px;
    z-index: 10;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.accordionMenu .content{
    max-height: 0;
    height: 0;
    overflow: hidden;
   -moz-transition: all 2s ease-in-out;
    -o-transition: all 2s ease-in-out;
    -webkit-transition: all 2s ease-in-out;
    transition: all 2s ease-in-out;
}
.accordionMenu .content .inner{
    font-size: 1.2rem;
    color: #2c97de;
    line-height: 1.5;
    background: white;
    padding: 20px 10px;
}
.accordionMenu input[type=radio]:checked + label:after{
   -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
 
.accordionMenu input[type=radio]:checked + label + .content{
    max-height: 2000px;
    height: auto;
}
/* END=Accordion Menu CSS */