.post-date .skeleton { /* ?? */
    width: 100px;
}

.post-date span     {color:#a5a5a5;}

.post-date > img { display:none;
    /*width: 18px;
    height: 16px;
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 3px;
    margin-left: -3px;*/
}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */	
    .post-date > img    {width:5.6vw; height:5vw; margin-right:1vw;}
    .post-date span     {font-size:3.8vw;}
}
.social-network-icons {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}

.social-network-icons > img,
.social-network-icons a {
    margin-left:4px;
}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */
    .post-bottom .social-network-icons > img,	
    .post-bottom .social-network-icons a {
        margin-left:1vw;
    }
    .post-bottom .social-network-icons > img,
    .post-bottom .social-network-icons a img {
        width:5vw;
        height:5vw;
    }
}
.blog-tag-links {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.blog-tag-links .blog-tag-link {
    color: #1988fe;
    margin-right: 4px;
    font-size: 1.4rem;
    font-weight: 600;
    display: table;
}

.blog-tag-links ul {
    padding: 0; margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.blog-tag-links ul li {
    padding: 0;
    margin: 0;
    color: #bf7605;
    display: flex;
    justify-content: flex-start;
}

.blog-tag-links ul li:after {
    content: " /";
    margin-right: 5px;
}
.blog-tag-links ul li:last-child:after {
    display: none;
}

.blog-tag-links a {
    color: #bf7605;
    text-decoration: none;
    white-space: nowrap;
}

.blog-tag-links a:hover {
    text-decoration: underline;
}

.blog-tag-link.semi-skeleton { /* ?? */
    width: 20%;
    box-shadow: none;
}

@media screen and (max-width: 767px) { /* mobile view */    
    .blog-tag-links .blog-tag-link      {margin-right:1vw; font-size:3.6vw;}
}

.youtube-embed {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
	background-color: #000;
}

.youtube-embed .video-poster {
    display: none;
}

@media only screen and (max-width: 768px) {
    .youtube-embed .video-poster {
		display: block;
	}

	.youtube-embed .player {
		display: none;
	}

	.youtube-embed.play .player {
		display: block;
	}
}
  
.youtube-embed iframe {
    left: 0;
    top: 0;
    height: 100%;
    min-height: 183px;
    width: 100%;
    position: absolute;
}

.youtube-embed .video-poster {
    position: relative;
}

.youtube-embed .video-poster .poster {
	opacity: 0.7;
	width: 100%;
    height: 100%;
}

.youtube-embed .video-poster .title {
	color: #fff;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.3);
    padding: 1% 2%;
}

.youtube-embed .video-poster .play-container {
	left: 0;
	top: 0;
	width:100%;
	height: 100%;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;-webkit-filter: grayscale(1);
	-moz-filter: grayscale(1);
	filter: grayscale(1);
	transition: all 0.5s ease;
}

.youtube-embed .video-poster .play-container:hover {
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	filter: grayscale(0);
}

.youtube-embed .video-poster .play {	
	width: 22%;
    opacity: 0.9;
}
img.post-optimized.lazyloaded {
    height: auto !important;
    padding-top: unset !important;
}

div.post-optimized-wraper {
    width: 100%;
    display: block;
    position: relative;
    margin-right: auto;
    margin-left: auto;
}

.post .media.skeleton {
    padding-top: 50%;
    display: block;
}

.post .media {
    background-color: #eeeeee;
}

.post .media img {
    border-radius: 12px;
}

@keyframes skeleton-animation {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/*
    export const defaultBaseColor = "#eeeeee";
    export const defaultHighlightColor = "#f5f5f5";

    export const defaultBaseColor = "#c0c0c0";
    export const defaultHighlightColor = "#cccccc";
*/

.skeleton {
    background-color: #cacaca;
    background-image: linear-gradient( 90deg, #cacaca, #d5d5d5, #cacaca);
    background-size: 200px 100%;
    background-repeat: no-repeat;
    border-radius: 4px;
    display: inline-block;
    line-height: 1;
    width: 100%;
    animation: skeleton-animation 2.5s ease-in-out infinite;
}

/* .react-loading-skeleton {
        background-color: ${color};
        background-image: linear-gradient(
          90deg,
          ${color},
          ${highlightColor},
          ${color}
    ); */
.post.mini-post     {margin-bottom:40px !important; display: flex; flex-direction: column;}

.post.mini-post h2 {
    font-size: 145%;
    margin-bottom: 10px;
    color:#ff346b;
}

.post.mini-post .post-media     {order:1; margin-bottom:15px;}
.post.mini-post .post-title     {order:2;}
.post.mini-post .post-info      {order:3;}
.post.mini-post .post-brief     {order:4;flex-grow: 2;}
.post.mini-post .post-read      {order:5;}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */
    .post.mini-post                 {margin-bottom:8vw !important;}
    .post.mini-post h2              {margin-bottom:1.5vw;}
    .post.mini-post .post-media     {margin-bottom:3vw;}
    .post.mini-post .post-read      {display:table; margin:0 auto; padding-top:1vw;}
}
.post.tiny-post     {display:flex; margin-bottom:30px; align-items: flex-start;}

.post.tiny-post .post-media         {border-radius:5px; width:120px; margin-right:15px; margin-bottom:0; max-width:unset; overflow:hidden;flex-shrink: 0;}
.post.tiny-post .post-media img     {width:100%; display:block;}
.post.tiny-post .post-title         {padding-top:5px;}
.post.tiny-post h2                  {font-size:115%;}
.post.tiny-post a                   {text-decoration:none;}


.post.tiny-post .post-teaser-date   {flex-grow:2;} /* ?? */

.post.tiny-post .post-media .skeleton { /* ?? */
    border-radius: 100px;
}

@media screen and (max-width: 900px) and (min-width: 768px) {
    .post.tiny-post .post-media     {width:100px; margin-right:12px;}
}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */	
    .post.tiny-post                 {margin-bottom:8vw;}
    .post.tiny-post .post-media     {width:35vw; margin-right:5vw;}
    .post.tiny-post h2              {font-size:105%;}
}
.form-container {min-height: 30rem; min-width: 100%; border: solid 1px #01b3bb; display: flex; flex-direction: column; text-align: center; margin-top: 20px;}
.form-header {height:30%; width:100%; background-color: #00072C; padding: 1rem;}
.form-header h3 {color: white; font-weight: bold; margin-bottom: unset; padding: 1rem;}
.form-body {margin: 1rem 1rem 2rem 1rem; color: black; flex: auto; position: relative;}
.form-body .form-text-area {padding: 2px; font-size: 110%;}
.form-body .input-item {margin-bottom: 10px;}
.form-body .input-item input {border-radius: 500px; border: solid 1px #00072C;}
.form-body .submit-btn {background-color: #00072C; margin: 0 auto; height: auto; padding: 15px 30px; font-size: 150%; font-weight: 700;}
.thanks {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%); width: fit-content; font-size: 150%;}

span.invalid {color: red; display: block; margin-bottom: 1rem;}
span.invalid.wrong-req {margin-top: 2rem;}
.text-field { width: 85%; border: 1px #546f7a solid; outline: none; font-size: 1.6rem; color: #546f7a; margin: 0 1rem 0.4rem 1rem; border-radius: 5px; padding: 1rem; background-color: transparent !important;}
.text-field:focus { border-color: #000;}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */	
    .form-container { margin-top: 0px; margin-bottom: 20px;}
}


img.optimized.lazyloaded {
    height: auto !important;
    padding-top: unset !important;
}

img.optimized-external {
    object-fit: contain;
}

span.optimized-wraper {
    width: 100%;
    display: inline-block;
    position: relative;
    margin-right: auto;
    margin-left: auto;
}
.editor-box.twitter-box {
    display: table;
    margin: 0 auto 1em auto;
    max-width: 80%;
    min-height: 250px;
    min-width: 80%;
}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */	
    .editor-box.twitter-box {
        max-width: 90%;
    }
}

.editor-box.facebook-box {
    display: table;
    margin: 0 auto 2em auto;
    max-width: 100%;
    min-height: 250px;
}

.editor-box.facebook-box .fb-post {
    overflow-y: hidden;
    overflow-x: auto;
    max-width: 92vw;
}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */	
    .editor-box.facebook-box {
        max-width: 90%;
    }
}

.fr-video,
p.youtube-container,
.editor-box.youtube-box {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    display: block;
    margin-bottom: 2em;
}

.fr-video iframe,
p.youtube-container iframe, 
.editor-box.youtube-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.editor-box.instagram-box {
	min-width: 100px;
	min-height: 400px;
	text-align: center;
}

.editor-box.instagram-box > div {
	display: inline-block;
}
.editor-box.post-box {
    display: table;
    margin: 0 auto 2em auto;
    border: solid 2px #e6e6e6;
    text-align: left;
    max-width: 80%;
    padding: 30px;
    border-radius: 10px;
}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */	
    .editor-box.post-box {
        padding: 20px;
        max-width: 90%;
    }
}

.editor-box.post-box .postbox-img img {
    display: inline-block;
    border-radius: 5px;
}

.editor-box.post-box .postbox-img .postbox-img-ph {
    background-color: #ccc;
    padding-top: 50%;
}

.editor-box.post-box .postbox-caption a {
    text-decoration: none;
    cursor: pointer;
}

.editor-box.post-box .postbox-link a {
    background: #1988fe;
    border: none;
    color: #fff;
    margin: 0;
    text-decoration: none;
}

.editor-box.post-box .postbox-img {
    margin-bottom:20px;
}

.editor-box.post-boxh h3.postbox-caption {
    font-size:190%;
}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */
	.editor-box.post-box h3.postbox-caption {
        font-size:170%;
    }    
}

.post-body h2 {
    margin-bottom: 0.83em;
}

.blog-page .post-body a {
    text-decoration: underline;
}

.post-body button {
    margin-left: auto;
    margin-right: auto;
    font-size: 120%;
}

.post-body img {
    max-width: 100%;
    margin: 0 auto 2em auto;
}

.editor-box.post-box .postbox-img img {
    margin-bottom: 0;
}

.post-body p + img {
    margin-top: 2em;
}

.post-body p > img {
    margin-top: 2em;
}

.post-body p + h2 {
    margin-top: 0.83em;
}

.post-body p + .fr-video,
.post-body p + .editor-box {
    margin-top: 2em;
}

.post-container img {
    max-width: 100%;
}

.post-container img.fr-dib {
    display: none;
}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */
	.post-container .related-posts.blog-col-4 {
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 15px;
        margin-top: 30px;
    }
    .post-container .media {
        margin: 0 -4vw 4vw -4vw;
    }    
    .post-container .media img {
        width: 100%;
    }    
}

/********************************************/
.similar-posts				{border-top:#1988fe 2px solid; padding-top:23px;}
.similar-posts .title		{margin-bottom:20px; text-align:center;}
.similar-posts .title h2	{font-weight: 500;}
.post-page-container .similar-posts .post-brief	{margin-bottom:0;}
.similar-posts .post-read	{margin:0 auto;}

.post-body table.table-col-2 td {
    width: 49.505%;
}

.post-body table.table-col-3 td {
    width: 32.8611%;
}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */
	.post-body table.table-col-2 td {
        width: 100%;
        display: block;
    }

    .post-body table.table-col-3 td {
        width: 100%;
        display: block;
    } 
}

.post-body .post-body-banner > span
.post-body .post-body-banner {
    display: block;
}

.post-body .post-body-banner img {
    cursor: pointer;
    margin: 0;
}

.post-body .img-cta-container {
    margin-bottom: 2em;
}

.post-body .img-cta-container img {
    margin: 0;
}

.post-body .img-cta-container button.play {
    border-radius: 0;
    width: 100%;
    padding: 5px 20px;
}

.post-body button.play {
    margin: 0 auto;
}

.post-body button.play {
    margin: 0 auto;
    font-size: 28px;
    padding: 10px 30px;
    height: auto;
}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */
	.post-body button.play {
        width: 100%;
    }
}

.post-body iframe {
    max-width: 100%;
}
h1.page-title {
    margin-bottom: 0.75em;
}

h1.page-title.skeleton {
    color: transparent;
}

@keyframes shine-lines {
    0% {
      background-position: -100px;
    }
    40%, 100% {
      background-position: 140px;
    }
  }
  @keyframes shine-avatar {
    0% {
      background-position: -32px;
    }
    40%, 100% {
      background-position: 208px;
    }
  }

@media screen and (max-width: 767px) {
    h1.page-title {
        margin-bottom: 0.65em;
        font-size: 192%;
    }
}
.post-container .post-main-banner {
    margin: -25px 0 25px 0;
}

.post-container .post-main-banner img {
    cursor: pointer;
}

.post-container .post-main-banner .banner-terms {
    padding: 5px 7px;
    color: #fff;
    background-color: #13005b;
    font-size: 70%;
    line-height: 1.4rem;
}

.post-container .post-main-banner .banner-terms a {
    text-decoration: underline;
}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */
    .post-container .post-main-banner {
        margin: -6vw -4% 6vw -4%;
    }
}
.blog-banner {
    cursor: pointer;
}
.sidebar-container {
    display:flex;
    flex-direction: column;
    padding-top: 10px;
}

.sidebar-container button {
    margin: 0 auto;
}

.sidebar-container .sidebar-top        {position:relative;  margin-bottom:30px;}
.sidebar-container .sidebar-top h2     {margin:0; padding: 12px 0px 9px 0px; font-size: 120%;}

.sidebar-container .sidebar-bottom     {margin-bottom:30px;}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */	
    .sidebar-container .sidebar-bottom {
        display:flex;
        flex-direction: column-reverse;
        margin-bottom:0px;
    }
    .blog-home-page .sidebar-container .sidebar-bottom {
        position: relative;
    }
    .blog-home-page .sidebar-container .sidebar-bottom .blog-banner {        
        margin-top: 30px;
    }
    .sidebar-container .sidebar-top        {position:relative;  margin-bottom:10px;}
    .sidebar-container .blog-banner        {display: none;}
}



.post-page-container .post-brief {
    margin-bottom: 30px;
}

.post-page-container h1.page-title {
    margin-bottom: 30px;
    color: #ff346b;
}

.post-container .related-posts {
    margin-top: 50px;
}

.post-page-container .related-posts .tiny-post {
    margin-bottom: 20px;
}

.post-page-container .related-posts .post.tiny-post h2 {
    font-size: 110%;
}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */	
    .post-page-container  h1.page-title {
        margin-bottom: 7vw;
    }
}

.post-container .post-info {
    display: block;
}

.post-container .date-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-container .date-social .post-date {
    text-align: left;
}

.post-container .date-social .social-network-icons {
    margin-top: 0;
}

.header-sticky.blog #search-demi {
    display:table;
    width:26px;
    height:27px;
    border: none 0 transparent;
	margin:0; 
	background:#fff url('/img/search.png') no-repeat center center / cover;
	cursor:pointer;
}
.header-sticky.blog a.search-demi {
    text-decoration: none;
    display: flex!important;
    align-self: center;
    margin: 5px 11px 0 0;
}
.header-sticky.blog #search-demi > span		{display: none;}

.header-sticky.blog {
    position: sticky;
}

.header-sticky.blog a.logo {
    width: 60%;
    height: 54px;
    display: inline-block;
    overflow: hidden;
    max-width: 240px;
    padding-top: 12px;
}

.site-container-frca .header-sticky.blog a.logo,
.site-container-ca .header-sticky.blog a.logo {
    padding-top: 6px;
}

@media screen and (min-width: 1400px) {
    .header-sticky.blog a.logo {
        margin-left: -120px;
    }
}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */	
    .header-sticky.blog .logo {
        margin: 5px auto 0 auto;
        padding: 0;
    }

    .header-sticky.blog a.logo {
        height: unset;
        padding-top: 0px;
    }

    .header-sticky.blog .logo img {
        height: auto;
    }

    .header-sticky.blog #search-demi {
        margin:0;
        display: none;
    }

    .site-container-frca .header-sticky.blog a.logo,
    .site-container-ca .header-sticky.blog a.logo {
        padding-top: 0;
    }
}
.footer-main-blog .fb-footer {
    width: 100%;
}
#nav-blog-nav			{background-color: #eee; padding:5px 0;}
#nav-blog-nav ul		{text-align:left; margin:0; padding:0;}
#nav-blog-nav li		{display:block; margin:1px 0 0 0; list-style:none;}
#nav-blog-nav a			{display:block; color:#13005b; padding:10px 20px 10px 20px; font-size:2rem; line-height:115%; font-weight:400; text-decoration:none; cursor:pointer;}
#nav-blog-nav a:hover	{color:#fff; text-decoration:none;background-color: #1988FE;}
#nav-blog-nav li.negative a {color:#fff; background-color: #13005b;}

.top-nav-blog div.nav-buttons {
    background-color: #fff;
}
#top-nav.top-nav-blog {
    background: -moz-linear-gradient(left, #eee 0px, #eee 363px, transparent 364px, transparent 428px);
	background: -webkit-linear-gradient(left, #eee 0px, #eee 363px, transparent 364px, transparent 428px);
	background: linear-gradient(to right, #eee 0px, #eee 363px, transparent 364px, transparent 428px);
}

@media screen and (max-width: 767px) {
    .top-nav-blog {
        padding-right:16.666667vw;
    }
    .top-nav-blog #menu-X	{
        height: 61px;
        display:table;
        width: 16.666667vw;
        visibility: hidden;
    }
    .menu-open .top-nav-blog #menu-X	{
		left:83.333333vw;
        visibility: visible;
    }
    #top-nav.top-nav-blog {
        padding-right:16.666667vw;
        background: -moz-linear-gradient(left, #eee 0px, #eee 83.333333%, transparent 83.333333%, transparent 100%);
		background: -webkit-linear-gradient(left, #eee 0px, #eee 83.333333%, transparent 83.333333%, transparent 100%);
		background: linear-gradient(to right, #eee 0px, #eee 83.333333%, transparent 83.333333%, transparent 100%);
    }
    
    .site-container-en-GB #top-nav.top-nav-blog,
	.site-container-en-ROW #top-nav.top-nav-blog,
	.site-container-en-IE #top-nav.top-nav-blog,
	.site-container-en-CA #top-nav.top-nav-blog,
	.site-container-en-IN #top-nav.top-nav-blog,
	.site-container-en-NZ #top-nav.top-nav-blog,
	.site-container-ca #top-nav.top-nav-blog,
    .site-container-frca #top-nav.top-nav-blog  {
		top:86px;
	}
}
div.nav-img-home {
    background-image: url('/img/tab-home.png');
    min-width: 50px;
}

div.nav-img-slots {
    background-image: url('/img/tab-slots.png');
}

div.nav-img-instantWin {
    background-image: url('/img/tab-instantWin.png');
}

div.nav-img-casino {
    background-image: url('/img/tab-casino.png');
}

div.nav-img-bingo {
    background-image: url('/img/tab-bingo.png');
}

div.nav-img-LiveCasino {
    background-image: url('/img/tab-live-casino.png');
}
.main-tabs.blog.blog ul li.active a {
	font-weight: 900;
}



/********* Tabs 1'st level **********/
.main-tabs.blog {
    background-color: #13005b;
    padding: 8px 0px 8px 0px;
}

.main-tabs.blog ul {
    width: auto;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.main-tabs.blog ul li {
    margin: 0px 35px;
    font-size: 2rem;
    line-height: 115%;
    font-weight: 500;
    text-align: center;
    list-style: none;
}

.main-tabs.blog ul li a {
    display: block;
    color: #fff;
    text-decoration: underline;
	-webkit-transition: 0.25s ease;
    transition: 0.25s ease;
    font-size: 1.5rem;
}

.main-tabs.blog ul li.active a {
    color: #FEA645;
    font-weight: 900;
    text-decoration: none;
}

.main-tabs.blog ul li.hover a {
    text-decoration: underline;
}

@media screen and (max-width: 767px) { /* mobile view */
    .main-tabs.blog.blog {
        display: block;
        padding: 0;
        text-align: center;
        white-space: nowrap;
        position: relative;
    }

    .main-tabs.blog.blog:before,
    .main-tabs.blog.blog:after {
        content: "";
        height: 38px;
        position: absolute;
        top: 0; z-index: 9;
    }

    .main-tabs.blog.blog:before {
        width: 15px;
        left: 0;
        background: -moz-linear-gradient(left,rgba(19,0,91,1) 0%,rgba(19,0,91,0) 100%);
        background: -webkit-linear-gradient(left,rgba(19,0,91,1) 0%,rgba(19,0,91,0) 100%);
        background: linear-gradient(to right,rgba(19,0,91,1) 0%,rgba(19,0,91,0) 100%);
    }

    .main-tabs.blog.blog:after {
        width: 30px;
        right: 0;
        background: -moz-linear-gradient(left,rgba(19,0,91,0) 0%,rgba(19,0,91,1) 100%);
        background: -webkit-linear-gradient(left,rgba(19,0,91,0) 0%,rgba(19,0,91,1) 100%);
        background: linear-gradient(to right,rgba(19,0,91,0) 0%,rgba(19,0,91,1) 100%);
    }

    .main-tabs.blog.blog > div {
        width: 100vw;
        overflow: auto;
        margin-left: -15px;
        padding:8px 0px;
    }

    .main-tabs.blog.blog ul {
        display: block;
        padding: 0px 8vw 0px 8vw;
        text-align: center;
        white-space: nowrap;
        width: auto;
    }

    .main-tabs.blog.blog ul li {
        display: inline-block;
        margin: 0px 0vw 0px 0vw !important;
        padding: 0 3vw;
        font-size:3.6vw; line-height:115%;
        text-align: center;
    }

    .main-tabs.blog.blog ul li:first-child {
        padding-left: 2vw;
    }

    .main-tabs.blog.blog ul li:last-child {
        padding-right: 3vw;
    }
}

@media screen and (max-width: 767px) { /* mobile view */
    .main-tabs.blog          {padding:3.2vw 0px 3vw 0px;}
    .main-tabs.blog ul       {justify-content: space-around; width: 90%; margin: 0 auto;}
    .main-tabs.blog ul li    {font-size:4vw; line-height:115%; margin: 0;}
    .main-tabs.blog ul li a {
        text-decoration: none;
        font-size: 1.4rem;
    }
}
.blog-page .area-wrapper {
    max-width: 960px;
}
.blog-home-page > .area-wrapper  {max-width:100%; width:100%;}
@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */    
    .blog-page .area-wrapper {
        width: 92vw;
    }
}

.blog-page {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 1.5rem;
    line-height: 135%;
}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */    
    .blog-page {
        font-size: 3.8vw;
        line-height: 145%;
        padding-top: 20px;
    }
}

.blog-page a {
    text-decoration: none;
}
.blog-page a:hover {
    text-decoration: none;
}

.post.post-brief a,
.post.post-body a          {color:#ee9304; text-decoration:underline;}
.post.post-brief a:hover,
.post.post-body a:hover    {text-decoration:none;}

.blog-page h2   {font-size:210%;font-weight: 900;}

.blog-page h3,
.blog-page h4,
.blog-page h6 {
    font-weight: 700;
}

.blog-page h6 {
    margin: 0;
}

.blog-page h2 a,
.blog-page h3 a,
.blog-page h4 a,
.blog-page h6 a {
    color: #ff346b;
}

.blog-page p {
    line-height: 150%;
}

.blog-page-columns {
    display: grid;
    grid-template-columns: 66% auto;
    column-gap: 30px;
    padding-bottom: 30px;
}

.blog-col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
}

.blog-col-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 30px;
}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */
	.blog-page-columns {
        display: initial; padding-bottom: 6vw;
    }
    
    .blog-col-2 {
        display: initial;
    }
    
    .blog-col-4 {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 15px;
    }    

    .blog-page h1.page-title {
        margin-bottom: 5vw;
    }
}

/***********************************************/

.post-info    {display:flex; justify-content:space-between; margin-bottom:15px;}
.post-info .post-date  {width:100px; text-align:right;}

@media screen and (max-width: 767px) { /* mobile view */
    .post-info              {margin-bottom:4vw;}
    .post-info .post-date   {width:26vw;}
}

/***********************************************/

.post-teaser       {margin-bottom:2px;}
.post-teaser a     {color:#7d7d7d;}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */    
    .post-teaser      {margin-bottom:1vw;}
}

/***********************************************/

.post-read    {text-align: center; padding-top: 12px;}

.post-read a {
    height: auto;
    font-size: 18px;
    margin: 0px auto 0px auto;
    padding: 8px 20px;
    color: #1988fe;
    text-align: center;
    border: solid 2px #1988fe;
    line-height: 100%;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 500px;
    font-family: 'Maven Pro', arial, helvetica, sans-serif;
    box-sizing: border-box;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    display: inline-block;
}

.post-read a:hover,
.post-read a:active,
.post-read a:focus {
    background: #63afff;
    border-color: #63afff;
    text-decoration: none;
    color: #fff;
}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */	
    .post-read a {
        padding: 1.5vw 4vw 2vw 4vw;
        font-size: 4.5vw;
        margin-right: auto;
        margin-left: auto;
    }
}

/***********************************************/

#footer-fixed-container .blog-footer li a,
#footer-fixed-container .blog-footer li button {
        padding-top: 2.7vw;
}
#footer-fixed-container .blog-footer li img {
    width: 6vw;
    height: 6vw;
    margin-bottom: 2vw;
}

#footer-fixed ul.blog-footer li {
    width:20%;
}

#footer-fixed ul.blog-footer li button,
#footer-fixed ul.blog-footer li a {
    text-transform: initial;
}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */	
    .header-sticky.blog .header-line {
        height: 60px;
        align-items: center;
    }  
    .blog-page .load-more {
        width: 100%;
    }
    .header-sticky.blog .rgbeam-header.desktop {
        display: flex!important;
        min-height: 53px;
    }
}

/***********************************************/

.follow-us              {width:100%; background-color:#1988fe; padding:10px 0; text-align:center;}
.follow-us > div        {display:flex; justify-content:center;}
.follow-us > div span   {font-size:165%; line-height:115%; color:#fff; margin-right:10px; font-weight: 900;}
.follow-us > div a      { width:33px; margin-left:10px;}
.follow-us > div a img  { width:100%; height:auto;}

@media screen and (max-width: 767px) { /* mobile view */	
    .follow-us              {padding:3vw 0;}
    .follow-us > div span   {margin-right:2vw;}
    .follow-us > div a      {width:8vw; margin-left:2.6vw;}
}


.blog-primary-container {
    display: flex;
    justify-content: center;
    background-color: #1988fe;
    padding: 16px 0;
    font-size: 3rem;
}

.blog-primary-container span, .blog-primary-container a {
    display: flex;
    color: #fff;
    line-height: 100%;
    font-weight: 900;
    text-decoration: none;
}
.blog-primary-container a:hover {
    text-decoration: none;
    color: #fff;
}

.blog-primary-container svg {
    margin-left: 16px;
}

div.load-more	{padding:10px 0; text-align: center;margin-bottom: 20px;}
.blog-page a.load-more {
    height: auto;
    font-size: 18px;
    margin: 0px auto 0px auto;
    padding: 12px 20px;
    color: #fff;
    background: #1988fe;
    text-align: center;
    border: solid 2px #1988fe;
    line-height: 100%;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 500px;
    font-family: 'Maven Pro', arial, helvetica, sans-serif;
    box-sizing: border-box;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;display: inline-block;
}

.blog-page a.load-more:hover,
.blog-page a.load-more:active,
.blog-page a.load-more:focus {
    background: #63afff;
    border-color: #63afff;
    text-decoration: none;
    color: #fff;
}

.blog-page a.load-more .fa	{display:none;}


.header-sticky.blog .rgbeam-header.desktop {
    display: flex!important;
}

.col-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 4.5%;
}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */    
    .col-3 {
        display: grid;
        grid-template-columns: 1fr;
    }
}

.scroll-top-container.blog {
    bottom: 75px;
}
.post-page-container .midi-post		{margin-bottom:20px;}

.blog-post-page h1.page-title       {font-size:240%; line-height:115%; margin-bottom:10px;margin-left: 0;}
.blog-post-page .post-content .post {margin-bottom:30px;}
.blog-post-page .post-container .media {margin-bottom:25px;}
.blog-post-page .post-expend        {padding-top:15px; color:#000; cursor:pointer;}
.blog-post-page .post-content       {padding-top:15px;}
.blog-post-page .post-body hr       {border-color:#ee9304; margin-bottom:20px;}

.blog-post-page.post-container		{margin-bottom:40px;}

.blog-post-page h2      {font-size:145%;}
.blog-post-page h3      {font-size:120%;}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */
	.post-page-container .midi-post		{margin-bottom:5vw;}
    .blog-post-page .post-content .post {margin-bottom:8vw;}
    .blog-post-page .post-container	   	{margin-bottom:5vw;}
    .blog-post-page .post-container .media {margin-bottom:6vw;}
    .blog-post-page .post-expend        {padding-top:4vw;}
    .blog-post-page .post-content       {padding-top:4vw;}
    .blog-post-page h1.page-title       {font-size:210%; margin-bottom:3vw;}
    .blog-post-page .post-body hr       {margin-bottom:6vw;}
	.post-page-container .mobile .blog-banner   {width:108%; margin:0 -4vw 6vw -4vw;max-width: 108%;}
}

/**************************************/
.related-posts .title       {border-bottom:#1988fe 2px solid; padding-bottom:10px; margin-bottom:15px;}
.related-posts .title h2    {font-size:120%; margin:0; font-weight: 500;}

@media screen and (max-width: 767px) and (orientation: portrait) { /* mobile view */
    .related-posts .title       {padding-bottom:4vw; margin-bottom:5vw;}
}





