<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@-webkit-keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}

.animated {
     -webkit-animation-duration: 1s;
     animation-duration: 1s;
     -webkit-animation-fill-mode: both;
     animation-fill-mode: both;
}
 .animated.infinite {
     -webkit-animation-iteration-count: infinite;
     animation-iteration-count: infinite;
}
 @-webkit-keyframes bounce {
     from, 20%, 53%, 80%, to {
         -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
         animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
         -webkit-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0);
    }
     40%, 43% {
         -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
         animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
         -webkit-transform: translate3d(0, -30px, 0);
         transform: translate3d(0, -30px, 0);
    }
     70% {
         -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
         animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
         -webkit-transform: translate3d(0, -15px, 0);
         transform: translate3d(0, -15px, 0);
    }
     90% {
         -webkit-transform: translate3d(0, -4px, 0);
         transform: translate3d(0, -4px, 0);
    }
}
 @keyframes bounce {
     from, 20%, 53%, 80%, to {
         -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
         animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
         -webkit-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0);
    }
     40%, 43% {
         -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
         animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
         -webkit-transform: translate3d(0, -30px, 0);
         transform: translate3d(0, -30px, 0);
    }
     70% {
         -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
         animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
         -webkit-transform: translate3d(0, -15px, 0);
         transform: translate3d(0, -15px, 0);
    }
     90% {
         -webkit-transform: translate3d(0, -4px, 0);
         transform: translate3d(0, -4px, 0);
    }
}
 /* .bounce { */
     /* -webkit-animation-name: bounce; */
     /* animation-name: bounce; */
     /* -webkit-transform-origin: center bottom; */
     /* transform-origin: center bottom; */
/* } */

 .play{
     color:#fff;
    /* vertical-align:middle;
     */
     padding-left: 15px;
    /* padding-top: 30px;
     */
     line-height: 1;
}
 .play-icon{
     width: 35px;
     margin-top: -10px;
}

 @-moz-keyframes bounce {
     0%, 20%, 50%, 80%, 100% {
         -moz-transform: translateY(0);
         transform: translateY(0);
    }
     40% {
         -moz-transform: translateY(-8px);
         transform: translateY(-8px);
    }
     60% {
         -moz-transform: translateY(-4px);
         transform: translateY(-4px);
    }
}
 @-webkit-keyframes bounce {
     0%, 20%, 50%, 80%, 100% {
         -webkit-transform: translateY(0);
         transform: translateY(0);
    }
     40% {
         -webkit-transform: translateY(-8px);
         transform: translateY(-8px);
    }
     60% {
         -webkit-transform: translateY(-4px);
         transform: translateY(-4px);
    }
}
 @keyframes bounce {
     0%, 20%, 50%, 80%, 100% {
         -moz-transform: translateY(0);
         -ms-transform: translateY(0);
         -webkit-transform: translateY(0);
         transform: translateY(0);
    }
     40% {
         -moz-transform: translateY(-8px);
         -ms-transform: translateY(-8px);
         -webkit-transform: translateY(-8px);
         transform: translateY(-8px);
    }
     60% {
         -moz-transform: translateY(-4px);
         -ms-transform: translateY(-4px);
         -webkit-transform: translateY(-4px);
         transform: translateY(-4px);
    }
}
 /* .bounce { */
     /* -moz-animation: bounce 2s infinite; */
     /* -webkit-animation: bounce 2s infinite; */
     /* animation: bounce 2s infinite; */
/* } */
.play-game:hover .bounce{
	 -webkit-animation-name: bounce;
     animation-name: bounce;
     -webkit-transform-origin: center bottom;
     transform-origin: center bottom;
	  -moz-animation: bounce 2s infinite;
     -webkit-animation: bounce 2s infinite;
     animation: bounce 2s infinite;
}
.play-game{
	background: #2222226b;
	padding: 6px 20px;
    margin-right: 10px;
    position: relative;
    top: -2px;
    height: 37px;
}
.play-game.playing{
	cursor: pointer;
	padding-left: 6px;
	background:#ff3535d9
}
.play-game.playing:hover{
	background:#ff3535d9
}
 .modal-game {
     display: none;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     overflow-y: auto;
     overflow-x: hidden;
     z-index: 1000; 
     -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
     transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
     -webkit-transition-delay: 400;
     transition-delay: 400;
	 opacity: 0;
}
.modal-game::-webkit-scrollbar {
    display: none;
}
 .play-game:hover,.play-game:focus{
	text-decoration: none;
	background-color: #4285f4;
}
 .modal--active {
	-webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
	 opacity: 1;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
}
 .modal--align-top {
     -webkit-box-align: start;
     -ms-flex-align: start;
     align-items: flex-start;
}
 .modal__bg {
     background: transparent;
}
 .modal__dialog {
     padding: 1.2rem;
     max-height: 660px;
     margin: 0px 30px;
     z-index: 99999999999999999999;
     position: relative;
	 width: 795px;
}
 .modal__content {
     will-change: transform, opacity;
     position: relative;
     background: #ecf0f1;
     background-clip: padding-box;
     -webkit-box-shadow: 0 12px 15px 0 rgba(0,0,0,0.25);
     box-shadow: 0 12px 15px 0 rgba(0,0,0,0.25);
     display: none;
}
 .modal__content--active {
     display: block;
     height: 532px;
     overflow-y: auto;
     max-width: 100%;
}
#game_container{
	position: absolute!important;
    z-index: 99999!important;
    margin: 0 auto!important;
    text-align: center;
    width: 100%!important;
    top: 1%!important;
    overflow: auto!important;
}
#game_container .modal__content{
	height: 532px;
}
#game_container::-webkit-scrollbar {
    display: none;
}
 .modal__close {
	 color: #fff;
     z-index: 1100;
     cursor: pointer;
}
 .modal__close:hover {
	 color: #fff;
}
 .modal__trigger {
     color: rgba(0,0,0,0.7);
     line-height: 1;
     cursor: pointer;
     -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);
     box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);
     -webkit-tap-highlight-color: rgba(0,0,0,0);
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
     -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
     transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
 .modal__trigger--active {
     z-index: 10;
}
 #modal__temp {
     will-change: transform, opacity;
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     -webkit-transform: none;
     transform: none;
     opacity: 1;
}
 
 @font-face {
     font-family: 'anyoldicon';
     src:url('../fonts/anyoldicon/anyoldicon.eot');
     src:url('../fonts/anyoldicon/anyoldicon.eot?#iefix') format('embedded-opentype'), url('../fonts/anyoldicon/anyoldicon.woff') format('woff'), url('../fonts/anyoldicon/anyoldicon.ttf') format('truetype'), url('../fonts/anyoldicon/anyoldicon.svg#anyoldicon') format('svg');
     font-weight: normal;
     font-style: normal;
}
/* General grid styles */
 .cbp-ig-grid {
     list-style: none;
     margin: 0;
	padding: 0 15px;
	padding-bottom: 15px;
   display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
/* Clear floats */
 .cbp-ig-grid:before, .cbp-ig-grid:after {
     content: " ";
     display: table;
}
 .cbp-ig-grid:after {
     clear: both;
}
/* grid item */
 .cbp-ig-grid li {
     border-top: 1px solid #ddd;
}

/* anchor style */
 .cbp-ig-grid li &gt; a {
     display: block;
     height: 100%;
     color: #47a3da;
     -webkit-transition: background 0.2s;
     -moz-transition: background 0.2s;
     transition: background 0.2s;
}
/* the icon with pseudo class for icon font */
 .cbp-ig-icon {
     padding: 30px 0 0 0;
     display: block;
     -webkit-transition: -webkit-transform 0.2s;
     transition: -moz-transform 0.2s;
     transition: transform 0.2s;
}
 .cbp-ig-icon:before {
     font-family: 'anyoldicon';
     font-size: 14em;
     speak: none;
     font-style: normal;
     font-weight: normal;
     font-variant: normal;
     text-transform: none;
     line-height: 1;
     -webkit-font-smoothing: antialiased;
}
 .cbp-ig-icon-shoe:before {
     content: "\e000";
}
 .cbp-ig-icon-ribbon:before {
     content: "\e001";
}
 .cbp-ig-icon-milk:before {
     content: "\e002";
}
 .cbp-ig-icon-whippy:before {
     content: "\e003";
}
 .cbp-ig-icon-spectacles:before {
     content: "\e004";
}
 .cbp-ig-icon-doumbek:before {
     content: "\e007";
}
/* title element */
 .cbp-ig-grid .cbp-ig-title {
     margin: 20px 0 10px 0;
     padding: 20px 0 0 0;
     font-size: 1em;
     position: relative;
     -webkit-transition: -webkit-transform 0.2s;
     -moz-transition: -moz-transform 0.2s;
     transition: transform 0.2s;
}
 .cbp-ig-grid .cbp-ig-category {
     text-transform: uppercase;
     display: inline-block;
     font-size: 1em;
     letter-spacing: 1px;
     color: #fff;
     -webkit-transform: translateY(10px);
     -moz-transform: -moz-translateY(10px);
     -ms-transform: -ms-translateY(10px);
     transform: translateY(10px);
     opacity: 0;
     -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
     -moz-transition: -moz-transform 0.3s, opacity 0.2s;
     -webkit-transition: transform 0.3s, opacity 0.2s;
}
 @media screen and (max-width: 62.75em) {
     .cbp-ig-grid li {
         width: 50%;
    }
    /* reset the grid lines */
     .cbp-ig-grid li:nth-child(-n+3){
         border-top: 1px solid #ddd;
    }
     .cbp-ig-grid li:nth-child(3n-1), .cbp-ig-grid li:nth-child(3n-2) {
         box-shadow: none;
    }
     .cbp-ig-grid li:nth-child(-n+2){
         border-top: none;
    }
     .cbp-ig-grid li:nth-child(2n-1) {
         box-shadow: 1px 0 0 #ddd;
    }
     .game-thumb{
         max-height:80px;
         max-width:80px;
         width:50%;
         height:105px 
    }
}
 @media screen and (max-width: 41.6em) {
     .cbp-ig-grid li {
         width: 100%;
    }
     .cbp-ig-grid li:nth-child(-n+2){
         border-top: 1px solid #ddd;
    }
     .cbp-ig-grid li:nth-child(2n-1) {
         box-shadow: none 
    }
     .cbp-ig-grid li:first-child {
         border-top: none;
    }
     .game-thumb{
         max-height:80px;
         max-width:80px;
         width:80px;
         height:105px 
    }
}
 @media screen and (max-width: 25em) {
     .cbp-ig-grid {
         font-size: 80%;
    }
     .cbp-ig-grid .cbp-ig-category {
         margin-top: 20px;
    }
     .game-thumb{
         max-height:80px;
         max-width:80px;
         width:80px;
         height:105px 
    }
}
 .cbp-ig-grid li{
     background: #fff;
     padding: 10px;
     box-shadow: 0 1px 5px 1px rgba(0,0,0,0.2);
     margin-right: 5px;
     margin-top: 20px;
     margin-left: 5px;
	 height: 153px;
}
 .cbp-ig-title{
     padding: 0 !important;
     margin: 0 !important;
     text-align: left;
     padding-top: 5px;
     background: transparent!important;
    /* padding: 5px !important;
     */
     margin: 5px 0 !important;
     font-size: 1rem;
     color: #47a3da;
     font-weight: 400;
    /* background: #222222ed;
     */
    /* padding: 10px 0;
     */
     margin: 0;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     max-width: 150px;
}
 .category{
     color: #222;
    /* padding-left: 5px;
     */
     text-align: left;
     font-style: italic;
     margin-bottom: 5px;
     height: 25px;
     overflow: hidden;
     white-space: nowrap;
     text-overflow: ellipsis;
}
 .cbp-ig-title:hover{
     text-decoration:none 
}
 .cbp-ig-grid li a:hover{
     text-decoration:none 
}
 .downloads{
     font-size: 12px;
     color: #80b334;
     text-align: left;
     padding-top: 10px;
     padding-bottom: 0;
     margin-bottom: 0;
}
 .star-rating, .back-stars, .front-stars {
     display: flex;
}
 .star-rating {
     align-items: left;
     font-size: 1em;
     justify-content: left;
}
 .back-stars {
     color: #ecf0f1;
     position: relative;
     text-shadow: 1px 1px 1px #464a4c7a;
}

 .front-stars {
     color: #FFBC0B;
     overflow: hidden;
     position: absolute;
     text-shadow: 1px 1px #d29b0936;
     top: 0;
}
 .cbp-ig-grid li:hover{
     background:#5cb85c14;
     box-sizing: border-box;
     -moz-box-sizing: border-box;
     -webkit-box-sizing: border-box;
}
 .games-modal-overlay {
    z-index: 9999;
	display: none;
    height: 100%;
    width: 100%;
    opacity: 0.25;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     margin: auto;
     background: #00000040;
	 animation-name: fade_in;
    animation-duration: 1s;
    animation-fill-mode: both
}
 .games-modal-overlay.playing {
	-webkit-transition: background-color 1000ms linear;
    -ms-transition: background-color 1000ms linear;
	transition: background-color 1000ms linear;
	background: #000000f7
}
.games_container .loader img{
	margin: 0 auto;
    margin-top: 170px;
}

.modal__content::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}
.modal__content::-webkit-scrollbar-thumb {
    background-color: #292b2c;
}
.modal__content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}
#games_modal{
	width: 855px;
}
.games-send-feedback{
	display: block;
    background: #464a4c;
    color: #ddd;
    width: 100%;
    padding: 5px 19px;
    text-align: center;
}
.games-send-feedback:hover,.games-send-feedback:focus{
	color: #fff;
}
.game-thumb{
	width: 150px;
	height: 110px;
}</pre></body></html>