/*
Theme Name: WING-AFFINGER5 Child
Template: affinger5
Description: ver20180831以上対応
Version: 20180831
*/



/*media Queries スマートフォンとタブレットサイズ（959px以下）で適応したいCSS - スマホ・タブレット
---------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 959px) {


	/*-- ここまで --*/
}
	
/*media Queries タブレットサイズ（600px～959px）のみで適応したいCSS -タブレットのみ
---------------------------------------------------------------------------------------------------*/
@media only screen and (min-width: 600px) and (max-width: 959px) {


	/*-- ここまで --*/
}	
	
/*media Queries タブレット（600px）以上で適応したいCSS -タブレット・PC
---------------------------------------------------------------------------------------------------*/
@media only screen and (min-width: 600px) {


	/*-- ここまで --*/
}

/*media Queries PCサイズ（960px）以上で適応したいCSS - PCのみ
---------------------------------------------------------------------------------------------------*/
@media print, screen and (min-width: 960px) {


	/*-- ここまで --*/
}

/*media Queries スマホサイズ（599px）以下で適応したいCSS - スマホのみ
---------------------------------------------------------------------------------------------------*/
@media print, screen and (max-width: 599px) {

	
	/*-- ここまで --*/
}

/* 購入者ログ */

#emc-sc-order_history {
  height: 295px;
  border: 1px solid #777;
  margin: 0 1px 20px 1px;
}

#emc-sc-order_history p {
  margin: 0;
  margin-bottom: 4px;
}

#emc-sc-order_history h5 {
  margin: 0;
  font-weight: normal;
}

#emc-sc-order_history .ureyuki {
  height: 30px;
  padding: 5px;
  text-align: center;
  background-color: #6a6a6a;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
}

#emc-sc-order_history

#sidebar {
  color: #afb0b1;
  background: FFF000;
  float: left;
  margin: 0;
  width: 100%;
  background-color: #fff;
}

#emc-sc-order_history #sidebar ul {
  margin: 0;
  padding: 0;
  position: relative;
}

#emc-sc-order_history #sidebar li {
  margin: 0;
  padding: 0;
  height: 85px;
  overflow: hidden;
  list-style: none;
}

#emc-sc-order_history #sidebar li:before {
  content: "";
}

#emc-sc-order_history .data {
  border: 1px solid #777;
  height: 82px;
  padding: 5px;
  margin: 5px;
  background-color: #fff;
}

#emc-sc-order_history #sidebar li h5 {
  color: #666;
  font-size: 9pt;
  font-weight: bold;
  margin: 0;
  text-align: center;
  line-height: 1.4;
}

#emc-sc-order_history .money {
  font-size: 11pt;
  color: #ed0a17;
  font-weight: bold;
  padding: 0 5px;
  word-break: normal;
}

#emc-sc-order_history #sidebar li img {
  float: left;
  margin-right: 5px;
}

#emc-sc-order_history #sidebar li .info {
  color: #999;
  font-size: 8pt;
  margin-top: 0;
  text-align: center;
  line-height: 1.4;
}

#emc-sc-order_history #sidebar .spyWrapper {
  height: 100%;
  overflow: hidden;
  position: relative;
}

#emc-sc-order_history a img {
  border: 0;
}

#emc-sc-order_history .left-icon-fa-desktop {
  float: left;
  font-size: 30px;
  margin: 3px 3px 0 3px;
}

#emc-sc-order_history .left-icon-fa-mobile {
  float: left;
  font-size: 40px;
  margin: 0 9px 0 10px;
}
/* 購入者ログ ここまで */

/* タイマーデザイン */
.timer{
	display:block;
	width:100%;
	background-color: black;
	color:red;
	text-align:center;
}
/* タイマーデザイン ここまで */

/* ぷるるんボタン */
/*左矢印+ボタン波形 ---------------------------------------------------------*/
.arr_wave{
	/*overflow:hidden;*/
}
.arr_wave a{
	position: relative;
	width: 100%;
	max-width: 400px;
	display: block;
	height: 140px;
	margin-right: auto;
	margin-left: auto;
	padding-bottom:10px;
}
/*ﾎﾞﾀﾝ(波形)---------------------------------------------------------*/
.arr_wave a .btn_wave{
	position: absolute;
	left: 50%;
	bottom: 10px;
	/*width: 300px;*/
	/*height: 131px;*/
	max-width: 100%;
    height: auto;
	margin-left: -150px;
	z-index: 1;
	
	animation-name: btn_wave;
	animation-duration: 3s;
	animation-timing-function: ease-in;
	animation-iteration-count: infinite;
	animation-direction: normal;
	
	-webkit-animation-name: btn_wave;
	-webkit-animation-duration: 3s;
	-webkit-animation-timing-function: ease-in;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: normal;
	
	-moz-animation-name: btn_wave;
	-moz-animation-duration: 3s;
	-moz-animation-timing-function: ease-in;
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction: normal;
}
@keyframes btn_wave {
	0% {transform: skewX(10deg);}
	7% {transform: skewX(-8deg);}
	14% {transform: skewX(6deg);}
	21% {transform: skewX(-5deg);}
	28% {transform: skewX(4deg);}
	35% {transform: skewX(-3deg);}
	42% {transform: skewX(2deg);}
	49% {transform: skewX(0deg);}
	100% {transform: skewX(0deg);}
	
}
@-webkit-keyframes btn_wave {
	0% {-webkit-transform: skewX(10deg);}
	7% {-webkit-transform: skewX(-8deg);}
	14% {-webkit-transform: skewX(6deg);}
	21% {-webkit-transform: skewX(-5deg);}
	28% {-webkit-transform: skewX(4deg);}
	35% {-webkit-transform: skewX(-3deg);}
	42% {-webkit-transform: skewX(2deg);}
	49% {-webkit-transform: skewX(0deg);}
	100% {-webkit-transform: skewX(0deg);}
}
@-moz-keyframes btn_wave {
	0% {-moz-transform: skewX(10deg);}
	7% {-moz-transform: skewX(-8deg);}
	14% {-moz-transform: skewX(6deg);}
	21% {-moz-transform: skewX(-5deg);}
	28% {-moz-transform: skewX(4deg);}
	35% {-moz-transform: skewX(-3deg);}
	42% {-moz-transform: skewX(2deg);}
	48% {-moz-transform: skewX(0deg);}
	100% {-moz-transform: skewX(0deg);}
}

/*矢印(左)---------------------------------------------------------*/
.arr_wave a .btn_arr{
	position: absolute;
	z-index: 2;
	width:80px;
	height:80px;
	top: 50%;
	margin-top:-40px;
	
	animation-name: btn_arr;
	animation-duration: 0.6s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction:alternate;
	
	-webkit-animation-name: btn_arr;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction:alternate;
	
	-moz-animation-name: btn_arr;
	-moz-animation-duration: 0.6s;
	-moz-animation-timing-function: ease-in-out;
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction:alternate;
}
@keyframes btn_arr {0% {left: -35px;}100% {left: 5px;}}
@-webkit-keyframes btn_arr {0% {left: -35px;}100% {left: 5px;}}
@-moz-keyframes btn_arr {0% {left: -35px;}100% {left: 5px;}}
/* ぷるるんボタン ここまで */

/* 文字点滅 */
.blinking{
	color:red;
    -webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

strong{
	color:blue;
}

/************************************
** テーブル アプリ
************************************/
#app-table{
    text-align:center;
}
#app-table th{
	background-color: #FEA79E;
    color: white;
	font-size: 14px;
    line-height: 20px;
	font-weight:bolder;
    border:2px solid white;
}
#app-table td{
	background-color: #FEF7F7;
	border:2px solid white;
	font-size: 14px;
    line-height: 20px;
	vertical-align: middle !important;
}

/*基本のフォントサイズ*/
p, /* テキスト */
.st-kaiwa-hukidashi, /* ふきだし */
.st-kaiwa-hukidashi2, /* ふきだし */
.yellowbox, /* 黄色ボックス */
.graybox, /* グレーボックス */
.redbox, /* 薄赤ボックス */
#topnews .clearfix dd p, /* 一覧文字 */
.post ul li, /* ulリスト */
.post ol li, /* olリスト */
#comments #respond, /* コメント */
#comments h4, /* コメントタイトル */
.post h5, /* H5 */
.post h6 /* H6 */
 {
	font-size: 18px !important;
	line-height: 30px !important;
}
.oomozi{
	font-size: 24px !important;
}
#slider1 p{
	font-size: 16px !important;
}
#slider2 p{
	font-size: 16px !important;
}
#slider3 p{
	font-size: 16px !important;
}
#slider4 p{
	font-size: 16px !important;
}

/*ボタンアニメーション*/
.animate73,.a-option73,.a-btnsub73 {
	-webkit-animation-timing-function: ease-in;
	-moz-animation-timing-function: ease-in;
	-o-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
	-moz-animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
a.a-btn {
	position:relative;
	display:inline-block;
	margin:auto;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
a.a-btn img {
	display: block;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
img.a-main {
	width:100%;
	position:relative;
	z-index: auto;
}
a.shover:hover * {
	animation-name:none!important;
}
@-moz-keyframes animate73 {
	0%{ transform:scale(1);
	}60%{ transform:scale(1);
	}70%{ transform:scale(1.05);
	}80%{ transform:scale(1);
	}90%{ transform:scale(1.05);
	}100%{ transform:scale(1);
	}
}
@-o-keyframes animate73 {
	0%{ transform:scale(1);
	}60%{ transform:scale(1);
	}70%{ transform:scale(1.05);
	}80%{ transform:scale(1);
	}90%{ transform:scale(1.05);
	}100%{ transform:scale(1);
	}
}
@-webkit-keyframes animate73 {
	0%{ transform:scale(1);
	}60%{ transform:scale(1);
	}70%{ transform:scale(1.05);
	}80%{ transform:scale(1);
	}90%{ transform:scale(1.05);
	}100%{ transform:scale(1);
	}
}
@keyframes animate73 {
	0%{ transform:scale(1);
	}60%{ transform:scale(1);
	}70%{ transform:scale(1.05);
	}80%{ transform:scale(1);
	}90%{ transform:scale(1.05);
	}100%{ transform:scale(1);
	}
}
.animate73{
	-webkit-animation-name: animate73;
	-moz-animation-name: animate73;
	-o-animation-name: animate73;animation-name: animate73;
}
</style>
<style type="text/css" class="style_custom">
.a-btn73{
	padding-left:0%!important;
}
.a-option73{
	top:0%!important;
}.
a-option73{
	width:20%!important;
}
.a-btn73{
	max-width:100%!important;
}
.animate73,.a-btnsub73,.a-option73{
	animation-duration:2s!important;
	-webkit-animation-duration:2s;
	-ms-animation-duration:2s;
	-moz-animation-duration:2s!important;
}
/*ボタンアニメーション ここまで*/

/*固定ページのタイトル・余白を非表示*/
#st-page .entry-title:not(.st-css-no2) {
    display: none;
}
/*固定ページのタイトル・余白を非表示 ここまで*/

.review{
    box-sizing: border-box;
    list-style: none;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0px 12px;
    background: #fff;
    border-radius: 6px;
    position: relative;
    border: 1px solid #ccc !important;
    box-shadow: 3px 3px #ffc7d3;
}

/*注釈文字の色調整*/
.komozi{
	color: #999999 !important;
	font-size: 8pt !important;
}

/*pangle アンケートLP*/
.komozi{
	font-size: 10px !important;
	color:#808080 !important;
}
.rankstlink-r2 p a{
padding: 18px !important;
font-size: 22px !important;
}
/* チェックボックス03 */
input[type=checkbox] {
    display: none;
}
.checkbox03 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.checkbox03::before {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.checkbox03::after {
    border-right: 6px solid #FF0066;
    border-bottom: 3px solid #FF0066;
    content: '';
    display: block;
    height: 20px;
    left: 7px;
    margin-top: -16px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    width: 9px;
}
input[type=checkbox]:checked + .checkbox03::before {
    border-color: #666;
}
input[type=checkbox]:checked + .checkbox03::after {
    opacity: 1;
    transform: rotate(45deg) scale3d(1,1,1);
}

/******************************
** フローティングメニュー１
******************************/

#footer-sliderx {
	width: 100%;
	height: 50px;
	overflow: hidden;
	position: fixed;
    bottom: 0px;
    left: 0px;
	z-index: 10;
}

.sliderx-wrapper {
	width: 100%;
	position: relative;
}

.sliderx{
	text-align: center;
	vertical-align: middle;
	width: 100%;
	height: 50px;
	position: absolute;
	display: table;
}

.sliderx p{
	text-align: center;
	vertical-align: middle;
	display: table-cell;
}
 
#slider1 {
	background-color: rgba(66, 66, 66, 0.8);
	color: white;
	animation: slider1 18s infinite;
}

#slider2 {
	background-color: rgba(66, 66, 66, 0.8);
	color: white;
	animation: slider2 18s infinite;
}

#slider3 {
	background-color: rgba(66, 66, 66, 0.8);
	color: white;
	animation: slider3 18s infinite;
}

#slider4 {
	background-color: rgba(66, 66, 66, 0.8);
	color: white;
	animation: slider4 18s infinite;
}

.blink {
	animation-name: flash;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-iteration-count: infinite;
}

.up-down {
	animation-name: updown;
    animation-duration: 3s;
    animation-delay: 2.5s;
    animation-iteration-count: infinite;
}

@keyframes slider1 {
  0% { top: 0px; }
  23% { top: 0px;}
  33% { top: -50px;}
  56%  {top: -50px;}
  66% {top: -50px;}
  90% { top: -50px;}
  100% { top: -50px;}
}

@keyframes slider2 {
  0% { top: 50px; }
  23% { top: 50px;}
  33% { top: 0px;}
  56%  {top: 0px;}
  66% {top: -50px}
  90% { top: -50px;}
  100% { top: -50px; }
}

@keyframes slider3 {
  0% { top: 50px; }
  33% { top: 50px;}
  56% {top: 50px}
  66% {top: 0px}
  90% { top: 0px;}
  100% { top: -50px; }
}

@keyframes slider4 {
  0% { top: 50px; }
  33% { top: 50px;}
  66% {top: 50px}
  90% { top: 50px;}
  100% { top: 0px; }
}

@keyframes flash {
  0% { opacity: 1; }
  25% { opacity: 0;}
  50% {opacity: 1;}
  75% { opacity: 0;}
  100% { opacity: 1; }
}

@keyframes updown {
  0% { transform: translateY(0); }
  20% { transform: translateY(0);}
  40% { transform: translateY(-12px);}
  50% { transform: translateY(0);}
  60% { transform: translateY(-12px);}
  30% { transform: translateY(0);}
  100% { transform: translateY(0);}
}

/******************************
** フローティングメニュー
******************************/
.floating {
  position: fixed;
  right: 8px;
  bottom: 8px;
  display: none;
}

.floating a {
  display: block;
  color: #fff;
  background: #000;
  padding: 8px;
  text-decoration: none;
  opacity: 0.6;
}

.floating a:hover {
  opacity: 1;
}

#footer-banner{
    width: 100%;
    height: 500px;
    position: fixed;
    bottom: 50px;
    display: none;
}
    
#footer-banner-inner{
    position: relative;
    width: 100%;
    height: 100%;
}
    
.fa-window-close{
    color: #ff0000;
    position: absolute;
    top: 10px;
    right: 10px;
}
    
#anim-obj1{
	width: 65%;
    height: auto;
    position: absolute;
	z-index: 6;
	animation-name: anim1;
	animation-duration: 0.3s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
    animation-direction: alternate;
}
    
#anim-obj2{
	width: 18%;
    height: auto;
    position: absolute;
	z-index: 0;
}
    
#anim-obj3{
	width: 60%;
    height: auto;
    position: absolute;
	z-index: 3;
}

#anim-obj4{
	width: 65%;
    height: auto;
    position: absolute;
	animation-name: anim3;
	animation-duration: 0.8s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	z-index: 4;
}


#anim-obj5{
	width: 12%;
    height: auto;
    position: absolute;
	animation-name: anim2;
	animation-duration: 0.4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
	z-index: 5;
}
 
#anim-obj6{
	width: 15%;
    height: auto;
    position: absolute;
}

@keyframes anim1 {
 0% {transform: rotate(5deg);}
 100% {transform: rotate(-5deg);} 
}

@keyframes anim2 {
 0% {transform: translateX(5%);}
 100% {transform: translateX(-5%);} 
}

@keyframes anim3 {
 0% {transform: scale(1);}
 100% {transform: scale(1.05);} 
}

@media screen and (max-width:1000px){ 
    #footer-banner{
		height: 430px;
	}
} 

@media screen and (max-width:900px){ 
    #footer-banner{
		height: 370px;
	}
}
@media screen and (max-width:800px){ 
    #footer-banner{
		height: 320px;
	}
}
@media screen and (max-width:700px){ 
    #footer-banner{
		height: 310px;
	}
	#anim-obj3{
		width: 70%;
	}
}
@media screen and (max-width:600px){ 
    #footer-banner{
		height: 280px;
	}
	#anim-obj3{
		width: 75%;
	}
}
@media screen and (max-width:500px){ 
    #footer-banner{
		height: 240px;
	}
}
@media screen and (max-width:500px){ 
    #footer-banner{
		height: 220px;
	}
}
@media screen and (max-width:400px){ 
    #footer-banner{
		height: 200px;
	}
}
#post-content,
.post-content {
	display:none;
}

/******************************
** h3のz-index 微調整
******************************/
.h3modoki::after, .post h3:not(.st-css-no):not(.st-matome):not(.rankh3):not(.post-card-title):not(#reply-title)::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    z-index: auto !important;
    content: '';
    width: 100%;
    height: 3px;
    background-color: #ff3067;
}

.h4modoki, .post h4:not(.st-css-no):not(.st-matome):not(.rankh4):not(.post-card-title):not(#reply-title):not(.point){
    z-index: auto !important;
}

/******************************
** キラビカ　コメント欄
******************************/
.entry-content > .com_title{
  border-left: solid 8px #FF8692;
  border-bottom: solid 2px #FF8692;
  padding: 5px;
  font-color: #FF8692;
  font-weight: bold;
}

.com_box{
  border: solid 1px #CCCCCC;
  font-size: 12px;
  padding: 10px;
  margin: 0px 5px;
  background-color: #FEFF99;
  box-shadow: 2px 2px 4px gray;
}

.com_under{
 border-bottom: dotted 2px #FF8692;
 padding: 0px 10px;
}

.com_name{
 font-size: 14px;
 color: #A4A4A4;
}

.com_time{
 font-size: 14px;
 margin-top: 20px;
 color: #A4A4A4;
}

.com_text{
 font-size: 16px;
 color: #424242;
}

.com_re{
 color: #FF8692;
}

/******************************
**　ラジオボタン
******************************/
/* checkbox radio 共通 */
    input[type=checkbox],input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    height: 20px;      /* 生成ボタンサイズ */
    width: 20px;       /* 生成ボタンサイズ */
    vertical-align: -0.8rem;
    transition:all .15s ease-out 0s;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin: .4rem;
    outline: none;
    border-radius: 10%;
}
/* Checkbox */
input[type=checkbox]:before,input[type=checkbox]:after {
    position: absolute;
    content: "";
    background: #fff;
    transition: all .2s ease-in-out;
}
input[type=checkbox]:before {
    left: 2px;
    top: 6px;
    width: 0;
    height: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
input[type=checkbox]:after {
    right: 9px;
    bottom: 3px;
    width: 2px;
    height: 0;
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    -o-transform: rotate(40deg);
    transition-delay: .2s;
}
input[type=checkbox]:checked:before {
    left: 1px;
    top: 10px;
    width: 6px;
    height: 2px;
}
input[type=checkbox]:checked:after {
    right: 5px;
    bottom: 1px;
    width: 2px;
    height: 14px;
}
input[type=checkbox]:indeterminate:before,input[type=checkbox]:indeterminate:after {
    width: 7px;
    height: 2px;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
}
input[type=checkbox]:indeterminate:before {
    left: 1px;
    top: 7px;
}
input[type=checkbox]:indeterminate:after {
    right: 1px;
    bottom: 7px;
}
/* Radio */
input[type=radio] {
    border-radius: 50%;
}
input[type=radio]:checked:before {
    transform: scale(1);
}
input[type=radio]:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 3px;
    transform: scale(0);
    transition: all ease-out 250ms;
}
/* Colors */
input[type=checkbox],input[type=radio] {
    border: 2px solid #4caf50;
}
input[type=checkbox]:checked,input[type=checkbox]:indeterminate,input[type=radio]:checked:before {
    background: #4caf50;
}
/* Complement colors */
/* green */
input[type=checkbox].green,input[type=radio].green {
    border: 2px solid #32CD32;
}
input[type=checkbox].green:checked,input[type=checkbox].green:indeterminate,input[type=radio].green:checked:before {
    background: #32CD32;
}
/* blue */
input[type=checkbox].blue,input[type=radio].blue {
    border: 2px solid #1E90FF;
}
input[type=checkbox].blue:checked,input[type=checkbox].blue:indeterminate,input[type=radio].blue:checked:before {
    background: #1E90FF;
}
/* red */
input[type=checkbox].red,input[type=radio].red {
    border: 2px solid #ff3067;
}
input[type=checkbox].red:checked,input[type=checkbox].red:indeterminate,input[type=radio].red:checked:before {
    background: #ff3067;
}
/* orange */
input[type=checkbox].orange,input[type=radio].orange {
    border: 2px solid #FFA500;
}
input[type=checkbox].orange:checked,input[type=checkbox].orange:indeterminate,input[type=radio].orange:checked:before {
    background: #FFA500;
}
/* violet */
input[type=checkbox].violet,input[type=radio].violet {
    border: 2px solid #EE82EE;
}
input[type=checkbox].violet:checked,input[type=checkbox].violet:indeterminate,input[type=radio].violet:checked:before {
    background: #EE82EE;
}

.post input:not(.st-tab-label):not([type="image"]){
	padding:initial !important;
}

.size1{
 transform:scale(1.2);
 }