@charset "UTF-8";
/*
Project Name:   HTML5 and CSS3 Bootstrap Credit Card
Project URI:    http://code.mypreview.net/credit-card
Author:         Mahdi Yazdani
Author URI:     http://mypreview.net
Description:    Credit Card is UI Component which helps you in designing website faster and easier.
Version:        1.0
License:        GNU General Public License version 3.0
License URI:    http://www.gnu.org/licenses/gpl-3.0.html
Tags:           

This Project is licensed under the GPL.
*/

@font-face {
    font-family: 'Open Sans';
    src: url('../font/card/OpenSans-Regular-webfont.eot');
    src: url('../font/card/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/card/OpenSans-Regular-webfont.woff') format('woff'),
         url('../font/card/OpenSans-Regular-webfont.ttf') format('truetype'),
         url('../font/card/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;

}


@font-face {
  font-family: 'OCRAStd';
  src: url('../font/card/OCRAStd.eot');
  src: url('../font/card/OCRAStd.eot?#iefix') format('embedded-opentype'),
       url('../font/card/OCRAStd.woff2') format('woff2'),
       url('../font/card/OCRAStd.woff') format('woff'),
       url('../font/card/OCRAStd.ttf') format('truetype'),
       url('../font/card/OCRAStd.svg#OCRAStd') format('svg');
  font-weight: normal;
  font-style: normal;
}


.my-cc {
    margin: 60px 0px;
}
/* Card */

.my-cc .item {
    width: 315px;
    margin: 20px auto;
    border: 1px solid #ddd;
    padding: 0px 20px;
    background: #f8f8f8;
	
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}
.my-cc .item-black {
    background: #000;
    color: #fff;
}
.my-cc .item-image {
	background-position: center center;
	background-size: cover;
}
/* Transparent Image */

.my-cc .item img {
    position: absolute;
    top: -126px;
    left: -56px;
    transform: rotate(49deg);
}
/* Heading */

.my-cc .item .item-heading {
    margin: 10px 0px;
}
.my-cc .item .item-heading h3 {
    float: left;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}
/* Bank Name */

.my-cc .item .item-heading h4 {
    float: right;
    font-size: 16px;
    line-height: 28px;
    color: #aaa;
    font-weight: 400;
}
/* Account Number */

.my-cc .item .item-account {
    margin: 10px 0px;
}
.my-cc .item .item-account span {
	font-size: 15px;
    line-height: 28px;
    margin: 0px 5px;
    letter-spacing: 3px;
    font-family: 'OCRAStd';
}
.my-cc .item .item-account span.ui-anum {
    padding: 0px 4px;
    background: #fff;
}
.my-cc .item.item-black .item-account span.ui-anum {
    padding: 0px 4px;
    background: rgba(255, 255, 255, 0.45);
}
/* Item */

.my-cc .item .item-validity .item-valid {
    margin: 5px 0px;
}
/* Title */

.my-cc .item .item-validity .item-valid h5 {
    width: 36px;
    font-size: 12px;
    line-height: 18px;
    float: left;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    color: #aaa;
}
/* Value */

.my-cc .item .item-validity .item-valid span {
    float: right;
    font-size: 15px;
    line-height: 28px;
    margin-right: 10px;
    margin-top: 4px;
    letter-spacing: 3px;
    font-family: 'OCRAStd';
}
/* Card Type */

.my-cc .item .item-cc-type {
    margin: 5px 0px 18px;
}
/* Type */

.my-cc .item .item-cc-type h6 {
    float: left;
    font-size: 13px;
    line-height: 26px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 5px 0px;
    letter-spacing: 2px;
	font-family: 'OCRAStd';
}
/* Icon */

.my-cc .item .item-cc-type i {
    float: right;
    font-size: 35px;
}
/* Color on Backgorund 000 */

.my-cc .item.item-000-bg,
.my-cc .item.item-000-bg h3,
.my-cc .item.item-000-bg h4,
.my-cc .item.item-000-bg h5,
.my-cc .item.item-000-bg h6,
.my-cc .item.item-000-bg span {
	color: #fff !important;
}