.msg_list {
	WIDTH: 100%;
	float: left;
}

.msg_head {
    position: relative;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;         /* ✅ include padding inside the 100% width */
    color: #323D47;
    float: left;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: left;
    padding: 5px 40px 15px 0;       /* space for the +/- on the right */
    margin: 0 0 20px 0;             /* ✅ no right margin pushing it out */
    border-bottom: 1px solid #cccccc;
}

.msg_head:hover {
    color: #000000;
}


.msg_body {
    float: left;
    width: 100%;
    text-align: left;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 24px;
    background-repeat: no-repeat;
    background-position: right bottom;
}



.msg_body h6 {
	float: left;
	width: 100%;
	text-align: left;
	font-size: 18px;
	line-height: 18px;
	color: #FFF;
	font-weight: 400;
}
.msg_body h5 {
	float: left;
	width: 100%;
	text-align: left;
	font-size: 16px;
	line-height: 18px;
	color: #232D5E;
	font-weight: 600;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}




.msg_body img {
	float: right;
	width: 70%;
	margin-bottom: 15px;
	margin-left: 15px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
}

.msg_body_content-images {
	float: left;
	width: 60%;
	text-align: left;
}


.msg_body li {
	list-style-image: url(/images/bullet.png);
	margin-left: 0px;
	margin-bottom: 10px;
	background-image: none;
}
.msg_body li.tick {
	clear: none;
	margin-left: -10px;
	list-style-image: url(/images/bullet_tick-col1.png);
	margin-bottom: 10px;
}


.arrow-up,
.arrow-down {
    position: absolute;
    right: 10px;                    /* safely inside the container */
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-position: center center;
    display: inline-block;
}

.arrow-up {
    background-image: url(/images/icon_minus.png);
}

.arrow-down {
    background-image: url(/images/icon_plus.png);
}







@media only screen and (max-width: 1060px) {
TABLET {
}

.msg_list_home {
	WIDTH: 60%;
	float: left;
	margin-left: 20%;
}
    
    
.msg_head {
   font-weight: 500;
    font-size: 18px;
    line-height: 22px;
}    



}




@media only screen and (max-width: 481px) {
MOBILE {
}

.msg_list_home {
	WIDTH: 100%;
	float: left;
	margin-left: 0%;
}

.msg_head {
}


}
