@charset "utf-8";

/*
-----------------------------------------------------------

Option: Color Format

-----------------------------------------------------------
*/


/*
-----------------------------------------------------------

Basic Setup

-----------------------------------------------------------
*/

/* Font Color */
.fc-black { color: #000 !important;}
.fc-white { color: #fff !important;}
.fc-gray { color: #999 !important;}
.fc-red { color: #F00 !important;}
.fc-yellow { color: #cc0 !important;}
.fc-orange { color: #ff9673 !important;}
.fc-blue { color: #09C !important;}
.fc-lightblue { color: #6CC !important;}
.fc-navy { color: #3498db !important;}
.fc-green { color: #090 !important;}
.fc-lightgreen { color: #9C0 !important;}
.fc-darkgreen { color: #678C00 !important;}
.fc-maroon { color: #6d0020 !important;}
.fc-marron { color: #c9a15e !important;}
.fc-turquoise { color: #1abc9c !important;}
.fc-salmon-pink { color: #FF9897 !important;}
.fc-sunflower { color: #f1c40f !important;}
.fc-rss { color: #fc0 !important;}

/* Background Color */
.bg-facebook { background-color: #3b5998 !important;}
.bg-facebook, .bg-facebook a { color: #fff !important;}
.bg-twitter { background-color: #0bf !important;}
.bg-twitter, .bg-twitter a { color: #fff !important;}
.bg-google-plus { background-color: #cd201f !important;}
.bg-google-plus, .bg-google-plus a { color: #fff !important;}
.bg-line { background-color: #00C500 !important;}
.bg-line, .bg-line a { color: #fff !important;}
.bg-rss { background: #fc0 !important;}
.bg-rss, .bg-rss a { color: #fff !important;}

.bg-rainbow {
	background: linear-gradient(124deg, #ff2400, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #ff2400);
	background-size: 2400% 2400%;
	-webkit-animation: rainbow 2s linear infinite;
	     -z-animation: rainbow 2s linear infinite;
	     -o-animation: rainbow 2s linear infinite;
	        animation: rainbow 2s linear infinite;
}

@keyframes rainbow { 
    0%{background-position:0% 0%}
    100%{background-position:100% 100%}
}