@charset "UTF-8";
		
        * {
            box-sizing: border-box;
        }
		
		html,
        body {
            margin: 0;
            padding: 0;
            background-color: #ACACAC;
			background-image: url('bg-dot.png');
            font-family: 'Arial', sans-serif;
            font-weight: normal;
            overflow-x: hidden;
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        }

        @media (min-width: 992px) {

            html,
            body {
                overflow-y: hidden;
            }
        }

        .card {
            display: block;
            position: fixed;
            width: 90%;
            max-width: 300px;
            height: 90%;
            min-height: 500px;
            max-height: 500px;
            margin: auto;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            perspective: 1500px;
        }

        .card .content {
            position: relative;
            width: 300px;
            height: 500px;
            -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
            transition: transform 0.5s;
        }

        .more {
            display: none;
        }

        .more:checked~.content {
            transform: rotateY(180deg);
        }

        .front,
        .back {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
			background-size: 300px 500px;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            transform-style: preserve-3d;
            border-radius: 25px;
        }

        .front .inner,
        .back .inner {
            height: 100%;
            transform: scale(0.94) translateZ(100px);
        }

        @media (min-width: 992px) {

            .front .inner,
            .back .inner {
                height: 100%;
                transform: scale(1.0, 1.0) translateZ(1px);
            }
        }

        .front {
            text-align: center;
            background-color: #FFFFFF;
            background-repeat: no-repeat;
            background-position: center center;
            box-shadow: 7px 15px 20px rgba(0, 0, 0, 0.3);
        }

        .back {
            transform: rotateY(180deg);
			text-align: left;
			line-height: 19px;
            background-color: #FFFFFF;
            background-repeat: no-repeat;
            background-position: center center;
            box-shadow: 7px 15px 20px rgba(0, 0, 0, 0.3);
        }

		.inner {
            position: relative;
        }

        .button,
        .button.return {
            position: absolute;
            top: 6px;
            right: 6px;
            cursor: pointer;
            transition: transform 0.2s;
            width: 50px;
            height: 50px;
			background-image: none;
        }

        .button:hover,
        .button.return:hover {
            transform: scale(1.2);
            transition: transform 0.2s;
        }
		
		.icon-set {
			width: 300px;
			height: 50px;
        }

		.icon {
            display: inline-grid;
            width: 56px;
            margin: 0 3px 0 3px;			
			-webkit-filter: brightness(1);
            transition: transform 0.2s;
        }

        .icon:hover {
			-webkit-filter: brightness(0);
            transition: transform 0.2s;
        }
		
        .icon-name {
            font-weight: 600;
            font-size: 13px;
			text-align: center;
			text-decoration: none;
            color: gray;
        }

		.header {
		    position: absolute;
			margin-top: 23px;
			margin-left: 23px;
			font-weight: 700;
            font-size: 16px;
			color: #FFFFFF;
			text-decoration: none;
        }
		
        .footer-front {
            font-weight: 600;
            font-size: 13px;
			text-align: center;
			text-decoration: none;
            color: #000000;
            opacity: 0.6;
            transition: 0.3s;
        }
        
        .footer-front:hover {
			text-decoration: none;
            opacity: 1;
            transition: 0.3s;
        }
		
        .footer-back {
            font-size: 13px;
			text-decoration: none;
            color: #FFFFFF;
            opacity: 0.6;
            transition: 0.3s;
        }
        
        .footer-back:hover {
			text-decoration: none;
            opacity: 1;
            transition: 0.3s;
        }
		
		.card-name {
			display: inline-block;
			width: 280px;
			font-weight: 700;
            font-size: 20px;
			text-align: center;
			color: #000000;
        }
		
		.card-job {
			display: inline-block;
			width: 280px;
			font-weight: 500;
            font-size: 12px;
			text-align: center;
			color: #64666A;
            margin-top: 5px;
        }
		
		.title-back {
            display: block;
			color: #FFFFFF;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            margin: 5px auto;
        }
		
		.text-back {
            display: block;
			color: #FFFFFF;
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            margin: 5px 10px 5px auto;
        }

        .icon-back {
            display: inline-block;
			color: #FFFFFF;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            margin: 5px auto;
			-webkit-filter: brightness(1);
            transition: 0.2s;
        }

        .icon-back:hover {
			-webkit-filter: brightness(2);
            transition: 0.2s;
        }

        .icon-align-v {
            width: 36px;
            height: 36px;
			vertical-align:-12px;
            margin: 0 5px 0 0;
        }

.popup {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.popup .popuptext {
  visibility: hidden;
  width: 300px;
  height: 500px;
  background-color: #cccccc;
  color: black;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 25px;
  padding: 55px 55px;
  position: absolute;
  z-index: 1;
}

.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
}

@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}